escape lines starting with dot in smtp client session

This commit is contained in:
Michael Volz 2017-07-05 13:35:22 +02:00
parent 89e612b128
commit 3a636b5a48

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; }