From df70db60e222d1116f15ca8c2774beb1d8a25a2c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 6 Mar 2000 07:00:24 +0000 Subject: Deal with fetchmailconf bug. svn path=/trunk/; revision=2791 --- NEWS | 3 ++- fetchmail.man | 10 +++++----- fetchmailconf | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index 7b1a4510..203866c3 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,7 @@ * Added support for RFC2177 IDLE command extension of IMAP. * Updated fr.po. +* Fixed a bug in fetchmailconfs handling of envelope skip prefixes. fetchmail-5.3.1 (Sun Mar 5 23:02:42 EST 2000), 18648 lines: @@ -23,7 +24,7 @@ fetchmail-5.3.1 (Sun Mar 5 23:02:42 EST 2000), 18648 lines: * Resolved all current Debian bugs classed `important'; #43139, #44744, #44760, #44774, #43140, #50990. * Resolved Debian ordinary bugs #17769, #34383, #38303, #39732, #51674, - #53386, #53732, #58553, + #53386, #53732, #58553. * Resolved Debian wishlist bug #26630. * Resolution of #59281 (still loops on Ctrl-C) involved a small change in behavior; SIGPIPE now terminates the current poll cycle. diff --git a/fetchmail.man b/fetchmail.man index ded662af..3947d1a6 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -1687,11 +1687,11 @@ poll mailhost.net via localhost port 1234 with proto pop3: Use the multiple-local-recipients feature with caution -- it can bite. Also note that all multidrop features are ineffective in ETRN mode. -Also, note that in multidrop mode duplicate mails are suppressed. -A piece of mail is considered duplicate if it has the same message-ID -as the message immediately preceding. Such runs of messages may -be generated when copies of a message addressed to multiple -users are delivered to a multidrop box. +Also, note that in multidrop mode duplicate mails are suppressed. A +piece of mail is considered duplicate if it has the same message-ID as +the message immediately preceding and more than one addressee. Such +runs of messages may be generated when copies of a message addressed +to multiple users are delivered to a multidrop box. .SS Header vs. Envelope addresses The fundamental problem is that by having your mailserver toss several diff --git a/fetchmailconf b/fetchmailconf index 2358566d..0620f19f 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -127,7 +127,7 @@ class Server: res = res + " interval " + `self.interval` if self.envelope != ServerDefaults.envelope or self.envskip != ServerDefaults.envskip: if self.envskip: - res = res + " envelope " + self.envskip + " " + self.envelope + res = res + " envelope " + `self.envskip` + " " + self.envelope else: res = res + " envelope " + self.envelope if self.qvirtual: -- cgit v1.2.3