]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 486744: Accept the multipart/signed emails - Patch by Mikhail Gusarov <dottedmag...
authorlpsolit%gmail.com <>
Sun, 5 Apr 2009 21:48:32 +0000 (21:48 +0000)
committerlpsolit%gmail.com <>
Sun, 5 Apr 2009 21:48:32 +0000 (21:48 +0000)
email_in.pl

index 59a716a57a7d742cc05c21b7b7c16c8d46d8f0ce..1e04e5c6a2d10c630ac95735f98cfe92ddd5915c 100644 (file)
@@ -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 {