From 20dfee53954fb557cf867a053d4d5d29e9bedb89 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 12 Feb 2001 01:14:30 +0000 Subject: Looks like we've got the new authentication logic done. svn path=/trunk/; revision=3072 --- rcfile_y.y | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index b49531ce..f02980ba 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -58,7 +58,7 @@ extern char * yytext; char *sval; } -%token DEFAULTS POLL SKIP VIA AKA LOCALDOMAINS PROTOCOL +%token DEFAULTS POLL SKIP VIA AKA LOCALDOMAINS PROTOCOL ANY %token PREAUTHENTICATE TIMEOUT KPOP SDPS KERBEROS4 KERBEROS5 KERBEROS GSSAPI %token SSH ENVELOPE QVIRTUAL USERNAME PASSWORD FOLDER SMTPHOST MDA BSMTP LMTP %token SMTPADDRESS SMTPNAME SPAMRESPONSE PRECONNECT POSTCONNECT LIMIT WARNINGS @@ -181,7 +181,9 @@ serv_option : AKA alias_list #endif /* INET6_ENABLE */ } | INTERVAL NUMBER {current.server.interval = $2;} + | PREAUTHENTICATE ANY {current.server.preauthenticate = A_ANY;} | PREAUTHENTICATE PASSWORD {current.server.preauthenticate = A_PASSWORD;} + | PREAUTHENTICATE GSSAPI {current.server.preauthenticate = A_GSSAPI;} | PREAUTHENTICATE KERBEROS4 {current.server.preauthenticate = A_KERBEROS_V4;} | PREAUTHENTICATE KERBEROS5 {current.server.preauthenticate = A_KERBEROS_V5;} | PREAUTHENTICATE KERBEROS { -- cgit v1.2.3