diff options
author | lpsolit%gmail.com <> | 2009-04-05 23:47:10 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-04-05 23:47:10 +0200 |
commit | 14f0f8714bca5795b7823b22f8680eebac284df7 (patch) | |
tree | 195aed090fe3ff76de0e0fbf163a40507295b3e6 | |
parent | c40075b99cd57846a1df225f2bdb9badf7a80f41 (diff) | |
download | bugzilla-14f0f8714bca5795b7823b22f8680eebac284df7.tar.gz bugzilla-14f0f8714bca5795b7823b22f8680eebac284df7.tar.xz |
Bug 486744: Accept the multipart/signed emails - Patch by Mikhail Gusarov <dottedmag@altlinux.org> r/a=mkanat
-rw-r--r-- | email_in.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/email_in.pl b/email_in.pl index 59a716a57..1e04e5c6a 100644 --- a/email_in.pl +++ b/email_in.pl @@ -225,7 +225,7 @@ sub get_body_and_attachments { my $body; my $attachments = []; - if ($ct =~ /^multipart\/alternative/i) { + if ($ct =~ /^multipart\/(alternative|signed)/i) { $body = get_text_alternative($email); } else { |