summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
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
},