aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-01 10:13:18 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-01 10:13:18 +0000
commita34632c0322600df6ec0998520ae0410640716c5 (patch)
tree5ffc9150fbd03f6d4c0677c8d15df7ddc0dbb59b /fetchmail.c
parent01a7a941d21a1638033e520f304d118ec0d21c83 (diff)
downloadfetchmail-a34632c0322600df6ec0998520ae0410640716c5.tar.gz
fetchmail-a34632c0322600df6ec0998520ae0410640716c5.tar.bz2
fetchmail-a34632c0322600df6ec0998520ae0410640716c5.zip
Dump authentication types correctly.
svn path=/trunk/; revision=3166
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 98b4e1b5..e92fce78 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1606,11 +1606,20 @@ static void dump_params (struct runctl *runp,
switch (ctl->server.authenticate)
{
case A_ANY:
- printf(_(" All authentication methods will be described.\n"));
+ printf(_(" All authentication methods will be tried.\n"));
break;
case A_PASSWORD:
printf(_(" Password authentication will be forced.\n"));
break;
+ case A_NTLM:
+ printf(_(" NTLM authentication will be forced.\n"));
+ break;
+ case A_OTP:
+ printf(_(" OTP authentication will be forced.\n"));
+ break;
+ case A_CRAM_MD5:
+ printf(_(" CRAM-Md5 authentication will be forced.\n"));
+ break;
case A_GSSAPI:
printf(_(" GSSAPI authentication will be forced.\n"));
break;