]> Pileus Git - ~andy/fetchmail/blob - README
c2894ba9e7fd7fe4ec7f62ad8ece2c015eb7b305
[~andy/fetchmail] / README
1 Popclient README
2
3         $Log: README,v $
4         Revision 1.2  1996/06/26 19:08:55  esr
5         This is what I sent Harris.
6
7         Revision 1.1  1996/06/26 15:27:06  esr
8         Initial revision
9
10         Revision 1.3  1995/09/07 22:40:58  ceharris
11         Final 3.0b4 release
12
13         Revision 1.2  1995/08/09 01:22:47  ceharris
14         Final preparation for 3.0b2 release.
15
16         Revision 1.1  1995/08/07 21:09:19  ceharris
17         Final preparation for popclient 3.0b1 release
18
19 This is a BETA release of popclient version 3.  Little if any user support
20 is provided for this version of popclient.  Consider this BETA version to
21 be a "developer/tester" release only.
22
23 Release History
24
25 3.0b7:
26
27 Eric S. Raymond <esr@thyrsus.com> hacked on 3.0b6.  Here are his change notes:
28
29 CONFIGURATION AND BUILDING
30
31 * The autoconfigure script incorrectly assumed that all Linuxes use
32   /usr/bin/deliver.  Under Linux it now checks for both /usr/bin/delivermail
33   and /bin/mail.
34
35 * I added a distribution-maker production to Makefile.in.
36
37 OPTIONS AND COMMAND LINE
38
39 * I have removed the -p command-line option. Given that there's a .poprc
40   facility there is no excuse for encouraging users to put plaintext passwords
41   in scripts which might be readable.
42
43 * Calling popclient with no arguments now causes it to query or operate
44   on every host in the .poprc file.
45
46 * I have made --version more useful by having it dump the computed
47   connection options for each server specified.
48
49 * The user can now explicitly set an MDA (such as procmail) with the
50   new option -m or -mda.  Various possible MDAs are listed on the man page.
51
52 POPRC FILE SYNTAX
53
54 * The .poprc lexer now supports "-enclosed strings which may contain
55   whitespace.
56
57 * I added a --yydebug option to enable .poprc parser debugging at runtime
58   if the parser was generated with --debug.  It's not documented.
59
60 * You may now have a `defaults' entry in .poprc which sets overrideable
61   values for other entries.  See the man page for details.
62
63 * It is now possible to set keep, flush and fetchall in your .poprc file.
64
65 * Fixed incorrect numbering of source lines in .poprc parse error messages.
66
67 * The configure.in specification no longer uses the obsolete AC_TRY_COMPILE
68   macro (it uses AC_TRY_LINK instead).
69
70 MAILBOX LOCKING
71
72 * I have added mandatory locking of mailbox files where supported.
73   This will cover Linux systems, in particular.
74
75 * The default behavior is now to do lock-protected append on the user's
76   system mailbox rather than using delivermail or some other MDA.
77   (This is a performance hack.)
78
79 * The autoconfigure script now looks for standard mail locations.  The
80   default mail delivery agent is used only if it can't find a mail spool
81   directory in the standard places.
82
83 FUNCTIONAL ENHANCEMENTS
84
85 * When using POP3, message headers are edited so that replies won't foo up.
86   Anything that looks like a mail ID local to the POP host gets @ and the
87   pop servername attached to it before being appended to the user's
88   mailbox or passed to an MDA.
89
90 * I have implemented daemon mode.
91
92 DOCUMENTATION
93
94 * All changes and feature additions have been tested in actual use and are
95   documented on the man page.
96
97 * I have turned the comments in the sample.poprc into a new manual
98   section documenting the .poprc format.
99
100 MISCELLANEOUS BUG FIXES
101
102 * I fixed some de-initialization bugs in pop2.c and pop3.c that led to
103   fd leaks (these became painfully obvious when I tested daemon mode!).
104
105 * I've fixed the flaky parser error messages. They turned out to be due 
106   to a misdeclaration of yytext.
107
108 There's only one feature I haven't been able to add successfully.  I
109 want a --logfile option that redirects the daemon-mode output to a
110 given file, but the code (in daemon.c near 200) unaccountably doesn't
111 work (so I haven't documented it yet).
112
113 3.0b5
114 o       "From " header fix in pop2.c and pop3.c
115 o       Surpress "..." output when --stdout option specified in pop3.c
116
117 3.0b4
118 o       alloca fix.
119 o       various diagnostic/informational message fixes.
120
121 3.0b3
122 o       Support for retrieving only new messages from maildrop when
123         using POP3.  
124 o       Support for retrieving only the first n lines of each message
125         when using POP3.
126 o       APOP authentication support.
127 o       Buffered socket input.
128
129 3.0b2
130         This is a "new features" release.
131 o       support for .poprc file.
132 o       GNU-style long options.
133 o       fixed passwords appearing in 'ps' output
134 o       support for multiple servers on one command line
135
136 3.0b1
137         This is mostly a test of the autoconfigure integration.
138 Among the functions performed by the new configure script, is
139 the ability to detect known system types, configures the mail
140 delivery agent (MDA) correctly.  This should permanently solve
141 the problem of using something other than an MDA for mail
142 delivery (which continues to plague Linux slackware 1.2.9).
143 For this beta, please check the values of MDA_PATH and MDA_ARGS
144 carefully.  They should match the values found in your
145 sendmail.cf file on the line which begins with "Mlocal".
146
147         Other changes from popclient version 2.21:
148
149 o       no longer uses getpass() from the C library.  The
150         internal getpassword() function allows the use of long
151         passwords.
152
153 o       integrated GNU getopt() for long options.  Long option  
154         names will appear in a future beta.
155
156 o       Several compiler warnings fixed.
157
158 o       Fixed problems related to missing include files in
159         Solaris port.