summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-03-08 02:52:57 +0100
committertravis%sedsystems.ca <>2005-03-08 02:52:57 +0100
commit53cb9510fc237e96bd89249e86d7ebe92c5a71fc (patch)
treeb80d9845a9e88bef83b0c086dd808708bec5f1f2 /defparams.pl
parent148bdbba7bb43c4cab051c2065c726f4f8c335db (diff)
downloadbugzilla-53cb9510fc237e96bd89249e86d7ebe92c5a71fc.tar.gz
bugzilla-53cb9510fc237e96bd89249e86d7ebe92c5a71fc.tar.xz
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.pl4
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
},