I wrote a perlscript to keep me updated on the diaries.
People have written lots of stuff their recently so if
I mail myself the page now I reduce the chance of missing
something important. :-)
Just put this script to work with cron:
----------------------------------------
use LWP::Simple;
use MIME::Lite;
MIME::Lite->new(
From => 'xyz@aol.com',
To => 'cat@sleepy.net',
Subject => 'Advogato - ' . scalar localtime,
Type => 'text/html',
Data=>get('http://www.advogato.org/recentlog.html')
)->send;
---------------------------------------
NB: Change the mail addresses to your own of course.