aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-07-20 04:00:41 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-07-20 04:00:41 +0000
commit43a5237c12a70acaaabe878e745e59843ee69cee (patch)
tree38b9ac4772c7dabdc6b72e34b4762167b720c6db /options.c
parent14a81d42fedb126c9f58508144d1c9bcfcb9cc04 (diff)
downloadfetchmail-43a5237c12a70acaaabe878e745e59843ee69cee.tar.gz
fetchmail-43a5237c12a70acaaabe878e745e59843ee69cee.tar.bz2
fetchmail-43a5237c12a70acaaabe878e745e59843ee69cee.zip
GSSAPI support is rockin'!
svn path=/trunk/; revision=1979
Diffstat (limited to 'options.c')
-rw-r--r--options.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/options.c b/options.c
index 63623e68..69ae2c56 100644
--- a/options.c
+++ b/options.c
@@ -306,6 +306,10 @@ struct query *ctl; /* option record to be initialized */
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,"etrn") == 0)
ctl->server.protocol = P_ETRN;
else {