aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-11 23:26:10 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-02-11 23:26:10 +0000
commitd6c728ad218f79305ad759eba6d787d125c67ec3 (patch)
tree3ab20cfce9699d9c0af61ad73229c5a16e577b95 /options.c
parent18f57966dd58cb32956332ab4ac235edd8d1d7ca (diff)
downloadfetchmail-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.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/options.c b/options.c
index 86e10ebc..e10ac840 100644
--- a/options.c
+++ b/options.c
@@ -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 {