aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-25 20:02:41 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-25 20:02:41 +0000
commit95f82bd08d67a5ca66949846481d11159e38827b (patch)
tree9287c91ffe7aff90c67be297613b07eeeaafb700 /rcfile_y.y
parent44d69d470268d3fe86342c74478b9b58258fdc03 (diff)
downloadfetchmail-95f82bd08d67a5ca66949846481d11159e38827b.tar.gz
fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.tar.bz2
fetchmail-95f82bd08d67a5ca66949846481d11159e38827b.zip
Explicit option is documented and set up in the data structure,
but doesn't work yet. svn path=/trunk/; revision=145
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y3
1 files changed, 2 insertions, 1 deletions
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> PROTO_AUTO PROTO_POP2 PROTO_POP3 PROTO_IMAP PROTO_APOP PROTO_RPOP
%token <sval> PARAM_STRING
-%token <flag> KW_KEEP KW_FLUSH KW_FETCHALL KW_REWRITE KW_PORT
+%token <flag> KW_KEEP KW_FLUSH KW_FETCHALL KW_REWRITE KW_PORT KW_EXPLICIT
%type <proto> 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);}
;