diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-12-07 03:00:06 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-12-07 03:00:06 +0000 |
commit | f72b77a3eca0126a3842265919635bb442202ae3 (patch) | |
tree | fbc4ebe8b8ac6e49ae24c07a6be40dcb99b332b0 | |
parent | 817bc7979baab872631863d477f538a3eeba1aa7 (diff) | |
download | fetchmail-f72b77a3eca0126a3842265919635bb442202ae3.tar.gz fetchmail-f72b77a3eca0126a3842265919635bb442202ae3.tar.bz2 fetchmail-f72b77a3eca0126a3842265919635bb442202ae3.zip |
Fixed Ken Estes's lmtp_responses bug.
svn path=/trunk/; revision=2263
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | fetchmail.h | 3 |
2 files changed, 3 insertions, 4 deletions
@@ -1,11 +1,13 @@ Release Notes: -fetchmail-4.7.0 ()): +fetchmail-4.7.0 (): * Minor correction to make i18n subdirectory builds work better. * Rob Funk's old-message-check optimization. * Fix an error in the logic for detecting when all connections are wedged. * Unwedge connections on wakeup. +There are 244 people on fetchmail-friends and 315 on fetchmail-announce. + fetchmail-4.6.9 (Tue Dec 1 14:46:19 EST 1998): * Better RFC822 conformance in fetchmail trace headers. * Corrected MIME generation of bounce mail. diff --git a/fetchmail.h b/fetchmail.h index 2f97a016..f3522c51 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -278,9 +278,6 @@ struct msgblk /* message header parsed for open_sink() */ struct idlist *recipients; /* addressees */ char return_path[HOSTLEN + USERNAMELEN + 4]; int reallen; - - /* this is written by open_sink */ - int lmtp_responses; /* count of LMTP responses expected */ }; |