# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Mailer; use 5.10.1; use strict; use warnings; use parent qw(Exporter); @Bugzilla::Mailer::EXPORT = qw(MessageToMTA build_thread_marker generate_email); use Bugzilla::Constants; use Bugzilla::Error; use Bugzilla::Hook; use Bugzilla::MIME; use Bugzilla::Util; use Bugzilla::User; use Date::Format qw(time2str); use Email::Sender::Simple qw(sendmail); use Email::Sender::Transport::SMTP::Persistent; use Bugzilla::Sender::Transport::Sendmail; sub generate_email { my ($vars, $templates) = @_; my ($lang, $email_format, $msg_text, $msg_html, $msg_header); state $use_utf8 = Bugzilla->params->{'utf8'}; if ($vars->{to_user}) { $lang = $vars->{to_user}->setting('lang'); $email_format = $vars->{to_user}->setting('email_format'); } else { # If there are users in the CC list who don't have an account, # use the default language for email notifications. $lang = Bugzilla::User->new()->setting('lang'); # However we cannot fall back to the default email_format, since # it may be HTML, and many of the includes used in the HTML # template require a valid user object. Instead we fall back to # the plaintext template. $email_format = 'text_only'; } my $template = Bugzilla->template_inner($lang); $template->process($templates->{header}, $vars, \$msg_header) || ThrowTemplateError($template->error()); $template->process($templates->{text}, $vars, \$msg_text) || ThrowTemplateError($template->error()); my @parts = (Bugzilla::MIME->create( attributes => { content_type => 'text/plain', charset => $use_utf8 ? 'UTF-8' : 'iso-8859-1', encoding => 'quoted-printable', }, body_str => $msg_text, )); if ($templates->{html} && $email_format eq 'html') { $template->process($templates->{html}, $vars, \$msg_html) || ThrowTemplateError($template->error()); push @parts, Bugzilla::MIME->create( attributes => { content_type => 'text/html', charset => $use_utf8 ? 'UTF-8' : 'iso-8859-1', encoding => 'quoted-printable', }, body_str => $msg_html, ); } my $email = Bugzilla::MIME->new($msg_header); if (scalar(@parts) == 1) { $email->content_type_set('text/plain'); $email->charset_set('UTF-8') if $use_utf8; } else { $email->content_type_set('multipart/alternative'); # Some mail clients need same encoding for each part, even empty ones. $email->charset_set('UTF-8') if $use_utf8; } $email->parts_set(\@parts); return $email; } # RED HAT EXTENSION 1745792 - Allow password mail to be sent sub MessageToMTA { my ($msg, $send_now, $override) = (@_); my $method = Bugzilla->params->{'mail_delivery_method'}; ## REDHAT EXTENSION BEGIN 406301 my $logger = Bugzilla->logger; $logger->debug("Starting: mail delivery with $method method"); ## REDHAT EXTENSION END 406301 return if $method eq 'None'; # Bail out early for bot accounts my $email = ref($msg) ? $msg : Bugzilla::MIME->new($msg); my $to = $email->header('To'); my $user = new Bugzilla::User({name => $to}); return if ($user && $user->is_bot()); if ( Bugzilla->params->{'use_mailer_queue'} && !$send_now && !Bugzilla->dbh->bz_in_transaction()) { Bugzilla->job_queue->insert('send_mail', {msg => $msg}); return; } # If we're called from within a transaction, we don't want to send the # email immediately, in case the transaction is rolled back. Instead we # insert it into the mail_staging table, and bz_commit_transaction calls # send_staged_mail() after the transaction is committed. ## REDHAT EXTENSION BEGIN 1409720 if (!$send_now && Bugzilla->dbh->bz_in_transaction()) { my $dbh = Bugzilla->dbh; # The e-mail string may contain tainted values. my $string = $email->as_string; trick_taint($string); my $sth = $dbh->prepare("INSERT INTO mail_staging (message) VALUES (?)"); $sth->bind_param(1, $string, $dbh->BLOB_TYPE); $sth->execute; return; } ## REDHAT EXTENSION END 1409720 my $from = $email->header('From'); ## REDHAT EXTENSION BEGIN 1464805 # Allow some people to get emails when we don't want to send everyone emails my $test_method = Bugzilla->params->{'mail_delivery_override'}; if ($method eq "Test" && $test_method ne '') { if ( $override || ($user && $user->override_test) || ($to eq Bugzilla->params->{mail_errors_to})) { $email->header_set('Subject', "[" . Bugzilla->params->{'bugzilla_term'} . "] TEST: " . $email->header('Subject')); $method = $test_method; } } ## REDHAT EXTENSION END 1464805 my $hostname; my $transport; if ($method eq "Sendmail") { if (ON_WINDOWS) { $transport = Bugzilla::Sender::Transport::Sendmail->new({sendmail => SENDMAIL_EXE}); } else { $transport = Bugzilla::Sender::Transport::Sendmail->new(); } } else { # Sendmail will automatically append our hostname to the From # address, but other mailers won't. my $urlbase = Bugzilla->params->{'urlbase'}; $urlbase =~ m|//([^:/]+)[:/]?|; $hostname = $1 || 'localhost'; $from .= "\@$hostname" if $from !~ /@/; $email->header_set('From', $from); # Sendmail adds a Date: header also, but others may not. if (!defined $email->header('Date')) { $email->header_set('Date', time2str("%a, %d %b %Y %T %z", time())); } } if ($method eq "SMTP") { my ($host, $port) = split(/:/, Bugzilla->params->{'smtpserver'}, 2); $transport = Bugzilla->request_cache->{smtp} //= Email::Sender::Transport::SMTP::Persistent->new({ host => $host, defined($port) ? (port => $port) : (), sasl_username => Bugzilla->params->{'smtp_username'}, sasl_password => Bugzilla->params->{'smtp_password'}, helo => $hostname, ssl => Bugzilla->params->{'smtp_ssl'}, debug => Bugzilla->params->{'smtp_debug'} }); } Bugzilla::Hook::process('mailer_before_send', {email => $email}); return if $email->header('to') eq ''; if ($method eq "Test") { my $filename = bz_locations()->{'datadir'} . '/mailer.testfile'; open TESTFILE, '>>', $filename; # From - is required to be a valid mbox file. print TESTFILE "\n\nFrom - " . $email->header('Date') . "\n" . $email->as_string; close TESTFILE; } else { # This is useful for Sendmail, so we put it out here. local $ENV{PATH} = SENDMAIL_PATH; eval { sendmail($email, {transport => $transport}) }; if ($@) { ThrowCodeError('mail_send_error', {msg => $@->message, mail => $email}); } } ## REDHAT EXTENSION BEGIN 406301 $logger->debug("done."); ## REDHAT EXTENSION END 406301 } # Builds header suitable for use as a threading marker in email notifications sub build_thread_marker { my ($bug_id, $user_id, $is_new) = @_; if (!defined $user_id) { $user_id = Bugzilla->user->id; } my $sitespec = '@' . Bugzilla->params->{'urlbase'}; $sitespec =~ s/:\/\//\./; # Make the protocol look like part of the domain $sitespec =~ s/^([^:\/]+):(\d+)/$1/; # Remove a port number, to relocate if ($2) { $sitespec = "-$2$sitespec"; # Put the port number back in, before the '@' } my $threadingmarker; if ($is_new) { $threadingmarker = "Message-ID: "; } else { my $rand_bits = generate_random_password(10); $threadingmarker = "Message-ID: " . "\nIn-Reply-To: " . "\nReferences: "; } return $threadingmarker; } ## REDHAT EXTENSION 1276196 BEGIN sub send_staged_mail { my $dbh = Bugzilla->dbh; my @ids; # Normally this function is run outside a transaction. This causes problems when multiple web nodes # are calling this function at the same time (Serialization issues, duplicate mails). # # To resolve this issue, we'll run this in a transaction and lock the rows we are operating on. # We can't do $dbh->bz_start_transaction as the resulting commit would put us in a recursive loop. # # If RaiseError is on, the resulting error from the NOWAIT would cause control to be transferred # to the DBI error handler routine we have defined. We do not want that to happen. my $emails; { local $dbh->{RaiseError}; local $dbh->{HandleError}; $dbh->do('BEGIN'); $emails = $dbh->selectall_arrayref( "SELECT id, message FROM mail_staging FOR UPDATE NOWAIT"); } # if $emails is undef, then another process has some rows locked. This will need to be done # at another time. unless (defined($emails)) { $dbh->do('ROLLBACK'); return; } # We're actually inside a transaction now. As we didn't use the bz_start_transaction() # function, MessageToMTA won't know that. This is what we want. foreach my $row (@$emails) { MessageToMTA($row->[1]); push(@ids, $row->[0]); } if (@ids) { $dbh->do("DELETE FROM mail_staging WHERE " . $dbh->sql_in('id', \@ids)); } # Commit the transaction and release the lock. $dbh->do('COMMIT'); } ## REDHAT EXTENSION 1276196 BEGIN 1; __END__ =head1 NAME Bugzilla::Mailer - Provides methods for sending email =head1 METHODS =over =item C Generates a multi-part email message, using the supplied list of templates. =item C Sends the passed message to the mail transfer agent. The actual behaviour depends on a number of factors: if called from within a database transaction, the message will be staged and sent when the transaction is committed. If email queueing is enabled, the message will be sent to TheSchwartz job queue where it will be processed by the jobqueue daemon, else the message is sent immediately. =item C Builds header suitable for use as a threading marker in email notifications. =item C Sends all staged messages -- called after a database transaction is committed. =back