diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-08-10 06:32:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-08-10 06:32:50 +0000 |
commit | 323690fb5b17d29a69d072cca03c5a08b38d3ea8 (patch) | |
tree | e27c491e804eab7bff0e62e03190b487f4ca4f39 | |
parent | 7bacc310d866ae2c2c5ff08e59aa85477933ad7e (diff) | |
download | fetchmail-323690fb5b17d29a69d072cca03c5a08b38d3ea8.tar.gz fetchmail-323690fb5b17d29a69d072cca03c5a08b38d3ea8.tar.bz2 fetchmail-323690fb5b17d29a69d072cca03c5a08b38d3ea8.zip |
Forestall lots of newbie questions.
svn path=/trunk/; revision=1255
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | rcfile_y.y | 4 |
2 files changed, 11 insertions, 0 deletions
@@ -21,6 +21,13 @@ Release Notes: ------------------------------------------------------------------------------ +fetchmail-4.1.0 () +* Make the RPM depend on `smtpdaemon', which the sendmail package provides. +* Clean up the Interactive UNIX System V/386 Release 3.2 port. +* Enable parser to detect and complain about the most common syntax error. + +There are 262 people on the fetchmail-friends list. + fetchmail-4.0.8 (Thu Aug 7 17:05:27 EDT 1997) * Fixed core dump bug in UID handling introduced by the 4.0.6 change. * Retrieval code for POP3 & older IMAP versions now skips X-IMAP message @@ -89,6 +89,10 @@ statement : SET LOGFILE MAP STRING {logfile = xstrdup($4);} */ | define_server serverspecs {record_current();} | define_server serverspecs userspecs + +/* detect and complain about the most common user error */ + | define_server serverspecs userspecs serv_option + {yyerror("server option after user options");} ; define_server : POLL STRING {reset_server($2, FALSE);} |