aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail-FAQ.html
Commit message (Expand)AuthorAgeFilesLines
* Revisited sections B, F, C.Matthias Andree2006-05-101-6/+11
* Revised G sections and T2.Matthias Andree2006-05-081-117/+106
* Revise debug options to --nosyslog --nodetach -vvv.Matthias Andree2006-05-031-10/+9
*
#!/bin/sh
#
# timeplot -- plot data on fetchmail release intervals
#
# 

# Get data from the NEWS file
timeseries | awk >/tmp/timeplot$$ '
START	{maxdiff = 0;}
/^[#%]/	{next;}
	{days[count++] = $6;}
END	{
		for (i = 0; i < count-1; i++)
		{
			diffs[i] = days[i] - days[i + 1];
			if (maxdiff < diffs[i])
				maxdiff = diffs[i];
		}
		for (i = 0; i <= maxdiff; i++)
			freq[i] = 0;
		for (i = 0; i < count - 1; i++)
		{
			freq[diffs[i]]++;
		}
		for (i = 0; i <= maxdiff; i++)
			printf("%d	%d\n", i, freq[i]);
	}
'

gnuplot >time.png - <<EOF
set xlabel "Release interval (days)"
set ylabel "Interval frequency"
plot '/tmp/timeplot$$' using 1:2 \
	title "Release interval frequency"
pause 9999
EOF

rm -f /tmp/time*

# timeplot ends here
NET_SECURITY macro - the required libr...
Matthias Andree2005-07-301-17/+0
* Add new design notes document.Matthias Andree2005-07-201-3/+4
* Rename design-notes.html to esrs-design-notes.html. Remove ~esr/ path from li...Matthias Andree2005-07-201-5/+1
* Add Brian Candler's SSL certificate verification hints to the FAQ.Matthias Andree2005-07-051-0/+62
* Make the FAQ well-formed XHTML.Matthias Andree2005-07-031-22/+16
* Update links to fetchmail home page.Matthias Andree2005-04-271-2/+2
* Hotmail and Lycos recipe.Eric S. Raymond2004-01-131-8/+20
* Restore some mangled labels.Eric S. Raymond2004-01-131-5/+5
* Add stuff abour maiilfilter.Eric S. Raymond2003-10-101-3/+7
* Merge in various small fixes, including two remote DOSEric S. Raymond2003-10-101-3/+3
* Ready to ship.Eric S. Raymond2003-08-061-4/+7
* Typo fix.Eric S. Raymond2003-07-221-3/+3
* Added warning about comcast.net.Eric S. Raymond2003-07-221-115/+121
* Added O13.Eric S. Raymond2003-07-171-3/+9
* Version bump.Eric S. Raymond2003-02-281-5/+5
* More about 451.Eric S. Raymond2003-01-141-6/+5
* Routine updates, including the latest Shetye patch.Eric S. Raymond2002-12-261-10/+2
* Added FAQ note about 451 response.Eric S. Raymond2002-11-121-4/+30
* Update on exchange attachments.Eric S. Raymond2002-10-311-8/+13
* Minor bug fixes.Eric S. Raymond2002-10-181-6/+19
* OTP fix patches from Stanislav Brabec.Eric S. Raymond2002-10-181-16/+23
* Ready to ship.Eric S. Raymond2002-09-171-4/+4
* GMX correction.Eric S. Raymond2002-09-101-44/+22
* vbmailshirld info.Eric S. Raymond2002-09-041-246/+222
* Upgraded to XHTML.Eric S. Raymond2002-07-301-2089/+2479
* More fixes from Sunil.Eric S. Raymond2002-07-101-2/+9
* Demon Internet does TOP now.Eric S. Raymond2002-06-211-12/+4
* Added a note about Outlook-like behavior.Eric S. Raymond2002-06-211-25/+41
* Note about sendmail -i.Eric S. Raymond2002-06-061-2/+14