Patch: FATAL PLUGIN ERROR [check_basicheaders]: ...

check_basicheaders fails if there are no headers at all:

http://bugs.contribs.org/show_bug.cgi?id=6345
This commit is contained in:
Charlie Brady 2010-11-08 16:42:43 -05:00 committed by Robert
parent 461dabc3e1
commit 24d09fa4a9

View File

@ -46,10 +46,11 @@ sub hook_data_post {
return (DENY, "You have to send some data first")
if $transaction->data_size == 0;
my $header = $transaction->header;
return (DENY, "Mail with no From header not accepted here")
unless $transaction->header->get('From');
unless $header && $header->get('From');
my $date = $transaction->header->get('Date');
my $date = $header->get('Date');
return (DENY, "Mail with no Date header not accepted here")
unless $date;