From 96ee32106aad33fa7c27c46e981985136ce3c988 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Mon, 11 Mar 2013 00:25:28 -0400 Subject: [PATCH] qmail_deliverable: remove fail prefix from SMTP er prefix should only be logged, not emitted during SMTP --- plugins/qmail_deliverable | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/qmail_deliverable b/plugins/qmail_deliverable index 58e8288..91f6813 100755 --- a/plugins/qmail_deliverable +++ b/plugins/qmail_deliverable @@ -182,7 +182,7 @@ sub rcpt_handler { $self->log(LOGINFO, "pass, bouncesaying with program"), $k++ if $rv == 0x13; if ( $rv == 0x14 ) { my $s = $transaction->sender->address; - return (DENY, "fail, mailing lists do not accept null senders") + return (DENY, "mailing lists do not accept null senders") if ( ! $s || $s eq '<>'); $self->log(LOGINFO, "pass, ezmlm list"); $k++; };