Commit 14f0f871 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 486744: Accept the multipart/signed emails - Patch by Mikhail Gusarov…

Bug 486744: Accept the multipart/signed emails - Patch by Mikhail Gusarov <dottedmag@altlinux.org> r/a=mkanat
parent c40075b9
...@@ -225,7 +225,7 @@ sub get_body_and_attachments { ...@@ -225,7 +225,7 @@ sub get_body_and_attachments {
my $body; my $body;
my $attachments = []; my $attachments = [];
if ($ct =~ /^multipart\/alternative/i) { if ($ct =~ /^multipart\/(alternative|signed)/i) {
$body = get_text_alternative($email); $body = get_text_alternative($email);
} }
else { else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment