Merged in mivolz/piler/smtp-fix (pull request #11)

escape lines starting with dot in smtp client session
This commit is contained in:
Michael Volz 2017-07-08 15:52:04 +00:00 committed by Janos SUTO
commit cb5a7e3d84

View File

@ -12,6 +12,8 @@ class ModelMailMail extends Model {
$msg = preg_replace("/Message-ID:([^\n]+)\n/i", "Message-ID: <" . generate_random_string(25) . '@' . SITE_NAME . ">\n", $msg);
}
$msg = preg_replace("/^\..*$/m", ".$0", $msg);
$r = fsockopen($smtphost, $smtpport);
if(!$r){ return -1; }