Hi Cara, Darcy, Hank and Others There was a discussion about exporting RSS feeds from Apple Mail in Mac OS X Hints, but most of it seems Leopard specific, so I can't check this out myself. However, the simplest way to get a list of RSS feeds seemed to be to open terminal and use the pubsub command. For example:
pubsub --client com.apple.mail list should produce a list of feeds giving the title, URL, and refresh interval. To just get a list of the URL feeds: pubsub --client com.apple.mail list | cut -f3 | sed -ne '3,$p' If you want to put the output of this command in a file, you would have to direct it into a file by adding to the end of the command. For example, to store the output into a file named "mylist" (without the quotes), use: pubsub --client com.apple.mail list | cut -f3 | sed -ne '3,$p' > mylist Sorry I can't check this under Tiger. The Mac OS X Hints page is: http://www.macosxhints.com/article.php?story=20080319094830396 (10.5: Export Mail.app's RSS feed URLs in Terminal) There should be a man page for pubsub in Leopard, but here's the web page description for the pubsub command: http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/pubsub.1.html HTH Cheers, Esther On July 05, 2008, at 08:58AM, Cara Quinn wrote: > Darcy, how did you end up getting them one at a time?… > >thanks muchly!… > >Cara :) > > >On Jul 5, 2008, at 9:18 AM, Darcy Burnard wrote: > >> I would like to know this as well. I've figured out how to get them >> one at a time, but not in a large batch. >> Darcy >> >> On 5-Jul-08, at 10:41 AM, hank smith wrote: >> >>> hello I have a friend who has tons and tons of awesome rss feeds he >>> is subscribed to in apple mail >>> I am wanting to get hooked up with those feeds there a way he can >>> export his list send it to me I can import his rss feed list in mail? >>> thanks >>> Hank >>> >> >>
