mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 02:01:58 +01:00
fixed a message-id rewrite bug
This commit is contained in:
parent
c3d95332c2
commit
fc1aafaecf
@ -9,7 +9,7 @@ class ModelMailMail extends Model {
|
||||
if($to == "" || strlen($msg) < 30){ return $ok; }
|
||||
|
||||
if(REWRITE_MESSAGE_ID == 1) {
|
||||
$msg = preg_replace("/Message-ID:([\s\w\W\r]+)\n/i", "Message-ID: <" . generate_random_string(25) . '@' . SITE_NAME . ">\n", $msg);
|
||||
$msg = preg_replace("/Message-ID:([^\n]+)\n/i", "Message-ID: <" . generate_random_string(25) . '@' . SITE_NAME . ">\n", $msg);
|
||||
}
|
||||
|
||||
$r = fsockopen($smtphost, $smtpport);
|
||||
|
Loading…
Reference in New Issue
Block a user