diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-20 03:42:34 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-20 03:42:34 +0000 |
commit | 3299270c28441b9d01a24da727eeaa6553c4d7aa (patch) | |
tree | acb7dfb272b49042adc4fcc77a0be66fc47adc0c /rcfile_y.y | |
parent | 72c64d14268791f79834befe8700a3fd633bd5b9 (diff) | |
download | fetchmail-3299270c28441b9d01a24da727eeaa6553c4d7aa.tar.gz fetchmail-3299270c28441b9d01a24da727eeaa6553c4d7aa.tar.bz2 fetchmail-3299270c28441b9d01a24da727eeaa6553c4d7aa.zip |
Added the `properties' option.
svn path=/trunk/; revision=2114
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -63,7 +63,7 @@ extern char * yytext; %token SPAMRESPONSE PRECONNECT POSTCONNECT LIMIT %token NETSEC INTERFACE MONITOR %token IS HERE THERE TO MAP WILDCARD -%token BATCHLIMIT FETCHLIMIT EXPUNGE +%token BATCHLIMIT FETCHLIMIT EXPUNGE PROPERTIES %token SET LOGFILE DAEMON SYSLOG IDFILE INVISIBLE POSTMASTER WARNINGS %token <proto> PROTO %token <sval> STRING @@ -323,6 +323,8 @@ user_option : TO localnames HERE | FETCHLIMIT NUMBER {current.fetchlimit = NUM_VALUE($2);} | BATCHLIMIT NUMBER {current.batchlimit = NUM_VALUE($2);} | EXPUNGE NUMBER {current.expunge = NUM_VALUE($2);} + + | PROPERTIES STRING {current.properties = xstrdup($2);} ; %% |