diff options
author | travis%sedsystems.ca <> | 2005-03-08 01:52:57 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-03-08 01:52:57 +0000 |
commit | 53cb9510fc237e96bd89249e86d7ebe92c5a71fc (patch) | |
tree | b80d9845a9e88bef83b0c086dd808708bec5f1f2 /defparams.pl | |
parent | Bug 284155 : New editusers.cgi broke group visibility (diff) | |
download | bugzilla-53cb9510fc237e96bd89249e86d7ebe92c5a71fc.tar.gz bugzilla-53cb9510fc237e96bd89249e86d7ebe92c5a71fc.tar.bz2 bugzilla-53cb9510fc237e96bd89249e86d7ebe92c5a71fc.zip |
Bug 280778 : remove sendmail and qmail delivery methods on windows
Patch by byron jones (glob) <bugzilla@glob.com.au> r=jake a=justdave
Diffstat (limited to 'defparams.pl')
-rw-r--r-- | defparams.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/defparams.pl b/defparams.pl index b3ded03f7..bcd050713 100644 --- a/defparams.pl +++ b/defparams.pl @@ -686,7 +686,9 @@ sub find_languages { 'is useful for debugging (for more information see the ' . 'Mail::Mailer manual)', type => 's', - choices => ['sendmail', 'smtp', 'qmail', 'testfile'], + choices => $^O =~ /MSWin32/i + ? ['smtp', 'testfile'] + : ['sendmail', 'smtp', 'qmail', 'testfile'], default => 'sendmail', checker => \&check_multi }, |