From 2ac3574928f3bf8b68e881f49f854b61aa023d63 Mon Sep 17 00:00:00 2001 From: byron jones Date: Wed, 28 Feb 2018 06:45:15 +0800 Subject: Bug 1438206 - Process SES email bounces properly --- .../default/admin/users/bounce-disabled.txt.tmpl | 19 +++++++++++++ template/en/default/email/ses-complaint.txt.tmpl | 31 ++++++++++++++++++++++ template/en/default/setup/strings.txt.pl | 6 +++++ 3 files changed, 56 insertions(+) create mode 100644 template/en/default/admin/users/bounce-disabled.txt.tmpl create mode 100644 template/en/default/email/ses-complaint.txt.tmpl (limited to 'template/en/default') diff --git a/template/en/default/admin/users/bounce-disabled.txt.tmpl b/template/en/default/admin/users/bounce-disabled.txt.tmpl new file mode 100644 index 000000000..f4ae6a361 --- /dev/null +++ b/template/en/default/admin/users/bounce-disabled.txt.tmpl @@ -0,0 +1,19 @@ +[%# 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. + #%] + +[%# INTERFACE: + # mta: mail server reporting error + # reason: Reason for bounce (diagnostic code) + #%] + +[% PROCESS global/variables.none.tmpl %] + +Your [% terms.Bugzilla %] account has been disabled due to issues delivering +emails to your address.
+
+Your mail server ([% mta FILTER html %]) said: [% reason FILTER html %]
diff --git a/template/en/default/email/ses-complaint.txt.tmpl b/template/en/default/email/ses-complaint.txt.tmpl new file mode 100644 index 000000000..93ad5eff4 --- /dev/null +++ b/template/en/default/email/ses-complaint.txt.tmpl @@ -0,0 +1,31 @@ +[%# 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. + #%] + +[%# INTERFACE: + # email: email address the complaint pertains to + # user: Bugzilla::User object associated with email (may be undef) + # reason: Reason for complaint + # notification: notification from SES (JSON) + #%] + +[% PROCESS global/variables.none.tmpl %] + +From: [% Param('mailfrom') %] +To: [% Param('maintainer') %] +Subject: [% terms.Bugzilla %]: SES Complaint: [% email %]: [% reason %] +X-Bugzilla-Type: admin + +SES Complaint received for [% email %]: [% reason %] + +[% IF user %] +[% urlbase %]/editusers.cgi?action=edit&userid=[% user.id %] +[% ELSE %] +Failed to find corresponding user in Bugzilla. +[% END %] + +[%+ notification %] diff --git a/template/en/default/setup/strings.txt.pl b/template/en/default/setup/strings.txt.pl index 35a771ff3..ce4785b04 100644 --- a/template/en/default/setup/strings.txt.pl +++ b/template/en/default/setup/strings.txt.pl @@ -203,6 +203,12 @@ notation (for example: 127.0.0.1:11211). END localconfig_memcached_namespace => <<'END', Specify a string to prefix each key on Memcached. +END + localconfig_ses_username => <<'END', +Username for HTTP Basic Authentication in front of the SES bounce handler. +END + localconfig_ses_password => <<'END', +Password for HTTP Basic Authentication in front of the SES bounce handler. END localconfig_site_wide_secret => <<'END', This secret key is used by your installation for the creation and -- cgit v1.2.3-24-g4f1b