From 293a45fe95947d84cc87f3211cd1adeacf5654d4 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sat, 16 Oct 2010 10:51:08 +0200 Subject: Link fetchmail-EN-2010-03 and update front page. --- website/index.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'website/index.html') diff --git a/website/index.html b/website/index.html index 57d88803..903a64b9 100644 --- a/website/index.html +++ b/website/index.html @@ -15,7 +15,7 @@ - +
Fetchmail2010-10-092010-10-16
@@ -29,7 +29,7 @@ FAQ (PDF)
Design Notes
Download
- Security
+ Security/Errata
Development
Project Page

@@ -43,12 +43,18 @@

NEWS: FETCHMAIL 6.3.18 RELEASE

+

On 2010-10-16, an erratum notice was issued + to document important fixes made in the 6.3.18 release listed + below. Distributors are advised to upgrade their packages to + 6.3.18.

On 2010-10-09, fetchmail-6.3.18 has been released (this is the download link), fixing a regression of the rcfile parser from 6.3.0, a security bug in debug output that can cause memory exhaustion and abort, and improves SSL - usability. It is a recommended update for all users. Click here to see the change details.

-- cgit v1.2.3 e56f'/>
blob: c5e653f42fefb1e63fdf5eaac49de80754fd832b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Set up command completion for zsh
#
fetchmailauthtypes=(password kerberos kerberos_v5)
fetchmailprotocols=(auto pop2 pop3 apop rpop kpop sdps imap imap-k4 imap-gss etrn)
function fetchmailformattedinterfaces ()
{ reply=(`ifconfig|perl -e '$/="";while(<>){s/[\r\n]//g;if(/^(\w+\d*).*inet addr:([\d\.]+)/){print "$1/$2\n";}}'`) }
function fetchmailcompctl ()
{ reply=(`awk '{ print $2 }' < ~/.fetchmailrc` `fetchmail --help 2>&1| cut -c 7-19 | sed "s/,//g"`) }
compctl -K fetchmailcompctl \
	-x "C[-1,-L|--logfile]" -f \
	-  "C[-1,-f|--fetchmailrc]" -f \
	-  "C[-1,-i|--idfile]" -f \
	-  "C[-1,-I|--interface]" -K fetchmailformattedinterfaces \
	-  "C[-1,-M|--monitor]" -K fetchmailformattedinterfaces \
	-  "C[-1,-p|--protocol]" -k fetchmailprotocols \
	-  "C[-1,-A|--auth]" -k fetchmailauthtypes \
	-  "c[-1,--plugin]" -m \
	-  "c[-1,--plugout]" -m \
	-- fetchmail