diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-01 10:13:18 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-01 10:13:18 +0000 |
commit | a34632c0322600df6ec0998520ae0410640716c5 (patch) | |
tree | 5ffc9150fbd03f6d4c0677c8d15df7ddc0dbb59b /fetchmail.c | |
parent | 01a7a941d21a1638033e520f304d118ec0d21c83 (diff) | |
download | fetchmail-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.c | 11 |
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; |