diff options
author | olav%bkor.dhs.org <> | 2006-11-14 08:32:28 +0100 |
---|---|---|
committer | olav%bkor.dhs.org <> | 2006-11-14 08:32:28 +0100 |
commit | 410641ccf4ed887b3988222678704a8c5569002d (patch) | |
tree | e698db3e6bb515c2a51359c13a11918a6b83210f /Bugzilla/Config | |
parent | f1c83b410cd23c14e74a4a43f64632c050008dd7 (diff) | |
download | bugzilla-410641ccf4ed887b3988222678704a8c5569002d.tar.gz bugzilla-410641ccf4ed887b3988222678704a8c5569002d.tar.xz |
Bug 277370: Ability to specify an email address to which notification about all bugs should go
Patch by Guillaume Rousse <guillomovitch@zarb.org> r=bkor a=myk
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/MTA.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Bugzilla/Config/MTA.pm b/Bugzilla/Config/MTA.pm index a9bc4619c..27d03462a 100644 --- a/Bugzilla/Config/MTA.pm +++ b/Bugzilla/Config/MTA.pm @@ -72,7 +72,13 @@ sub get_param_list { type => 't', default => 7, checker => \&check_numeric - } ); + }, + + { + name => 'globalwatchers', + type => 't', + default => '', + }, ); return @param_list; } |