Jeff Koch a écrit le 22/02/2021 à 22:17 :
> qmHandle -M [email protected]  ?
***

-M is for MAILER-DAEMON

>
> seems you should also be able to use:
>
> qmHandle -tf '[email protected]'
>
> but that didn't work either.

just had the same issue.

edit qmHandle
/opt/qmt-util/bin/qmHandle (or which qmHandle)
line 550
replace equality operator with regex operator.

# If it's from X, delete the message
if ($matchedString eq $string) {

->

# If it's from X, delete the message
if ("$matchedString" =~ $string) {


qmHandle -tf [email protected]
with equality operator
From: "John FOO" <[email protected]>
not found
From: <[email protected]>
found

xaf



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to