From 08b1f632cf0613afe37b0af606c12569ab1903a8 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 29 Oct 1998 17:22:14 +0000 Subject: Fix properties editing. svn path=/trunk/; revision=2149 --- NEWS | 6 ++++++ conf.c | 1 + design-notes.html | 6 ++++-- fetchmailconf | 2 ++ 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 80101197..a728fc9b 100644 --- a/NEWS +++ b/NEWS @@ -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. diff --git a/conf.c b/conf.c index decf6325..e9884f22 100644 --- a/conf.c +++ b/conf.c @@ -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 @@
Back to Fetchmail Home Page To Site Map -$Date: 1998/08/11 21:10:33 $ +$Date: 1998/10/29 17:22:14 $

Design Notes On Fetchmail

@@ -339,6 +339,8 @@ following minimum steps.
  • Hack fetchmailconf to configure it. Bump the fetchmailconf version. +
  • Hack conf.c to dump the option so we won't have a version-skew problem. +
  • Add an entry to NEWS. @@ -513,7 +515,7 @@ all shaped the design in one way or another.

    Back to Fetchmail Home Page To Site Map -$Date: 1998/08/11 21:10:33 $ +$Date: 1998/10/29 17:22:14 $

    Eric S. Raymond <esr@snark.thyrsus.com>
    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': -- cgit v1.2.3