Bug 53608

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1218 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2011-02-08 15:11:30 +00:00
parent 86c3bc7ee7
commit 2a504e8544
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ sub parse_mail {
# F*cking MS Exchange sometimes does not append Auto-Submitted header
# to delivery status reports, so also check content-type.
my $autosubmitted;
if (lc($input_email->header('Auto-Submitted') || '') ne 'no' ||
if (lc($input_email->header('Auto-Submitted') || 'no') ne 'no' ||
($input_email->header('Content-Type') || '') =~ /delivery-status/iso)
{
debug_print("Rejecting email with Auto-Submitted = $autosubmitted");