aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS7
-rw-r--r--rcfile_y.y4
2 files changed, 11 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 7f98d14c..8f12bfbf 100644
--- a/NEWS
+++ b/NEWS
@@ -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
diff --git a/rcfile_y.y b/rcfile_y.y
index 5e8a470b..16a4f25b 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -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);}