mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:31:58 +01:00
escape lines starting with dot in smtp client session
This commit is contained in:
parent
17f21f1bc3
commit
cab8a86816
@ -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; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user