diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | conf.c | 1 | ||||
-rw-r--r-- | design-notes.html | 6 | ||||
-rwxr-xr-x | fetchmailconf | 2 |
4 files changed, 13 insertions, 2 deletions
@@ -1,5 +1,11 @@ Release Notes: +fetchmail-4.6.6 (): +* Fixed a core-dump bug in reply_hack with -v -v on. +* Fix fetchmailconf to be able to edit proprerties. + +There are 249 people on fetchmail-friends and 309 on fetchmail-announce. + fetchmail-4.6.5 (Wed Oct 28 18:28:01 EST 1998): * Fixed a bug in reply_hack that could occasionally cause malloc smashes. * Added --bsmtp option to dump mail as a BSMTP batch. @@ -310,6 +310,7 @@ void dump_config(struct runctl *runp, struct query *querylist) booldump("mimedecode", ctl->mimedecode); stringdump("mda", ctl->mda); + stringdump("bsmtp", ctl->bsmtp); #ifdef INET6 stringdump("netsec", ctl->netsec); #endif /* INET6 */ diff --git a/design-notes.html b/design-notes.html index 13aec7b0..f10d969c 100644 --- a/design-notes.html +++ b/design-notes.html @@ -11,7 +11,7 @@ <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="//localhost/~esr/index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="//localhost/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1998/08/11 21:10:33 $ +<td width="30%" align=right>$Date: 1998/10/29 17:22:14 $ </table> <HR> <H1 ALIGN=CENTER>Design Notes On Fetchmail</H1> @@ -339,6 +339,8 @@ following minimum steps. <LI>Hack fetchmailconf to configure it. Bump the fetchmailconf version. +<LI>Hack conf.c to dump the option so we won't have a version-skew problem. + <LI>Add an entry to NEWS. </UL> @@ -513,7 +515,7 @@ all shaped the design in one way or another.<P> <table width="100%" cellpadding=0><tr> <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a> <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a> -<td width="30%" align=right>$Date: 1998/08/11 21:10:33 $ +<td width="30%" align=right>$Date: 1998/10/29 17:22:14 $ </table> <P><ADDRESS>Eric S. Raymond <A HREF="mailto:esr@thyrsus.com"><esr@snark.thyrsus.com></A></ADDRESS> diff --git a/fetchmailconf b/fetchmailconf index d054cd60..c98b17ef 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1197,6 +1197,8 @@ class UserEdit(Frame, MyWidget): self.bsmtp, '26').pack(side=TOP, fill=X) LabeledEntry(targwin, 'Listener spam-block codes:', self.antispam, '26').pack(side=TOP, fill=X) + LabeledEntry(targwin, 'Pass-through properties:', + self.properties, '26').pack(side=TOP, fill=X) targwin.pack(fill=X, anchor=N) if mode != 'novice': |