diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 23:26:10 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-11 23:26:10 +0000 |
commit | d6c728ad218f79305ad759eba6d787d125c67ec3 (patch) | |
tree | 3ab20cfce9699d9c0af61ad73229c5a16e577b95 /options.c | |
parent | 18f57966dd58cb32956332ab4ac235edd8d1d7ca (diff) | |
download | fetchmail-d6c728ad218f79305ad759eba6d787d125c67ec3.tar.gz fetchmail-d6c728ad218f79305ad759eba6d787d125c67ec3.tar.bz2 fetchmail-d6c728ad218f79305ad759eba6d787d125c67ec3.zip |
Let's get rid of the old protocols with preauthentication bundled in.
svn path=/trunk/; revision=3071
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -358,18 +358,6 @@ struct query *ctl; /* option record to be initialized */ } else if (strcasecmp(optarg,"imap") == 0) ctl->server.protocol = P_IMAP; -#ifdef KERBEROS_V4 - else if (strcasecmp(optarg,"imap-k4") == 0) - ctl->server.protocol = P_IMAP_K4; -#endif /* KERBEROS_V4 */ -#ifdef GSSAPI - else if (strcasecmp(optarg, "imap-gss") == 0) - ctl->server.protocol = P_IMAP_GSS; -#endif /* GSSAPI */ - else if (strcasecmp(optarg, "imap-crammd5") == 0) - ctl->server.protocol = P_IMAP_CRAM_MD5; - else if (strcasecmp(optarg, "imap-login") == 0) - ctl->server.protocol = P_IMAP_LOGIN; else if (strcasecmp(optarg,"etrn") == 0) ctl->server.protocol = P_ETRN; else { |