diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-12-23 05:45:15 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-12-23 05:45:15 +0000 |
commit | a3140279cc8c41a6d4cf169c3f6e94411fec4f95 (patch) | |
tree | b6792b857061a77596ebfcd01b90f10b9359299d /rcfile_y.y | |
parent | e2914b619afd334ae57f10e8af35c9c43088f24b (diff) | |
download | fetchmail-a3140279cc8c41a6d4cf169c3f6e94411fec4f95.tar.gz fetchmail-a3140279cc8c41a6d4cf169c3f6e94411fec4f95.tar.bz2 fetchmail-a3140279cc8c41a6d4cf169c3f6e94411fec4f95.zip |
Introduced George Sipe's -I and -M options.
svn path=/trunk/; revision=673
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -44,7 +44,7 @@ static void prc_reset(); %token DEFAULTS POLL SKIP AKA PROTOCOL AUTHENTICATE TIMEOUT KPOP KERBEROS %token ENVELOPE USERNAME PASSWORD FOLDER SMTPHOST MDA LIMIT %token IS HERE THERE TO MAP WILDCARD -%token SET BATCHLIMIT FETCHLIMIT LOGFILE +%token SET BATCHLIMIT FETCHLIMIT LOGFILE INTERFACE MONITOR %token <proto> PROTO %token <sval> STRING %token <number> NUMBER @@ -67,6 +67,8 @@ statement_list : statement /* future global options should also have the form SET <name> <value> */ statement : SET BATCHLIMIT MAP NUMBER {batchlimit = $4;} | SET LOGFILE MAP STRING {logfile = xstrdup($4);} + | SET INTERFACE MAP STRING {interface = xstrdup($4);} + | SET MONITOR MAP STRING {monitor = xstrdup($4);} /* * The way the next two productions are written depends on the fact that |