From 11489caef3f3ae2626fbb0becb19724e8f5839ae Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 21 Aug 2000 03:35:43 +0000 Subject: Almost ready to ship 5.5.1 svn path=/trunk/; revision=2952 --- Makefile.in | 2 +- NEWS | 8 ++++++++ fetchmail-FAQ.html | 22 ++++++++++++++++++---- fetchmail.man | 3 +++ pop3.c | 2 +- 5 files changed, 31 insertions(+), 6 deletions(-) diff --git a/Makefile.in b/Makefile.in index a75b8b9d..5770beff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ # So just uncomment all the lines marked QNX. PACKAGE = fetchmail -VERSION = 5.5.0 +VERSION = 5.5.1 SUBDIRS = @INTLSUB@ @POSUB@ diff --git a/NEWS b/NEWS index f8a1c2b8..5b0cfed4 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,14 @@ (The `lines' figures total .c, .h, .l, and .y files under version control.) +* Fix a finger error in the dot-termination fix for 5.5.0. +* Javier Kohen's update for es.po. +* Jiri Pavlovsky's cs.po update. +* Added to FAQ item on K3 a recipe using the new plugin %h option. +* Fixed a nasty typo in FAQ item T1 -- the old version disdn't generate + correct Delivered-To hacks. Thanks to "Peter 'Rattacresh' Backes" + for spotting this. + ------------------------------------------------------------------------------ fetchmail-5.5.0 (Sat Aug 12 12:47:21 EDT 2000), 19241 lines: diff --git a/fetchmail-FAQ.html b/fetchmail-FAQ.html index aaeb5f5d..caa9c902 100644 --- a/fetchmail-FAQ.html +++ b/fetchmail-FAQ.html @@ -10,7 +10,7 @@
Back to Fetchmail Home Page To Site Map -$Date: 2000/07/27 20:24:24 $ +$Date: 2000/08/21 03:35:41 $

Frequently Asked Questions About Fetchmail

@@ -1054,7 +1054,7 @@ If you want to support multidrop mode, and you can get access to your mailserver's sendmail.cf file, it's a good idea to add this rule:

-H?l?Delivered-To: $u
+H?l?Delivered-To: $h
 
and declare `envelope "Delivered-To:"'. This will cause the @@ -1659,7 +1659,7 @@ http://www.bieringer.de/linux/IPv6/IPv6-HOWTO/IPv6-HOWTO.html

K3. How can I get fetchmail to work with ssh?

-We have four recipes for this.

+We have five recipes for this.

Single-User POP3

@@ -1841,6 +1841,20 @@ bound for along timeout and has timing issues requiring tricks like sleep, etc. I use this method for fetching all the mail for mimique.com"

+

Using plugin

+ +Since 5.4.5, there's been a very simple recipe. Use the following option: + + + plugin "ssh %h /usr/sbin/rimapd" + + +You may have to use a different absolute pathname. This option tells +fetchmail that instead of opening a connection on the server's port +143 and doing standard IMAP authentication, fetchmail should ssh to +the server and run rimapd, using the more secure ssh authentication +(as well as getting ssh's encryption).

+


K4. What do I have to do to use the IMAP-GSS protocol?

@@ -2878,7 +2892,7 @@ install Linux on your server...

Back to Fetchmail Home Page To Site Map -$Date: 2000/07/27 20:24:24 $ +$Date: 2000/08/21 03:35:41 $

Eric S. Raymond <esr@snark.thyrsus.com>
diff --git a/fetchmail.man b/fetchmail.man index 730b89a1..d45aff5f 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -1122,6 +1122,9 @@ proto[col] -p T{ Specify protocol (case insensitive): POP2, POP3, IMAP, IMAP-K4, IMAP-GSS, APOP, KPOP T} +local[domains] \& T{ +Specify domain(s) to be regarded as local +T} port -P T{ Specify TCP/IP service port T} diff --git a/pop3.c b/pop3.c index 73da12d3..39da35c2 100644 --- a/pop3.c +++ b/pop3.c @@ -157,7 +157,7 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting) while ((ok = gen_recv(sock, buffer, sizeof(buffer))) == 0) { - if (DOTLINE([0])) + if (DOTLINE(buffer)) break; if (strncasecmp(buffer, "rpa", 3) == 0) has_rpa = TRUE; -- cgit v1.2.3