diff options
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 { |