To export all your RSS feeds from Mac Mail as a list, open up terminal and enter the following on a single line:

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

Thanks to macosxhints.com for this one!