From 95f82bd08d67a5ca66949846481d11159e38827b Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 25 Sep 1996 20:02:41 +0000 Subject: Explicit option is documented and set up in the data structure, but doesn't work yet. svn path=/trunk/; revision=145 --- rcfile_y.y | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index 1bcf1e47..3b90f3f7 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -33,7 +33,7 @@ int yydebug; /* in case we didn't generate with -- debug */ %token KW_REMOTEFOLDER KW_LOCALFOLDER KW_SMTPHOST KW_MDA KW_EOL KW_DEFAULTS %token PROTO_AUTO PROTO_POP2 PROTO_POP3 PROTO_IMAP PROTO_APOP PROTO_RPOP %token PARAM_STRING -%token KW_KEEP KW_FLUSH KW_FETCHALL KW_REWRITE KW_PORT +%token KW_KEEP KW_FLUSH KW_FETCHALL KW_REWRITE KW_PORT KW_EXPLICIT %type proto; /* these are actually used by the lexer */ @@ -75,6 +75,7 @@ serv_option_clause: | KW_FLUSH {prc_setflush($1);} | KW_FETCHALL {prc_setfetchall($1);} | KW_REWRITE {prc_setrewrite($1);} + | KW_EXPLICIT {prc_setexplicit($1);} | KW_PORT PARAM_STRING {prc_setport($2);} ; -- cgit v1.2.3