diff options
Diffstat (limited to 'phpBB/includes/smtp.php')
-rw-r--r-- | phpBB/includes/smtp.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/phpBB/includes/smtp.php b/phpBB/includes/smtp.php index e32c73e71c..5798eee405 100644 --- a/phpBB/includes/smtp.php +++ b/phpBB/includes/smtp.php @@ -129,10 +129,6 @@ function smtpmail($mail_to, $subject, $message, $headers = "") } server_parse($socket, "220"); - // Send the RFC821 specified HELO. - fputs($socket, "HELO " . $board_config['smtp_host'] . "\r\n"); - server_parse($socket, "250"); - if( !empty($board_config['smtp_username']) && !empty($board_config['smtp_password']) ) { // Send the RFC2554 specified EHLO. |