Issues importing messages from live mail

I am having problems importing messages from my WIndows Live Mail to my Thunderbird. The instructions say go to "Tools ImportExport | Import all messages from a directory | Also from its subdirectories." However in my Thunderbird l have tools, import and then it takes me to a wizard which says "This wizard will help import messages....." and when l select 'mail' as the type l wish to import it asks for a type of mail l want to import. Windows Live Mail is not in the list. Do you have any instructions or advice?

Those instructions assume that you have installed [https://addons.mozilla.org/en-us/thunderbird/addon/importexporttools/ ImportExportTools].
http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html
Or, if you can export the WLM mail to eml files, they can be dragged from their Explorer location and dropped in a TB folder.

Similar Messages

  • HT1277 import messages from e-mail account

    Hi,
    I have hotmail account satted up on my app mail app. and cant read my mails. inbox and other folders established in windows live doese not appear in my apple mail application

    Hi,
    Yes this is exactly how I set up my account in apple mail, The situation exactly is as follows:
    I cant see my inbox and other folders including its contents for which have been created in windows live.
    I can send e-mails form my Hotmail account using apple mail.
    I cant receive mails to my Hotmail account using my apple mail.
    I have three more mails working perfectly in apple mail. one of them is windows live mail.
    Have contacted Hotmail support and they trouble shoot my account no problem as they recommend to contact apple mail support for that purpose.
    Please support if facing this before.
    Thank you
    Omario69

  • After importing received and set messages from Opera Mail, Thunderbird works fine but does not save sent messages to Sent folder, even though messages are sent

    I successfully imported messages from Opera Mail. Initially the Sent mailbox was not showing in Thunderbird. A quick removal and fresh installation solved that, but Thunderbird does not save the sent messages to the Sent box, where the imported Opera Mail messages are stored. Even though messages are not saved, they are sent correctly. The image attached shows the error message.

    Probably a name-confuse If you store sent on mailserver it has to have the right name. (subscribe)
    You could set up under Account settings / copies and folders (maps) Sent pointing to the right local folder.

  • Exception when fetch message from pop3 mail server

    below exception occur whenever i fetched message from pop3 mail server. Its occur for perticular message. so i catched javax.mail.MessagingException but this is not working and rest of the messages skips.
    plz help me , its urgent.
    javax.mail.MessagingException: error loading POP3 headers;
      nested exception is:
            java.io.IOException: Unexpected response: ------=_NextPart_000_01B9_01C8
    A1AB.148BE090
            at com.sun.mail.pop3.POP3Message.loadHeaders(POP3Message.java:467)
            at com.sun.mail.pop3.POP3Message.getHeader(POP3Message.java:275)
            at javax.mail.internet.MimeMessage.getSubject(MimeMessage.java:717)
            at fetch1.<init>(fetch1.java:92)
            at fetch1.main(fetch1.java:185)
    Caused by: java.io.IOException: Unexpected response: ------=_NextPart_000_01B9_0
    1C8A1AB.148BE090
            at com.sun.mail.pop3.Protocol.simpleCommand(Protocol.java:361)
            at com.sun.mail.pop3.Protocol.multilineCommand(Protocol.java:373)
            at com.sun.mail.pop3.Protocol.top(Protocol.java:271)
            at com.sun.mail.pop3.POP3Message.loadHeaders(POP3Message.java:451)
            ... 4 more
    Press any key to continue...Code :-
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.Flags.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class fetch3
         fetch3()
              try
                   // Setup properties
                   Properties props = System.getProperties();
                   props.put("mail.pop3.host","myMailserver ip");     
                   // Setup authentication, get session
                   Authenticator auth = new PopupAuthenticator();
                   Session session = Session.getDefaultInstance(props, auth);
                   // Get the store
                   Store store = session.getStore("pop3");
                   store.connect();
                   // Get folder
                   Folder folder = store.getFolder("INBOX");
                   folder.open(Folder.READ_WRITE);
                   Flags flag = folder.getPermanentFlags();
                   // Get directory
                   Message message[] = folder.getMessages();
                   // Display from (only first) and subject of messages
                   for (int i=0, n=message.length; i<n; i++)
                   System.out.println ("------------------------------------------------------");
                        System.out.println(" From     : "+message.getFrom()[0]);
                        System.out.println(" To : "+message[i].getAllRecipients()[0]+" "+message[i].getAllRecipients().length);
                        System.out.println(" Replyto : "+message[i].getReplyTo()[0]);
                        System.out.println(" Subject : "+message[i].getSubject());
                        System.out.println ("type "+message[i].getContent());
                        Part messagePart=message[i];
                        Object content=messagePart.getContent();
                        // -- or its first body part if it is a multipart message --
                        if (content instanceof Multipart)
                             messagePart=((Multipart)content).getBodyPart(0);
                        //     System.out.println("[ Multipart Message ]");
                        // -- Get the content type --
                        String contentType=messagePart.getContentType();
                        // -- If the content is plain text, we can print it --
                        System.out.println("CONTENT:"+contentType);
                        if (contentType.startsWith("text/plain") || contentType.startsWith("text/html") || contentType.startsWith("multipart/alternative"))
                             InputStream is = messagePart.getInputStream();
                             BufferedReader reader
                             =new BufferedReader(new InputStreamReader(is));
                             String thisLine=reader.readLine();
                             while (thisLine!=null)
                                  System.out.println(thisLine);
                                  thisLine=reader.readLine();
                        System.out.println ("------------------------------------------------------");
                   // Close connection
                   folder.close(false);
                   store.close();
              catch(Exception e)
                   e.printStackTrace();
         public static void main(String s[])
              new fetch3();
    Regards 
    Sagar
    Edited by: sagar_birari on 23 Apr, 2008 1:18 PM
    Edited by: sagar_birari on 23 Apr, 2008 4:30 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    it shows below output
    C:\>java -Dmail.debug=true fetch1
    DEBUG: JavaMail version 1.4ea
    DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jre1.5.0_06\lib\java
    mail.providers (The system cannot find the file specified)
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.providers
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax
    .mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsyste
    ms, Inc], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com
    .sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc], com.sun.mail.imap.IMAPSSLSt
    ore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun Microsyst
    ems, Inc], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.su
    n.mail.pop3.POP3SSLStore,Sun Microsystems, Inc], com.sun.mail.imap.IMAPStore=jav
    ax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc],
    com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP
    3Store,Sun Microsystems, Inc]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.
    sun.mail.imap.IMAPSSLStore,Sun Microsystems, Inc], imap=javax.mail.Provider[STOR
    E,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], smtps=javax.mail.Prov
    ider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun Microsystems, Inc],
    pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems
    , Inc], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
    Microsystems, Inc], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.S
    MTPTransport,Sun Microsystems, Inc]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: !anyLoaded
    DEBUG: not loading resource: /META-INF/javamail.address.map
    DEBUG: java.io.FileNotFoundException: C:\Program Files\Java\jre1.5.0_06\lib\java
    mail.address.map (The system cannot find the file specified)
    DEBUG: getProvider() returning javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.
    POP3Store,Sun Microsystems, Inc]
    DEBUG POP3: connecting to host "pop3_server_ip", port 110, isSSL false
    S: +OK Hello there.
    C: USER [email protected]
    S: +OK Password required.
    C: PASS mypass
    S: +OK logged in.
    DEBUG: setDebug: JavaMail version 1.4ea
    C: STAT
    S: +OK 16 143077
    C: NOOP
    S: +OK Yup.Edited by: sagar_birari on 24 Apr, 2008 1:16 PM
    Edited by: sagar_birari on 24 Apr, 2008 1:18 PM

  • Import email from apple mail not working

    I have a simple applescript which imports emails from Apple Mail into filemaker
    tell application "Mail"
              set theSelection to selection
              set theMessage to item 1 of theSelection
              content of theMessage
              set the clipboard to content of theMessage as text
    end tell
    This works in the Old Apple Mail in 10.6 but Lion changes everything doesnt it. This is not working in the new Mail 5.1. It will import the first message in the string but not the HIGHLIGHTED message which may be in the message string of 3 or 4. I want it to set theMessage contents of the highlighted message. Does anyone know how to select the highlighted message in a string - sometimes called the selected message. Thanks

    Use and methodically follow the troubleshooting steps in Apple's OS X Mail: Troubleshooting sending and receiving email messages located at http://support.apple.com/kb/ts3276

  • Importing messages from Entourage

    On three machines all running 10.4.11 I try to import messages from Entourage, and the process always is as follows. The bar begins to progress, with the Folder name up top, followed by the quickly changing names of each subject line. It seems to be importing each message.
    All three instances the imports finish, with all the folders/sub-folders imported but no messages.
    I am going to upgrade the machines to 10.5 tomorrow. See if that works.

    I need help also - to anyone out there - after importing the data from Entourage, in addition to missing messages, my mail.app is now running so slow (both downloading messages and opening messages).
    The mail.app "Help" is also not opening up.
    I wanted to re-load the software also to see if it will correct everything but do not know where to get the application from - is this the best thing to do or what alternatives are there?
    Thanks,
    gailp

  • How do I import photos from E mail to Pages

    How do I import photos from E mails to Pages?

    Send yourself an e-mail with image embedded or attached.
    Open e-mail in Safari.
    If embedded, click the small, LEFT pointing arrow in upper right of tool bar.
    Click "Save image,"
    It will go into your "Photos" icon on your Home screen.
    If attached, download the attachment. It should go into your "Photos" icon....I think. I haven't tried this with an attached photo.
    Click on "Photo" icon to check if it/they are there.
    Select the photo you want to import to pages by clicking on it..
    When you do so, you will see on the toolbar that pops-up above, a small box with a right-pointing arrow. Click on it. Select "Copy Photo."
    Go back to your "Home" page.
    Click on the "Pages" icon..
    As a test, open a blank/new document.
    Click anyplace on it until you see a menu open-up that says "Select - Select all - Paste."
    Click on "Paste."
    Click on "Undo" in the upper left of the toolbar to get rid of it.
    You can repeat this on any document that accepts images by putting in the cursor wherever you want the photo inserted, tap until the "Select - Select As - Paste" box reapperas and  and click "Paste."
    Good luck.

  • TS3899 I have an iphone5 and the reply, forward and writing a message from the mail app doesn't work. I can check my mail but can't reply to it. What's going on?

    I have an iphone5 and the reply, forward and writing a message from the mail app doesn't work. I can check my mail but can't reply to it. What's going on?

    Try a reset: hold down the home button along with the sleep/wake button until you see the apple, then let go. (No data loss)

  • IPad Mail messages from Apple mail

    New ipad getting 10,000 old messages from Apple Mail application (or Comcast server). How do I stop it and get only new messages as of today?

    These are emails stored in the Sent folder in Mail, in 2 email accounts. Some are quite old, some recent. In addition, the Mail Inboxes were emptied, leaving only those emails that had been unopened. Those still on the server (I looked at Get Account Info in mail on different Mac to identify which) were downloaded and are in place in the ipad . In short, those lost were emails received and sent, stored locally on the ipad.
    When I did the update, it said there was an error so I had to backup and restore, via itunes. I thought emails would be backed up in this proces. I don't use icloud. Thanks

  • Iphone receiving read messages from mac mail

    My iphone used to only receive unread emails as long as entourage on my mac wasnt open. Now i have moved to mac mail and my phone is receiving read messages from mac mail. Is there a setting im missing that will make my phone only receive new messages?
    I still want my mac mail to receive these same emails later as it used to work.

    You would still receive read e-mails in the inbox on your iPhone (and vice-versa) if you used IMAP but they would show as having been read and not as new. IMAP keeps all mail clients synchronised. The only alternative would be to use POP to download to your phone and IMAP to download to your laptop and create another folder on your computer and move mail over to it when read. By default, POP only downloads from the inbox so your phone would not download it again. IMAP would leave a copy in the folder you have created on the server in case you have problems with your laptop. If you delete read e-mails on your laptop, you can set it to remove them from the server after a fixed time and they would remain there until then but your phone would not download them again.

  • How to pick a message from a mail box using shell script

    Hi
    Can any one tell me how to pick a message from a mail box using shell script.
    Thanks,
    Suman.

    Hi Suman,
    Can any one tell me how to pick a message from a mail box using shell script.Grep for the message and then either cut or awk for the text. . . Something like this:
    ls -al /mail/directory | grep "$1"* | awk '{print $9}'
    Jon emmons has working samples in his book on Oracle shell scripting . . .
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • Can I import messages from my 'Windows Live Mail' client

    I have been having a lot of problems with Windows Live Mail so have decided to try Thunderbird. I have set up my a/c and downloaded messages from gmail but would like to load my folders and their contents from windows live mail.

    You have to manually add:
    Settings > Mail, Contacts, Calendars > add here
    Read here: http://help.apple.com/ipad/7/#/iPad995bb603

  • Import messages from thuinderbird to Mail

    I am trying to import my messages from thunderbird 3.1 to _Mail 4.4._ The import procedure suggested from Mail app doesn't work correctly because it leaves several messages without importing them.
    I even tried to rename thunderbird's mailboxes to .mbox and import them again but the result was the same.
    Does anyone know how to solve this?
    Thank you

    OK I did manage to export my messages to a folder as .eml files, but how can I import then into Mail?
    If I double click on each one it opens in Mail (default email client) and then I am able to move it wherever I want.
    But I can't do this with all my messages... (1000 emails)
    Any suggestions?
    Thank you

  • Importing mailboxes & old messages from yahoo mail

    Hi.
    I have just figured out how to get mail to send/receive messages from my .yahoo mail account.
    Now I have the problem that i have hundreds of messages sat in my yahoo account that i want to import into mail, but i really can't find a way to do it, other than sending them one by one..
    Could you tell me if it's possible, and how i go about it?
    Many thanks
    David Tobin

    Hi David.
    Not sure what you mean. If Mail is downloading mail received on that account, it should have downloaded all the messages there, not just the new ones -- unless it’s organized in folders on the server, that is. POP mail clients can only see the messages that are in Inbox. Could that be the problem?

  • Trouble importing Messages from Mail

    Greetings,
    I need to import my old messages from my old G3 machine to my Intel iMac. Both are running 10.4 and mail 2.x
    I go to file>import mailboxes and then select Import from another copy of Mail.
    I then go to Library>Mail and then select a folder that has mailboxes in it.
    It doesn't matter if I choose one that has the extension .mbox, or just the name of the account; it just crashes Mail.
    The only time I've been moderately successful is trying to import my sub mailboxes, which are in a parent folder with the extension .mbox. All folders in this parent folder are .mbox. This differs from the others, which have a variety of folder types. The mailboxes in this homogenous folder show up in the import list, but then none of the messages import, just the mailboxes themselves. Never mind that I don't really need these messages.
    What I'd really like to do is to drop the old messages into my new inbox so I have a complete set going all the way back. How do I do this? What am I doing wrong?
    Thanks in advance.

    Hello Oral History.
    Mail crashes (i.e. quits unexpectedly) even if you select the wrong folder? Don’t you even get a “No valid Mail for Mac OS X files were found” error message in those cases?
    There could be more than one thing amiss here. Does Mail otherwise work fine on the Intel iMac? In particular, can you create custom “On My Mac” mailboxes in Mail by means of Mailbox > New Mailbox or does Mail complain with some error message when you try to do that?
    Verify/repair the startup disk (not just permissions), as described in the following article:
    The Repair functions of Disk Utility: what's it all about?
    Do you have any Mail plug-ins? In the Finder, go to each of the following folders (if they exist). What do you see there?
    /Library/InputManagers/
    /Library/Mail/Bundles/
    ~/Library/InputManagers/
    ~/Library/Mail/Bundles/
    To make accurately reporting this information easier, open /Applications/Utilities/Terminal, type the following command (you may just copy it from this post and paste it in Terminal), and press <Return>. You may then copy the output of that command from Terminal and paste it in your reply to this post:
    ls -1 /Library/InputManagers /Library/Mail/Bundles ~/Library/InputManagers ~/Library/Mail/Bundles
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. You can easily locate any of the folders referred to in this post by copying the folder path here, doing Go > Go to Folder in the Finder, and pasting the folder path there.

Maybe you are looking for

  • Lost my iCal data and bookmarks with a Time Machine migration

    I needed to reinstall my OS (due to a partitioning issue). i didn't have room on my re-partitioned hard drive to restore everything, but I did restore my apps. No when I open foxfire I don't have any bookmarks, and iCal doesn't have any of my calenda

  • Problem with nokia maps N95 8Gb

    I've been trying to use the GPS navigation trough NOKIA MAPS but it doesn't work, in my phone's screen appears "the license has expired" or something like that. I'd like to know what i've to do to make it work.  Because Iv'e heard that tthe GPS navig

  • Permissions Issue with Infopath Data Connection

    I'm not really sure how else to title this.... Issue - InfoPath Form on SharePoint 2010 gives 'You do not have permissions to access a SharePoint list that contains data required for this form to function correctly." It gives a correlation ID Log fil

  • Reporting with java

    hi all, in my project, i am preparing reports which will be shown in pdf or html or excel format... reports will be two types. first, user fill in the blanks in report and print the page. in the second type, data is selected from db and shown in pdf

  • Java.lang.NoSuchMethodException: Unknown property

    I am receiving this error and i cant figure out why This is the error log from log file on the server Servlet.service() for servlet jsp threw exception java.lang.NoSuchMethodException: Unknown property 'persondbao'      at com.sun.org.apache.commons.