aboutsummaryrefslogtreecommitdiffstats
path: root/t.validate-xhtml
Commit message (Collapse)AuthorAgeFilesLines
* Add --nonet to xmllint throughout.Matthias Andree2019-08-051-1/+1
|
* Validate XHTML 1.0 stuff even when skipping 1.1.Matthias Andree2012-04-011-9/+2
|
* Smoke test XHTML 1.1 validation and skip test if failed.Matthias Andree2010-11-091-2/+9
|
* Skip validation asciidoc-generated file.Matthias Andree2010-11-061-1/+4
|
* Revert "Also smoke test XHTML 1.1 and skip test on fail (for FreeBSD ports)."Matthias Andree2010-11-061-8/+0
| | | | This reverts commit 5c068135bd86f650e83e3dc95b67a31fdeb2587e.
* Also smoke test XHTML 1.1 and skip test on fail (for FreeBSD ports).Matthias Andree2010-11-061-0/+8
|
* Skip XHTML validation if xmllint or DTD are missing.Matthias Andree2010-03-051-0/+9
|
* Ignore fetchmail-man.html; it's not XHTML.Matthias Andree2009-08-181-1/+2
| | | | svn path=/branches/BRANCH_6-3/; revision=5421
* Validate *.html documents as XHTML in 'make check'.Matthias Andree2009-08-181-0/+15
svn path=/branches/BRANCH_6-3/; revision=5420
#fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
Mold Remover

Mold Remover is a short python script which integrates with fetchmail 
<http://fetchmail.berlios.de/> and allows the user to specify the 
number of days that mail should remain on the pop3 server before being 
deleted. 

It is released under the GNU GPL <http://www.gnu.org/copyleft/gpl.html>.

Usage: 
Set up fetchmail to run with keep and uidl options.
Edit the mold_remover.py file to specify the mailserver address
and login/password details. Also specify the UIDL file created by
fetchmail (this is created automatically by fetchmail when uidl option
is selected in the fetchmailrc file usually at
/var/mail/.fetchmail-UIDL-cache). Remember to chmod the moldremover
script to 700 so that passwords cannot be read. Next, edit the field to
set how many days you want the mail to be left on the server. Lastly
create a script to run moldremover.py with python which can either be
run as a cron job or as part of your connection script. It is advisable
to stop fetchmail before mold remover is run and then to restart
fetchmail afterwards. Here is an example /etc/cron.daily/ script:

#!/bin/bash
/etc/init.d/fetchmail stop >> /var/log/messages
/usr/bin/python /usr/local/bin/mold_remover.py >> /var/log/messages
/etc/init.d/fetchmail start >> /var/log/messages

Please feel free to email me (jmstone@dsl.pipex.com) if you have any questions or bugfixes!

James Stone