I'd like to try a really light way of picking up mail from our Linux Mail Server.
Gmail allows authenticated RSS mail feeds apparently and I'd like to experiment
with it.
Any ideas why it's not working in Ubuntu ? This is the error:
sed: -e expression #1, char 53: unterminated `s' command
-- EDIT --
In case it helps someone else, I got this working with this script instead:
http://pastie.org/2018467
curl -u username --silent "https://mail.google.com/mail/feed/atom\" | perl -ne
'print "\t"
if //; print "$2\n" if /<(title|name)>(.*)<\/\1>/;' | |