aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;