When receiving a netmail without a MSGID, include that in the log
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 35s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m49s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s

This commit is contained in:
Deon George 2024-10-20 11:54:52 +11:00
parent 676ba4a40b
commit ac687efe51

View File

@ -67,7 +67,7 @@ class MessageProcess implements ShouldQueue
// @todo generate exception when netmail to system that doesnt exist (node/point) and its this host's responsibility // @todo generate exception when netmail to system that doesnt exist (node/point) and its this host's responsibility
Log::info(sprintf('%s:- Processing Netmail [%s] to (%s) [%s] from (%s) [%s].', Log::info(sprintf('%s:- Processing Netmail [%s] to (%s) [%s] from (%s) [%s].',
self::LOGKEY, self::LOGKEY,
$this->mo->msgid, $this->mo->msgid ?: '*NO MSGID*',
$this->mo->to,$this->mo->tftn->ftn, $this->mo->to,$this->mo->tftn->ftn,
$this->mo->from,$this->mo->fftn->ftn, $this->mo->from,$this->mo->fftn->ftn,
)); ));