diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-10-18 10:20:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-10-18 10:20:44 +0000 |
commit | ba67703a83775ce97c7002a46961b4a3c1ae9fe2 (patch) | |
tree | b9cbd875c96bc74f906fad561ed8e6095c38ce11 /options.c | |
parent | 229ddf4336f2f7c8135990f48c76f8ac771d8f3d (diff) | |
download | fetchmail-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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")); |