summaryrefslogtreecommitdiffstats
path: root/email_in.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-04-05 23:47:10 +0200
committerlpsolit%gmail.com <>2009-04-05 23:47:10 +0200
commit14f0f8714bca5795b7823b22f8680eebac284df7 (patch)
tree195aed090fe3ff76de0e0fbf163a40507295b3e6 /email_in.pl
parentc40075b99cd57846a1df225f2bdb9badf7a80f41 (diff)
downloadbugzilla-14f0f8714bca5795b7823b22f8680eebac284df7.tar.gz
bugzilla-14f0f8714bca5795b7823b22f8680eebac284df7.tar.xz
Bug 486744: Accept the multipart/signed emails - Patch by Mikhail Gusarov <dottedmag@altlinux.org> r/a=mkanat
Diffstat (limited to 'email_in.pl')
-rw-r--r--email_in.pl2
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 {