From: jocuri%softhome.net <> Date: Sun, 9 Jan 2005 02:35:23 +0000 (+0000) Subject: Patch for bug 277389: Modify flag notification code so it doesn't append emailsuffix... X-Git-Tag: bugzilla-2.18~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5cf2f34814b817c4842288751939cf591d09e5d8;p=thirdparty%2Fbugzilla.git Patch for bug 277389: Modify flag notification code so it doesn't append emailsuffix to CC list's addresses; patch by Marc Schumann , r=wurblzap, a=justdave. --- diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index 02e0d64ca3..37de4a7202 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -603,7 +603,7 @@ sub notify { next if $flag->{'target'}->{'attachment'}->{'isprivate'} && Param("insidergroup") && !$ccuser->in_group(Param("insidergroup")); - push(@new_cc_list, $cc.Param('emailsuffix')); + push(@new_cc_list, $cc); } $flag->{'type'}->{'cc_list'} = join(", ", @new_cc_list); } diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index 9e683cd992..b5da2f5234 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -163,7 +163,14 @@ CC List: - if requestable, who should get carbon copied on email notification of requests
+ if requestable, who should get carbon copied on email notification of requests. + This is a comma-separated list of full e-mail addresses which do not + need to be [% terms.Bugzilla %] logins. + [% IF Param('emailsuffix') %] + Note that the configured emailsuffix + [% Param('emailsuffix') %] will not be appended + to these addresses, so you should add it explicitly if so desired. + [% END %]