diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 04:00:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 04:00:41 +0000 |
commit | 43a5237c12a70acaaabe878e745e59843ee69cee (patch) | |
tree | 38b9ac4772c7dabdc6b72e34b4762167b720c6db /options.c | |
parent | 14a81d42fedb126c9f58508144d1c9bcfcb9cc04 (diff) | |
download | fetchmail-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.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 { |