aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-09-20 00:20:47 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-09-20 00:20:47 +0000
commiteaf2ce1dd214a1d8716179a25036427096c7c24e (patch)
tree14928c74afea277889f959aafc33deacc416a3de /options.c
parentde9c2733a448bdcd64917a82e42513e8f3ab6ac5 (diff)
downloadfetchmail-eaf2ce1dd214a1d8716179a25036427096c7c24e.tar.gz
fetchmail-eaf2ce1dd214a1d8716179a25036427096c7c24e.tar.bz2
fetchmail-eaf2ce1dd214a1d8716179a25036427096c7c24e.zip
Fix "auth ntlm" to send AUTH NTLM (rather than AUTH MSN). Add "auth msn".
svn path=/trunk/; revision=4297
Diffstat (limited to 'options.c')
-rw-r--r--options.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/options.c b/options.c
index 0323e71a..c55276e5 100644
--- a/options.c
+++ b/options.c
@@ -418,6 +418,8 @@ struct query *ctl; /* option record to be initialized */
ctl->server.authenticate = A_GSSAPI;
else if (strcmp(optarg, "any") == 0)
ctl->server.authenticate = A_ANY;
+ else if (strcmp(optarg, "msn") == 0)
+ ctl->server.authenticate = A_MSN;
else {
fprintf(stderr,GT_("Invalid authentication `%s' specified.\n"), optarg);
errflag++;