When a netmail has a msgid, dont overwrite it
This commit is contained in:
parent
ea42a347eb
commit
3b99c409e0
@ -191,7 +191,10 @@ final class Netmail extends Model implements Packet
|
|||||||
$o->intl = sprintf('%s %s',$this->tftn->ftn3d,$this->fftn->ftn3d);
|
$o->intl = sprintf('%s %s',$this->tftn->ftn3d,$this->fftn->ftn3d);
|
||||||
$o->flags = $this->flags;
|
$o->flags = $this->flags;
|
||||||
|
|
||||||
$o->msgid = sprintf('%s %08x',$this->fftn->ftn3d,crc32($this->id));
|
$o->msgid = $this->msgid
|
||||||
|
? $this->msgid
|
||||||
|
: sprintf('%s %08x',$this->fftn->ftn4d,timew($this->datetime));
|
||||||
|
|
||||||
if ($this->replyid)
|
if ($this->replyid)
|
||||||
$o->replyid = $this->replyid;
|
$o->replyid = $this->replyid;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user