summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-02-02 05:00:17 +0100
committertravis%sedsystems.ca <>2005-02-02 05:00:17 +0100
commitd652763b3fe4ae1256736c188c203f80b3b8f8f8 (patch)
treee011462d07c9b31d8f1a169ed4b6497bc2683253 /defparams.pl
parent5bf561558211cc84c176b80a5b3cced32704139b (diff)
downloadbugzilla-d652763b3fe4ae1256736c188c203f80b3b8f8f8.tar.gz
bugzilla-d652763b3fe4ae1256736c188c203f80b3b8f8f8.tar.xz
Bug 277437 : Use Mail::Mailer (Perl module) for mail delivery
Patch by Andrei Benea <abenea@gmail.com> r=vladd a=justdave
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl18
1 files changed, 18 insertions, 0 deletions
diff --git a/defparams.pl b/defparams.pl
index 29c4d27ad..fd681e966 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -671,6 +671,17 @@ sub find_languages {
},
{
+ name => 'maildeliverymethod',
+ desc => 'The method used for mail delivery. The testfile method ' .
+ 'is useful for debugging (for more information see the ' .
+ 'Mail::Mailer manual)',
+ type => 's',
+ choices => ['sendmail', 'smtp', 'qmail', 'testfile'],
+ default => 'sendmail',
+ checker => \&check_multi
+ },
+
+ {
name => 'sendmailnow',
desc => 'Sites using anything older than version 8.12 of \'sendmail\' ' .
'can achieve a significant performance increase in the ' .
@@ -684,6 +695,13 @@ sub find_languages {
},
{
+ name => 'smtpserver',
+ desc => 'The SMTP server address (if using SMTP for mail delivery).',
+ type => 't',
+ default => 'localhost'
+ },
+
+ {
name => 'passwordmail',
desc => 'The email that gets sent to people to tell them their password.' .
'Within this text, %mailaddress% gets replaced by the person\'s ' .