Hi,

Try to delete message from [email protected]

qmHandle -tf '[email protected]'
Message matching "From: -tf" not found in the queue!

qmHandle:79-82
$arg =~ /^-t(.)/ and do { push @actions, "&DelAllMatches('$1', '$ARGV[0]')";
                          shift @ARGV;
                          last SWITCH;
                        };
shift is called after push
$ARGV[0] = -tf

should be
$arg =~ /^-t(.)/ and do { shift @ARGV;
                          push @actions, "&DelAllMatches('$1', '$ARGV[0]')";
                          last SWITCH;
                        };
$ARGV[0] = [email protected]

xaf

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

Reply via email to