Fix processing msgid with @domain
This commit is contained in:
parent
e0269c9718
commit
071b817194
@ -741,8 +741,8 @@ class Message extends FTNBase
|
|||||||
// http://ftsc.org/docs/fsc-0068.001
|
// http://ftsc.org/docs/fsc-0068.001
|
||||||
// MSGID should be the basis of the source, we'll overrite our src from origin if we have it
|
// MSGID should be the basis of the source, we'll overrite our src from origin if we have it
|
||||||
$m = [];
|
$m = [];
|
||||||
if ($this->msgid && preg_match('#([0-9]+:[0-9]+/[0-9]+)?\.?([0-9]+)?(@%s)?\ +#',$this->msgid,$m)) {
|
if ($this->msgid && preg_match('#([0-9]+:[0-9]+/[0-9]+)?\.?([0-9]+)?@?([A-Za-z-_~]+)?\ +#',$this->msgid,$m)) {
|
||||||
$this->src = Address::parseFTN($m[1].(isset($m[2]) ? '.'.$m[2] : ''));
|
$this->src = Address::parseFTN($m[1].(isset($m[2]) ? '.'.$m[2] : '').(isset($m[3]) ? '@'.$m[3] : ''));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse SEEN-BY
|
// Parse SEEN-BY
|
||||||
|
Loading…
Reference in New Issue
Block a user