Skip to content
Snippets Groups Projects
Commit 5c658438 authored by Marius Cramer's avatar Marius Cramer
Browse files

Fixed: FS#3431 - Systemmails via google's SMTP not working

parent 7dc4388e
No related branches found
No related tags found
No related merge requests found
...@@ -593,6 +593,11 @@ class ispcmail { ...@@ -593,6 +593,11 @@ class ispcmail {
$response = fgets($this->_smtp_conn, 515); $response = fgets($this->_smtp_conn, 515);
if(empty($this->_smtp_conn)) return false; if(empty($this->_smtp_conn)) return false;
//Say Hello to SMTP
if($this->smtp_helo == '') $this->detectHelo();
fputs($this->_smtp_conn, 'HELO ' . $this->smtp_helo . $this->_crlf);
$response = fgets($this->_smtp_conn, 515);
// ENCRYPTED? // ENCRYPTED?
if($this->smtp_crypt == 'tls') { if($this->smtp_crypt == 'tls') {
fputs($this->_smtp_conn, 'STARTTLS' . $this->_crlf); fputs($this->_smtp_conn, 'STARTTLS' . $this->_crlf);
...@@ -600,11 +605,6 @@ class ispcmail { ...@@ -600,11 +605,6 @@ class ispcmail {
stream_socket_enable_crypto($this->_smtp_conn, true, STREAM_CRYPTO_METHOD_TLS_CLIENT); stream_socket_enable_crypto($this->_smtp_conn, true, STREAM_CRYPTO_METHOD_TLS_CLIENT);
} }
//Say Hello to SMTP
if($this->smtp_helo == '') $this->detectHelo();
fputs($this->_smtp_conn, 'HELO ' . $this->smtp_helo . $this->_crlf);
$response = fgets($this->_smtp_conn, 515);
//AUTH LOGIN //AUTH LOGIN
fputs($this->_smtp_conn, 'AUTH LOGIN' . $this->_crlf); fputs($this->_smtp_conn, 'AUTH LOGIN' . $this->_crlf);
$response = fgets($this->_smtp_conn, 515); $response = fgets($this->_smtp_conn, 515);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment