mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 04:11:59 +01:00
fixed a message-id rewriting bug
This commit is contained in:
parent
00e87b1172
commit
ce61188c7c
@ -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:([\ \w\_\-\@\<\>\.\r]+)\n/i", "Message-ID: <" . generate_random_string(25) . '@' . SITE_NAME . ">\n", $msg);
|
||||
$msg = preg_replace("/Message-ID:([\s\w\W\r]+)\n/i", "Message-ID: <" . generate_random_string(25) . '@' . SITE_NAME . ">\n", $msg);
|
||||
}
|
||||
|
||||
$r = fsockopen($smtphost, $smtpport);
|
||||
|
Loading…
Reference in New Issue
Block a user