Rick Measham wrote:
This release fixes a LOT of bugs that went unnoticed (in some cases for
couple of years! GAK!) over at RT. (Does anyone know if you can turn off
RT for a particular distribution?)
No, you can't turn it off.
I have a script that I run from a cron job every night that
automatically subscribes me to rt.cpan RSS feeds for all of my
distributions, adding new feeds to my subscriptions list whenever I
uplaod something new. Would that help? It makes some no doubt
unwarranted assumptions about what RSS reader you use (I use rss2email)
but should be easy to adapt to anything sane:
#!/bin/sh
GET=/usr/local/bin/GET
R2E=/usr/bin/r2e
USER=MYPAUSEID
PASS=mypassword
for i in `$GET http://rt.cpan.org/?user=$USER\&pass=$PASS|grep
Dist/Display.html\?Status=Active|sed 's/.*Queue=//;s/".*//'`; do
if (! $R2E list|grep rt.cpan.org.*$i>/dev/null) ; then
echo Adding RSS feed for $i on rt.cpan.org
$R2E add
http://rt.cpan.org/Search/Results.rdf?user=$USER\&pass=$PASS\&Query=Queue%20%3D%20\'$i\'%20AND%20\(%20Status%20%3D%20\'new\'%20OR%20Status%20%3D%20\'open\'%20OR%20Status%20%3D%20\'stalled\'%20\)
fi
done
--
David Cantrell
Outcome Technologies Ltd
BUPA House, 15-19 Bloomsbury Way, London WC1A 2BA
Registered in England, No: 3829851