aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2002-10-18 10:20:44 +0000
committerEric S. Raymond <esr@thyrsus.com>2002-10-18 10:20:44 +0000
commitba67703a83775ce97c7002a46961b4a3c1ae9fe2 (patch)
treeb9cbd875c96bc74f906fad561ed8e6095c38ce11 /options.c
parent229ddf4336f2f7c8135990f48c76f8ac771d8f3d (diff)
downloadfetchmail-ba67703a83775ce97c7002a46961b4a3c1ae9fe2.tar.gz
fetchmail-ba67703a83775ce97c7002a46961b4a3c1ae9fe2.tar.bz2
fetchmail-ba67703a83775ce97c7002a46961b4a3c1ae9fe2.zip
OTP fix patches from Stanislav Brabec.
svn path=/trunk/; revision=3735
Diffstat (limited to 'options.c')
-rw-r--r--options.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/options.c b/options.c
index 188db02c..bd4ebe70 100644
--- a/options.c
+++ b/options.c
@@ -409,6 +409,8 @@ struct query *ctl; /* option record to be initialized */
ctl->server.authenticate = A_SSH;
else if (strcmp(optarg, "otp") == 0)
ctl->server.authenticate = A_OTP;
+ else if (strcmp(optarg, "opie") == 0)
+ ctl->server.authenticate = A_OTP;
else if (strcmp(optarg, "ntlm") == 0)
ctl->server.authenticate = A_NTLM;
else if (strcmp(optarg, "cram") == 0)
@@ -677,7 +679,7 @@ struct query *ctl; /* option record to be initialized */
P(GT_(" -p, --protocol specify retrieval protocol (see man page)\n"));
P(GT_(" -U, --uidl force the use of UIDLs (pop3 only)\n"));
P(GT_(" -P, --port TCP/IP service port to connect to\n"));
- P(GT_(" --auth authentication type (password/kerberos/ssh)\n"));
+ P(GT_(" --auth authentication type (password/kerberos/ssh/otp)\n"));
P(GT_(" -t, --timeout server nonresponse timeout\n"));
P(GT_(" -E, --envelope envelope address header\n"));
P(GT_(" -Q, --qvirtual prefix to remove from local user id\n"));