diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | NEWS | 26 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | rcfile_l.l | 4 | ||||
-rw-r--r-- | rcfile_y.y | 4 |
5 files changed, 21 insertions, 19 deletions
@@ -31,7 +31,7 @@ edit the Makefile AFTER you run "configure" but BEFORE you run "make install." You can easily choose a prefix other than /usr/local, or you can choose completely different directories for each item. -See the file sample.poprc for a description of configuring your +See the file sample.rcfile for a description of configuring your individual preferences. Enjoy! @@ -142,12 +142,12 @@ CONFIGURATION AND BUILDING OPTIONS AND COMMAND LINE -* I have removed the -p command-line option. Given that there's a .poprc +* I have removed the -p command-line option. Given that there's a run control facility there is no excuse for encouraging users to put plaintext passwords in scripts which might be readable. * Calling popclient with no arguments now causes it to query or operate - on every host in the .poprc file. + on every host in the run control file. * I have made --version more useful by having it dump the computed connection options for each server specified. @@ -157,18 +157,20 @@ OPTIONS AND COMMAND LINE POPRC FILE SYNTAX -* The .poprc lexer now supports "-enclosed strings which may contain - whitespace. +* The run control file lexer now supports "-enclosed strings which may + contain whitespace. -* I added a --yydebug option to enable .poprc parser debugging at runtime - if the parser was generated with --debug. It's not documented. +* I added a --yydebug option to enable run control parser debugging at + runtime if the parser was generated with --debug. It's not documented. -* You may now have a `defaults' entry in .poprc which sets overrideable - values for other entries. See the man page for details. +* You may now have a `defaults' entry in the run control file which sets + overrideable values for other entries. See the man page for details. -* It is now possible to set keep, flush and fetchall in your .poprc file. +* It is now possible to set keep, flush and fetchall in your run control + file. -* Fixed incorrect numbering of source lines in .poprc parse error messages. +* Fixed incorrect numbering of source lines in run control file parse error + messages. * The configure.in specification no longer uses the obsolete AC_TRY_COMPILE macro (it uses AC_TRY_LINK instead). @@ -204,8 +206,8 @@ DOCUMENTATION * All changes and feature additions have been tested in actual use and are documented on the man page. -* I have turned the comments in the sample.poprc into a new manual - section documenting the .poprc format. +* I have turned the comments in the sample run control file into a new manual + section documenting the file format. MISCELLANEOUS BUG FIXES @@ -18,7 +18,7 @@ Features of fetchmail include: * POP2, POP3, APOP, RPOP and IMAP support with auto-probing for a server on the host if no protocol is specified. - * Easy configuration via command line or free-format .poprc file. + * Easy control via command line or free-format configuration file. * Daemon mode -- fetchmail can be run in background to poll one or more hosts at a specified interval. @@ -30,7 +30,7 @@ Features of fetchmail include: usernames relative to the fetchmail host become fully-qualified Internet addresses. This enables replies to work correctly. -There is a man page at fetchmail.man. A sample rc file is at sample.fetchrc. +There is a man page at fetchmail.man. A sample rc file is at sample.rcfile. For a release history, see the file NEWS. -- esr @@ -6,11 +6,11 @@ */ /*********************************************************************** - module: poprc_l.l + module: rcfile_l.l project: fetchmail programmer: Carl Harris, ceharris@mal.com Extensively hacked by esr. - description: .poprc lexer + description: configuration lexer ***********************************************************************/ @@ -5,11 +5,11 @@ */ /*********************************************************************** - module: poprc_y.y + module: rcfile_y.y project: fetchmail programmer: Carl Harris, ceharris@mal.com Extensively hacked and fixed by esr. - description: .poprc parser + description: configuration file parser ***********************************************************************/ |