diff options
author | lpsolit%gmail.com <> | 2006-10-21 04:22:54 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-10-21 04:22:54 +0000 |
commit | eedbd699a1aa0f44e7dda37b4d524902a864b783 (patch) | |
tree | 73665b04bd191ede2b3d6fc98ce1af48675704e3 /Bugzilla/Config | |
parent | ac3fe4074a3e583948bf2a1d0b81f8f3f6acce51 (diff) | |
download | bugs-eedbd699a1aa0f44e7dda37b4d524902a864b783.tar bugs-eedbd699a1aa0f44e7dda37b4d524902a864b783.tar.gz bugs-eedbd699a1aa0f44e7dda37b4d524902a864b783.tar.bz2 bugs-eedbd699a1aa0f44e7dda37b4d524902a864b783.tar.xz bugs-eedbd699a1aa0f44e7dda37b4d524902a864b783.zip |
Bug 135812: Add a 'mailfrom' parameter to unify bugmail originating address - Patch by Cedric Caron <cedric.caron@citycable.ch> r=LpSolit a=myk
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/MTA.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/Config/MTA.pm b/Bugzilla/Config/MTA.pm index 4364db49b..53340dc13 100644 --- a/Bugzilla/Config/MTA.pm +++ b/Bugzilla/Config/MTA.pm @@ -51,6 +51,12 @@ sub get_param_list { }, { + name => 'mailfrom', + type => 't', + default => 'bugzilla-daemon' + }, + + { name => 'sendmailnow', type => 'b', default => 1 |