Tim Keller

Web, IT, Telecoms, Development, Networks, Photography, Life.

Archive for the ‘mail’ tag

RSS: Exporting from Mail.app to Google Reader

with one comment

Despite the fact that some believe that RSS is dead (well, some don’t), I still use it frequently to catch up on the day’s news at a glance.

Historically, I’ve kept my feeds in Apple’s Mail.app. However, I’ve recently found myself wanting to catch up on RSS when I’m in the car or at the gym. I needed a way to move from Mail to Google Reader.

The trouble is, Apple doesn’t have a way for you to export your RSS links our of Mail (as text or OPML). Thus, I turned to the Google, and found a fairly simple solution:

  1. Export the RSS feeds as URL links in plain text (Mac OSX Leopard-only). This bash link places the export on your desktop.

    IFS=$'\n';for i in $(find ~/Library/Mail/RSS/ -name "Info.plist");
    do grep "http://" $i | sed "s/.*\(http[^<]*\).*/\1/" >> ~/Desktop/Mail\ Feeds.txt;done

  2. Convert to from Plain Text to OPML. I used the excellent converter at http://unold.dk/code/opmlgen/
  3. Import into GoogleReader!

Simple. I know have all my feeds in GoogleReader, and can access them whereever I am.

Written by Tim Keller

June 21st, 2009 at 5:54 pm

Posted in Technology

Tagged with , , , ,