/[smecontribs]/rpms/bugzilla/contribs10/bugzilla-1855962-non-html-mail.patch
ViewVC logotype

Annotation of /rpms/bugzilla/contribs10/bugzilla-1855962-non-html-mail.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Mon May 23 19:29:50 2022 UTC (2 years, 1 month ago) by jpp
Branch: MAIN
CVS Tags: bugzilla-5_0_6-14_fc36, bugzilla-5_0_6-16_el7_sme, bugzilla-5_0_6-15_el7_sme, HEAD
Initial import

1 jpp 1.1 diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
2     index 18795d735..2075a71e1 100644
3     --- a/Bugzilla/BugMail.pm
4     +++ b/Bugzilla/BugMail.pm
5     @@ -495,10 +495,10 @@ sub _generate_bugmail {
6     }
7    
8     my $email = Bugzilla::MIME->new($msg_header);
9     - if (scalar(@parts) == 1) {
10     - $email->content_type_set($parts[0]->content_type);
11     - }
12     - else {
13     +
14     + # If there's only one part, we don't need to set the overall content type
15     + # because Email::MIME will automatically take it from that part (bug 1657496)
16     + if (scalar(@parts) > 1) {
17     $email->content_type_set('multipart/alternative');
18    
19     # Some mail clients need same encoding for each part, even empty ones.

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed