From 6421b138290aeecda414de1c753ace9d04681f7c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 3 Mar 1998 21:22:36 +0000 Subject: Kerberos V support. svn path=/trunk/; revision=1682 --- options.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'options.c') diff --git a/options.c b/options.c index 9849299f..b16d0041 100644 --- a/options.c +++ b/options.c @@ -211,7 +211,11 @@ struct query *ctl; /* option record to be initialized */ #else /* INET6 */ ctl->server.port = KPOP_PORT; #endif /* INET6 */ +#ifdef KERBEROS_V5 + ctl->server.preauthenticate = A_KERBEROS_V5; +#else ctl->server.preauthenticate = A_KERBEROS_V4; +#endif /* KERBEROS_V5 */ } else if (strcasecmp(optarg,"imap") == 0) ctl->server.protocol = P_IMAP; @@ -243,9 +247,15 @@ struct query *ctl; /* option record to be initialized */ if (strcmp(optarg, "password") == 0) ctl->server.preauthenticate = A_PASSWORD; else if (strcmp(optarg, "kerberos") == 0) +#ifdef KERBEROS_V5 + ctl->server.preauthenticate = A_KERBEROS_V5; + else if (strcmp(optarg, "kerberos_v5") == 0) + ctl->server.preauthenticate = A_KERBEROS_V5; +#else ctl->server.preauthenticate = A_KERBEROS_V4; else if (strcmp(optarg, "kerberos_v4") == 0) ctl->server.preauthenticate = A_KERBEROS_V4; +#endif /* KERBEROS_V5 */ else { fprintf(stderr,"Invalid preauthentication `%s' specified.\n", optarg); errflag++; -- cgit v1.2.3