Postscreen now emits a notice when clients send BDAT or DATA
prematurely (after postscreen rejects the recipient):
DATA without valid RCPT from [192.168.0.1]:48580
These are merely informational, since the connection was rejected for
some other reason, so this commit ignores them.
$line =~ /discarding EHLO keywords: / or
$line =~ /: discard_mask / or
$line =~ /: sq=\d+ cq=\d+ event/ or
- $line =~ /: replacing command "/
+ $line =~ /: replacing command "/ or
+ $line =~ /^(DATA|BDAT) without valid RCPT/
);