authentication failure [SMTP: STARTTLS failed (code: 220, response: 2.0.0 Ready to start TLS)]

前端 未结 3 1485
情书的邮戳
情书的邮戳 2021-01-03 13:51

i am trying to send email with attachment in PHP using SMTP and PEAR but getting the error as \"authentication failure [SMTP: STARTTLS failed (code: 220, response: 2.0.0 Rea

相关标签:
3条回答
  • 2021-01-03 14:33

    Here example code how to send tls/ssl emails with php to gmail smtp servers https://github.com/breakermind/PhpMimeParser/blob/master/PhpSmtpSslSocketClient.php It very simple with php stream sockets (**You need allow in mail.com panel send email from external apps **)

    0 讨论(0)
  • 2021-01-03 14:35

    I have a better answer if you are self-certed.

    Add:

    'auth' => true,
    'socket_options' => array('ssl' => array('verify_peer_name' => false, 'allow_self_signed' => true)),
    

    To the $smtp = Mail::factory('smtp', line.

    Essentially you are adding this to the array:

    allow_self_signed' => true
    

    Which clearly tells the code to allow selt certs.

    In my case:

    $smtp = Mail::factory('smtp',array ('host' => $host,'auth' => true,'socket_options' => array('ssl' => array('verify_peer_name' => false, 'allow_self_signed' => true)),'username' => $username,'password' => $password,'port' => '25'));
    

    This is similar to what Vlax said, but that didn't work. I was looking at this link and reversed it:

    https://github.com/PHPMailer/PHPMailer/issues/766

    0 讨论(0)
  • 2021-01-03 14:52

    The undocumented parameter: socket_options , let me authenticate when I got this error:
    authentication failure [SMTP: STARTTLS failed (code: 220, response: TLS go ahead)].

    I just need add :
    'auth' => "PLAIN",
    'socket_options' => array('ssl' => array('verify_peer_name' => false)),

    Taken from: https://pear.php.net/manual/en/package.mail.mail.factory.php


    I was getting this error, but even disabling STARTTLS (as several of the above comments suggest) didn't help, as it then reported an authentication error. I found the proper fix for at least my situation.

    If you're using PHP 5.6, there are changes to SSL: http://php.net/manual/en/migration56.openssl.php

    Mainly, there is extra verification done on the connection. This verification wasn't done on 5.5 so these issues were ignored. But in my situation, the server was sending the SMTP EHLO command with "localhost" and apparently that causes PHP's new verification to fail.

    The solution is to patch osTicket's mail class at /include/pear/Net/SMTP.php - change this line:

    $this->_socket_options =$socket_options;

    to

    $this->_socket_options = array('ssl' => array('verify_peer_name' => false));

    This turns the verification off. For my setup, the mail server is on the same local network as the osTicket server, so I'm not overly concerned about the security.

    The other solution is to downgrade to PHP 5.5 which doesn't have this extra verification.

    It'd be nice if osTicket somehow offered a setting for this so patching the code isn't necessary every time.

    Taken from: https://github.com/pear/Net_SMTP/issues/14

    0 讨论(0)
提交回复
热议问题