How to import RSS feeds?

Hello everyone.  I have OS 10.6.8 and Mail program v.4.5
I had to create a new mail account.  How can I import the RSS feeds from my old account?  I have a time machine backup.  I've tried replacing the plist but it doesn't work.  Thank you.  

1) My RSS feed reappeared like before but some do not work and none of them show more than 25 of the previous feeds.
I believe some don't work because either they "expired", the URL changed, or the article was removed. I'm sure the number appearing is due to the time you have the preferences set to remove feeds.
How can I get the old entries back in Mail?
I would think you have to go to the RSS section of Mail's preferences and set the time for it to remove feeds.
2)  You said there was an esier way to fix the email in limbo problem.  How?
If an email is "stuck" in the Outbox, you should be able to remedy that problem like this:
1. Quit Mail if it's running.
2. Go to Home/Library/Mail/Mailboxes/Outbox.mbox
3. Delete the message inside Outbox.mbox
4. Go back to mail and restart it.

Similar Messages

  • How do you import RSS feeds into FF? (i have exported OPML file out of IE8 but can't find import option for feeds in FF)

    how do you import RSS feeds into FF? i have exported opml file out of IE8 but can't find how to import this into FF?

    See OPML Support: https://addons.mozilla.org/firefox/addon/2625

  • How to parse RSS Feed - Different URL for each button

    I'm making an app with AS3 and I want to be able to load a different RSS Feed when the user clicks on each button. This is the code I have so far, has anyone any idea how I can modify my code to do this?
    here's my code so far:
    //IMPORT CLASSES
    import fl.controls.List;
    import flash.net.URLLoader;
    import flash.events.Event;
    import flash.net.URLRequest;
    cGOSSIP.addEventListener(MouseEvent.CLICK, doClick);
    function doClick (e:MouseEvent):void
    cGOSSIP.gotoAndStop ("GOSSIP"); 
    wNEWS.addEventListener(MouseEvent.CLICK, doClick2);
    function doClick2 (e: MouseEvent):void
              wNEWS.gotoAndStop ("WORLD NEWS");
    eNEWS.addEventListener(MouseEvent.CLICK, doClick3);
    function doClick3 (e: MouseEvent):void
              eNEWS.gotoAndStop ("ENT NEWS");
    fbNEWS.addEventListener(MouseEvent.CLICK, doClick4);
    function doClick4 (e: MouseEvent):void
              fbNEWS.gotoAndStop ("FB NEWS");
    //NEWSLIST FORMATTING
    var newsListTf:TextFormat = new TextFormat();
    newsListTf.font = "Verdana";
    newsListTf.color = 0xFFFFFF;
    newsListTf.size = 18;
    newsListTf.align = "left";
    newsList.setRendererStyle("textFormat", newsListTf);
    newsList.rowHeight = 100;
    newsList.allowMultipleSelection = false;
    //newsList.wordWrap = true;
    //NEWSDISPLAY TEXT AREA FORMATTING
    var rssStoryTf:TextFormat = new TextFormat();
    rssStoryTf.font = "Verdana";
    rssStoryTf.color = 0x6699CC;
    rssStoryTf.size = 22;
    rssStoryTf.align = "left";
    rssStory.setStyle("textFormat", rssStoryTf);
    //READMORE BUTTON FORMATTING
    var buttonTf:TextFormat = new TextFormat();
    buttonTf.font = "Verdana";
    buttonTf.color = 0xFFFFFF;
    buttonTf.size = 22;
    btn_ReadMore.setStyle("textFormat", buttonTf);
    //RSS FEED
    var rssLoader:URLLoader = new URLLoader();
    var rssURL:URLRequest = new URLRequest
    ("http://rssfeeds.tv.adobe.com/adobe-higher-education-solutions.xml");
    rssLoader.addEventListener(Event.COMPLETE, rssLoaded);
    newsList.addEventListener(Event.CHANGE, selectRssStory);
    btn_ReadMore.addEventListener(MouseEvent.CLICK, goToURL);
    rssLoader.load(rssURL);
    var newsXML:XML = new XML();
    var currentStoryURL:URLRequest = new URLRequest();
    newsXML.ignoreWhitespace = true;
    function rssLoaded(evt:Event):void
    newsXML = new XML(rssLoader.data);
    //trace(newsXML);
    for(var item:String in newsXML.channel.item) {
    //newsList.addItem({label: newsXML.channel.item[item].pubDate.substr(0, 16)
    //+": " + newsXML.channel.item[item].title } );
    newsList.addItem({label: newsXML.channel.item[item].title.substr(0, 40)
    +" ..." } );
    newsList.selectedIndex = 0;
    //FIRST LOAD
    currentStoryURL = new URLRequest(newsXML.channel.item[0].link);
    rssStory.htmlText = newsXML.channel.item[0].description;
    function selectRssStory(evt:Event):void
    rssStory.htmlText = newsXML.channel.item[evt.target.selectedIndex ].description;
    currentStoryURL = new URLRequest(newsXML.channel.item[evt.target.selectedIndex
    ].link);
    function goToURL(event:MouseEvent):void
    navigateToURL(currentStoryURL);

    I copied the wrong code, it works and loads the feed but I have a number of buttons in the main menu and I want to be able to load a different rss feed for each button?
    Here's the code.
    btn_Home.addEventListener(MouseEvent.CLICK, clickHome);
    function clickHome(e:MouseEvent):void
              gotoAndStop ("START");
    //NEWSLIST FORMATTING
    var newsListTf:TextFormat = new TextFormat();
    newsListTf.font = "Verdana";
    newsListTf.color = 339999;
    newsListTf.size = 18;
    newsListTf.align = "left";
    newsList.setRendererStyle("textFormat", newsListTf);
    newsList.rowHeight = 100;
    newsList.allowMultipleSelection = false;
    //newsList.wordWrap = true;
    //NEWSDISPLAY TEXT AREA FORMATTING
    var rssStoryTf:TextFormat = new TextFormat();
    rssStoryTf.font = "Verdana";
    rssStoryTf.color = 0x6699CC;
    rssStoryTf.size = 22;
    rssStoryTf.align = "left";
    rssStory.setStyle("textFormat", rssStoryTf);
    //READMORE BUTTON FORMATTING
    var buttonTf:TextFormat = new TextFormat();
    buttonTf.font = "Verdana";
    buttonTf.color = 0xFFFFFF;
    buttonTf.size = 22
    btn_ReadMore.setStyle("textFormat", buttonTf);
    //RSS FEED
    var rssLoader:URLLoader = new URLLoader();
    var rssURL:URLRequest = new URLRequest
    ("http://www.tmz.com/rss.xml");
    rssLoader.addEventListener(Event.COMPLETE, rssLoaded);
    newsList.addEventListener(Event.CHANGE, selectRssStory);
    btn_ReadMore.addEventListener(MouseEvent.CLICK, goToURL);
    rssLoader.load(rssURL);
    var newsXML:XML = new XML();
    var currentStoryURL:URLRequest = new URLRequest();
    newsXML.ignoreWhitespace = true;
    function rssLoaded(evt:Event):void
    newsXML = new XML(rssLoader.data);
    //trace(newsXML);
    for(var item:String in newsXML.channel.item) {
    //newsList.addItem({label: newsXML.channel.item[item].pubDate.substr(0, 16)
    //+": " + newsXML.channel.item[item].title } );
    newsList.addItem({label: newsXML.channel.item[item].title.substr(0, 40)
    +" ..." } );
    newsList.selectedIndex = 0;
    //FIRST LOAD
    currentStoryURL = new URLRequest(newsXML.channel.item[0].link);
    rssStory.htmlText = newsXML.channel.item[0].description;
    function selectRssStory(evt:Event):void
    rssStory.htmlText = newsXML.channel.item[evt.target.selectedIndex ].description;
    currentStoryURL = new URLRequest(newsXML.channel.item[evt.target.selectedIndex
    ].link);
    function goToURL(event:MouseEvent):void
    navigateToURL(currentStoryURL);

  • Import RSS Feed

    Can anybody please let me know if it is possible to import an RSS Feed into my iWeb site? I would like the news feed to appear on my site [as opposed to wanting to establish a feed of my info to others].
    Hope someone can help.
    Regards....Scotty

    Scotty ~ Try this:
    http://springwidgets.com/widgets/view/23
    ...and here's some info on how to integrate the HTML into your web site:
    http://alyeska.altervista.org/en/iWebAlternativeHTML.html
    It would be easier if you upgrade to iWeb 2 (in iLife '08) ~ then you could probably use iWeb 2's +HTML Snippet+ feature. Here's a video tutorial:
    http://www.apple.com/ilife/tutorials/#iweb-design-55
    ...and more info here:
    http://www.apple.com/ilife/iweb/#widgets
    http://www.ourpla.net/cgi/pikie?EmbeddingRssInWebPages

  • How to get rss feeds in mountain lion mail

    I don't see any way to get Apple RSS feeds to show up in Mountain Lion like the previous OSX. Does anyone one know how?

    You don't. apple has removed the RSS feed features from Mail and Safari. You have to get a third-party RSS reader now.

  • How to get rss feeds onto the Journe Air 801 via the external memory card?

    I've bought the Journe Air 801 digital photo frame and the manual says "save the rss feed of the album you wish to display in the .rss format and add to the external memory card" but it doesn't say how you create this .rss file or copy it onto your memory card. does anyone know how i can get a picasa rss feed into this format?
    I've successfully added a picasa feed manually in the frame but as picasa only updates the rss feed if new galleries are added, not new photos, the photo feed is not updating on the frame so I'd like to alter the rss address.
    Thanks

    Hi guys,
    i will use this thread now also to document my contacts with the toshiba support hotline:
    Early December
    I called the hotline the first time and told the support guy (#1) the problem.
    He promised to look into this and that he would call me back.
    I did not get an incident number.
    He called me back the same day and told me, they don't have an air 801 to test, just an air 1000.
    The air 1000 has a different menu and does support rss without any problems.
    He said, he will try to to find an air 801 and get back at me.
    A week later
    Since there was no response I called again and got a different guy.
    I told my story again and the support guy #2 promised to ask support guy #1 when #1 is back in office.
    He promised to send me an email and include the incident number.
    December 11th
    I got an email from #2 saying that he could not find my original request. He did not include the incidient number, although that was promised.
    He promised me again that he will get in touch with #1 and ask him for information.
    December 18th
    I sent #2 a mail asking for current status.
    December 28th
    I called hotline again and had to wait really long (the prerecorded message at the beginning informed me that support staff was hit by a flu).
    So I told support guy #3 my story and this time insisted on a incident number and got one. Unsurprisingly #3 could not find my first two requests.
    He promised me to hand this to level 3 support and somebody will get back to me, but probably not within this week. I told him I hope for a response within the next four weeks...
    So let's see what will happen next.
    Maybe you guys could get in touch with toshiba support in your countries, I have the feeling that this increases the chance of getting a "correct" answer.
    Cheers,
    Kai

  • Import RSS feeds to Mail

    Anyone know of a way to import OMPL rss feeds into Mail?
    --Andrew

    I have a manual way that will work. It will take a few steps but you can import in whole or in batches. If you have many feeds you may want to do in batches so as not to mix them up.
    This will work with Vienna. It may just work with other readers too.
    1) open Safari, and get to the bookmark manager (menu bar/bookmarks/show all bookmarks)
    2) create a temp folder we can use to import the feeds. (*1)
    3) open vienna & select a single feed or a range of feeds. (*2)
    4) drag & drop the feeds in to the temp folder in safari you created in step 2.
    5) open mail, got to (menu bar/file/add rss feed). Select the temp folder (*3)
    6) click the all the check boxes and click add and your feeds have been imported. (*4)
    If you had to do it manually this worked for me. Beats cut/paste links or manually typing. There is probably other ways to do it. Hope Apple patches this RSS feature soon. I dont want to wait for OSX 10.6 to see an improvement.
    Notes:
    *1 - Create a temp folder for each sub folder in your news reader. This will speed things up.
    *2 - Unfortunately it does not drag and drop the folders you physically have to select the range of feeds. If your selection does include the folder (eg. your selection strattled 2 folders it will still process your selection. In other words it ignores the folder and drags your selection.
    *3 - If you did create a temp folder for each folder group you had in your RSS feeder this is a step you would repeat at selecting the various temp folders. But read not 4 before you do.
    *4 - Yes you have to individually click each box. Another grip is that even though you highlighted a folder in Mail it will import the feeds to the RSS main folder. This means you have to select & drag/drop into the sub-folder.

  • How to get RSS feeds in Safari

    I had several RSS feeds set up in Safari.  After upgrading to Mountain Lion and Safari 6.0, those links do not seem to work.  Wondering how I can get my RSS feeds to work in Safari or is there another trick that needs to be used?
    Thanks

    Unbeleavable,
    totally idiotic and useless,
    money spent and time spent to find a solution to something that has been there and working.
    sad sad
    but good news, google chrome works perfectly, look is the same as safari s old ssr reader, bit nicer than firefox,
    so chrome it will be, anyhow, safari took all from chrome,

  • Learn how to setup RSS feeds!

    Here is a document of the Tagset IDs you'll need to setup RSS feeds.
    https://discussions.apple.com/docs/DOC-2341
    Here are some instructions on how to setup the RSS feed widget in Your View.
    First, make sure you are in Your View edit mode.
    Select Other --> RSS Subscription
    Drag the RSS Subscription widget to the desired location in Your View.
    Select "Edit this widget" from the upper right hand corner of the widget
    For Apple Support Communities, each category has a tagSetID. Here is a list of the tagSet IDs you'll need to setup the RSS feeds:
    https://discussions.apple.com/docs/DOC-2341
    The URL that needs to be modified with the appropriate tagSetID:https://discussions.apple.com/community/feeds/allcontent?tagSet=<tagSetID>
    Enter that into the URL box in the RSS Subscriptions widget
    Click "Save Properties"
    Add more RSS Subscription widgets to get RSS feeds from other categories.
    When you are done editing, make sure to click "Publish Layout" If you do not, your changes will not be saved.
    See you around the communities!
    -Matt K.

    Unbeleavable,
    totally idiotic and useless,
    money spent and time spent to find a solution to something that has been there and working.
    sad sad
    but good news, google chrome works perfectly, look is the same as safari s old ssr reader, bit nicer than firefox,
    so chrome it will be, anyhow, safari took all from chrome,

  • How to embed RSS feeds in a website using DW8

    Hi, I would be very grateful for any advice on the best
    method, extension or s/w to embed a rolling news RSS feed (+/-
    video) to my website, which can be easily styled using CSS. My
    server supports PHP. Many thanks, Simon

    Not sure what you mean exactly.
    1) Do you want to create and publish your own RSS feeds which
    people can
    subscribe
    to? or
    2) do you want to display other people's RSS news feeds on
    your web site?
    or
    3) do you just want a vertical scroller?
    If 1)
    How to Create an RSS Feed with Notepad, a Web Server and a
    Beer - the beer
    is optional :-)
    http://www.downes.ca/cgi-bin/page.cgi?post=56
    RSS Specifications - everything you need to know about RSS:
    http://www.rss-specifications.com/display-rss.htm
    FeedForAll - feed generating software for win/mac:
    http://www.feedforall.com/
    If 2)
    Feed Roll - JavaScript generator for including news feeds in
    websites:
    http://www.feedroll.com/rssviewer/
    Google Ajax feedfetcher - requires you to have a Google API
    key#
    http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
    if 3)
    Project Seven's Vertical Scroller is nice.
    http://www.projectseven.com/products/tools/vscroller/index.htm
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Simon RCL" <[email protected]> wrote in
    message
    news:gcir6k$jvf$[email protected]..
    > Hi, I would be very grateful for any advice on the best
    method, extension
    or
    > s/w to embed a rolling news RSS feed (+/- video) to my
    website, which can
    be
    > easily styled using CSS. My server supports PHP. Many
    thanks, Simon
    >

  • How to get RSS feeds for publishing?

    Hey everyone, I hope everoyones having a great St.Patricks Day! I have just posted my first podcast on Sound Cloud this past Thursday and now Im ready to branch out and get it onto podcast directories like iTunes. However, I am not that computer suavy, and I understand nothing about acquiring RSS feeds or making them and Im really lost at all this. One website says to publish an episode then get the feed but I dont know how to publish it, another says to make a blog then upload it to the blog using some OurMedia website or something, I dont know what to think or how to start. If anyone can explain these or know a website that really explains everything in depth I would greatly apprecaite any help at all this is really frustrating me. Thank you in advance, I appreciate all the help!

    Could I invite you to read my 'get-you-started' page on podcasting:
    http://rfwilmut.net/pc
    which also provides a link to Apple's comprehensive (if a little daunting) Tech Note at
    http://www.apple.com/itunes/podcasts/specs.html
    for additional information (I should use it as a reference rather than trying to read it straight through).
    All this will doubtless raise specific questions for you, and do please post back with them.

  • How To add RSS feeds To N900

    Can Someone explain a step by step process of adding rss feed on N900.
    Please use this page as an example so its easy to add.
    Thanks in advance
    Owned Nokia 5110, Nokia 8210, Nokia 8250, Nokia 6610, Nokia 6820, Nokia 9500, Nokia E50, Nokia 8800 , Nokia E71, Nokia N91 4 GB, Nokia N95, Nokia N95 8GB, Nokia N97, iPhone 3GS & finally Nokia N900,Nokia X6, Nokia E55, BB BOLD 9700, iphone 4, Nokia N8; BB Pearl 9100, HTC Legend, & Now Nokia N9. (N900 is the Best)
    Solved!
    Go to Solution.

    Hi InvinsibleSach,
    Try this.
    On this message thread first do the following:
    Topic Options (just above your first post)
    Subscribe to This Topic's RSS Feed
    That will open a new window.
    Take note of the URL in that new address bar.
    (/discussions/rss/message?board.id=maemo&message.id=14252)
    Now on your N900:
    Menu
    RSS
    + symbol at bottom left of screen
    Type the address you noted before into the text field.
    (/discussions/rss/message?board.id=maemo&message.id=14252)
    Done
    I hope this helps.
    My posts are my opinion and in no way the direct views of Nokia.
    If my posts are helpful, please give me some KUDOS using the green star on the left.

  • How to recover RSS feeds from Time Machine backup?

    Hi,
    I have deleted an RSS feed and so even his messages are gone. Then I have tried to recover it from my TM backup but I just discovered that TM shows me the RSS feed but it does not allow me to select them to recover.
    Is it correct?
    Is there any way to recover that?
    thanks!

    Thanks for the response BDAqua, I did use Migration Assistant to transfer her data from the SuperDuper backup.  Are you suggesting that I use Migration Assistant to transfer data from the Time Machine backup?  Will that result in duplication?  Sorry, but I've no experience at all with Time Machine backups and don't know whether you can 'pick and choose' what to restore from the Time Machine using Migration Assistant.
    Cheers
    Tricia

  • How to enable RSS feeds in UCM

    Hi ,
    Help required in enabling RSS feeds in UCM .
    I have no idea about RSS enabling.
    It will be really helpful for me ,if someone can guide me by step wise process for enabling RSS feeds in UCM.
    Also wanted to know whether it involves any cost like ..is any licensing required or whether we need to subscribe somewhere.
    Please help.
    Thanks in advance.
    Anuzz

    Hi Everyone,
    I have found that the Sample RSS Feed Component (as suggested in this thread) no longer work in 11g for RSS Feed ingestion (from a remote server) but are fine for producing RSS Feeds (simple iDoc templating anyhow).
    The logs from the GET_REMOTE_FEED service indicate the following error.
    I have tried this on our DEV server and my local laptop instance and don't believe this is network connectivity issues.
    Alas, I am not a Java programmer to look further into the issue - does anyone have an updated GET_REMOTE_FEED service or can advise on the issue (likely an update to 11g required such as the idcToken? change).
    Thanks
    Unable to execute service GET_REMOTE_FEED and function getRssFeedForUrl.
    Tried all: '6' addresses, but could not connect over HTTP to server: 'rss.news.yahoo.com', port: '80' java.net.ConnectException: Tried all: '6' addresses, but could not connect over HTTP to server: 'rss.news.yahoo.com', port: '80'. [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csUserEventMessage,user,server-address!csFileServiceReferredToBy,https://server-address!csFileServiceUserAgent,Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.22) Gecko/20110902 Firefox/3.6.22 (.NET CLR 3.5.30729),GET!csServiceDataException,GET_REMOTE_FEED,getRssFeedForUrl!$!$Tried all: '6' addresses\, but could not connect over HTTP to server: 'rss.news.yahoo.com'\, port: '80'!syJavaExceptionWrapper,java.net.ConnectException: Tried all: '6' addresses\, but could not connect over HTTP to server: 'rss.news.yahoo.com'\, port: '80'
    intradoc.common.ServiceException: !csServiceDataException,GET_REMOTE_FEED,getRssFeedForUrl!$
    *ScriptStack GET_REMOTE_FEED
    GET_REMOTE_FEED,dID=3190,dDocName=FRAG_LIBRARY_RSS_FEEDS,fileUrl=/cs/groups/devwcs/documents/system/mdaw/mday/~edisp/pgtmp_home_asl.hcsp3:getRssFeedForUrl,dID=3190,dDocName=FRAG_LIBRARY_RSS_FEEDS,fileUrl=/cs/groups/devwcs/documents/system/mdaw/mday/~edisp/pgtmp_home_asl.hcsp
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
    **** UPDATE: IT WAS INDEED NETWORK INFRASTRUCTURE WHICH CAUSED THE ABOVE EXCEPTION AND THE SERVICE WORKS ON 11G ****
    Edited by: user615721 on Sep 14, 2011 10:20 AM

  • How to get RSS feed url for site?

    Is there a way to get the RSS feed url for a blog using Safari?  I'm currently using FF for this since it is very simple.  But that's about the only reason I use FF.  Would be nice not to need two tools.
    I don't want to subscribe to the site in Safari.  I have an RSS Reader app that I plug the url into.  I just want to see the url.

    For some reason they removed that handy feature from Safari. But, there is an Extension called RSS Menu, which will add a button on your toolbar, giving you that function back.

Maybe you are looking for

  • PS CS2 won't open due to error message regarding RAM...

    I've been running Photoshop CS2 since it came out and never had any real problems. Then the other night I loaded approx 20 custom shape files that had about 10 shapes each from ActionFx.  I played with them for a while and everything was working fine

  • DI Server problem! HELP!

    Hello,    I would like to use DI Server instead of DI API, because we could have a customer with larger amount of clients, and they need AddOns, Doc generating,... So I think it would be better let the server work with it using the DI Server. We dont

  • Data transfer error(application server)

    Hi Gurus, While uploading data into application server, I have an issue. I am having the data in internal table but I am unable to send all the data into application server. (open dataset file for output ) TRANSFER l_h_tbl_file  TO fu_wk_get_file. Da

  • Ipod comes up with "cannot be updated. The required file cannot be found"

    Everytime i plug my ipod in this error msg apears. iTunes works fine, everything works fine, but it won't let me upload any pictues onto my iPod. I have updated my iPod with the newest software, and i have updated iTunes too. I REALLY need to get thi

  • Preview keyboard shortcuts

    iMac with SnowLeopard 10.6.8 I use Preview to view and annotate screenshots. Rather than accessing the pulldown menu Tools --> Annotate --> Add Text (etc), I would like to use a keyboard shortcut instead. "Add Text" indicates  ^ command T  is the com