]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 277389: Modify flag notification code so it doesn't append emailsuffix...
authorjocuri%softhome.net <>
Sun, 9 Jan 2005 02:33:48 +0000 (02:33 +0000)
committerjocuri%softhome.net <>
Sun, 9 Jan 2005 02:33:48 +0000 (02:33 +0000)
Bugzilla/Flag.pm
template/en/default/admin/flag-type/edit.html.tmpl

index 8fa1e9457ef36cb9330007d649ea1089bc8d3657..57ea5598281082d9e5d7a8b5f16f1d734bc24fa8 100644 (file)
@@ -622,7 +622,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);
     }
index c735ac33d0cfbef1688cd533167097cb48a5e226..8afbc38cb07d555d6bbdd45ee2b2f6239e0403c2 100644 (file)
     <tr>
       <th>CC List:</th>
       <td>
-        if requestable, who should get carbon copied on email notification of requests<br>
+        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
+          <kbd>[% Param('emailsuffix') %]</kbd> will <em>not</em> be appended
+          to these addresses, so you should add it explicitly if so desired.
+        [% END %]<br>
         <input type="text" name="cc_list" value="[% type.cc_list FILTER html %]" size="80" maxlength="200">
       </td>
     </tr>