Dont show a MSGID kludge in test messages if there isnt one
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 38s Details
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m44s Details
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s Details

This commit is contained in:
Deon George 2024-05-25 14:12:04 +10:00
parent 391e9e1e39
commit 9f3b9f692a
1 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,10 @@ trait MessagePath
$reply .= "+--[ CONTROL LINES ]----------------------------------+\r";
$reply .= sprintf("DATE: %s\r",$mo->date->format('Y-m-d H:i:s'));
$reply .= sprintf("MSGID: %s\r",$mo->msgid);
if ($mo->msgid)
$reply .= sprintf("MSGID: %s\r",$mo->msgid);
if ($mo->replyid)
$reply .= sprintf("REPLY: %s\r",$mo->replyid);
foreach ($mo->kludges as $k=>$v)
$reply .= sprintf("%s %s\r",$k,$v);