diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-23 16:20:55 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-23 16:20:55 +0000 |
commit | af265f5294d56551304c0278712417b18a31d856 (patch) | |
tree | c1c5f25b0f446fc926e56449a3ff939705b2e938 /rcfile_y.y | |
parent | 9f0a493bf046e732ccbeab9bd8e3dff506a2cbfd (diff) | |
download | fetchmail-af265f5294d56551304c0278712417b18a31d856.tar.gz fetchmail-af265f5294d56551304c0278712417b18a31d856.tar.bz2 fetchmail-af265f5294d56551304c0278712417b18a31d856.zip |
Global options have been consolidated into a single control block.
svn path=/trunk/; revision=1807
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -87,11 +87,11 @@ statement_list : statement 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;} +statement : SET LOGFILE optmap STRING {run.logfile = xstrdup($4);} + | SET IDFILE optmap STRING {run.idfile = xstrdup($4);} + | SET DAEMON optmap NUMBER {run.poll_interval = $4;} + | SET SYSLOG {run.use_syslog = TRUE;} + | SET INVISIBLE {run.invisible = TRUE;} /* * The way the next two productions are written depends on the fact that |