From 53cb9510fc237e96bd89249e86d7ebe92c5a71fc Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Tue, 8 Mar 2005 01:52:57 +0000 Subject: Bug 280778 : remove sendmail and qmail delivery methods on windows Patch by byron jones (glob) r=jake a=justdave --- defparams.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'defparams.pl') 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 }, -- cgit v1.2.3-24-g4f1b