diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-22 18:42:39 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-22 18:42:39 +0000 |
commit | 703f7886706bd5a7fc34db647edb3fbea5553c0a (patch) | |
tree | c66d018293eacfff8a838934e9e28478ac4d8ab3 /rcfile_y.y | |
parent | 0a337ef438e4c5902171516e76666869a87747c6 (diff) | |
download | fetchmail-703f7886706bd5a7fc34db647edb3fbea5553c0a.tar.gz fetchmail-703f7886706bd5a7fc34db647edb3fbea5553c0a.tar.bz2 fetchmail-703f7886706bd5a7fc34db647edb3fbea5553c0a.zip |
Added idfile.
svn path=/trunk/; revision=1794
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -67,7 +67,7 @@ extern char * yytext; %token SPAMRESPONSE PRECONNECT POSTCONNECT LIMIT %token IS HERE THERE TO MAP WILDCARD %token BATCHLIMIT FETCHLIMIT EXPUNGE -%token SET LOGFILE DAEMON SYSLOG INVISIBLE NETSEC INTERFACE MONITOR +%token SET LOGFILE DAEMON SYSLOG IDFILE INVISIBLE NETSEC INTERFACE MONITOR %token <proto> PROTO %token <sval> STRING %token <number> NUMBER @@ -88,6 +88,7 @@ optmap : MAP | /* EMPTY */; /* future global options should also have the form SET <name> optmap <value> */ statement : SET LOGFILE optmap STRING {logfile = xstrdup($4);} + | SET IDFILE optmap STRING {idfile = xstrdup($4);} | SET DAEMON optmap NUMBER {poll_interval = $4;} | SET SYSLOG {errors_to_syslog = TRUE;} | SET INVISIBLE {use_invisible = TRUE;} |