I can only import emails from outlook express to TB for one identity. How do I import emails for my other account identities?

I'm using a portable version of Thunderbird because I want to use TB to collect emails for a few different accounts that I have scattered on different machines.
For example I have [email protected] on machine one and machine two. [email protected] is also on machines one and two.
After setting up accounts one and two in the portable app I can only import the messages for account one. I have tried many times over the last two days. Thunderbird does not want to import the messages for account two.
What do I need to do to import emails for multiple accounts into Thunderbird?

Does [http://kb.mozillazine.org/Import_from_Outlook_Express#Importing_more_than_one_Outlook_Express_identity this method] for identities apply to your setup?
Keep in mind also that OE messages are eml files that can be dragged directly from Explorer to a TB folder, e.g. one created under Local Folders.

Similar Messages

  • Moving emails from outlook express to mail

    is there a way to get all of my old emails from outlook express to mail? My old PC is about to die and then I'll loose all of my emails :s that is why I am wondering if there is a solution, now.

    I don't know whether you can do this on a PC version of Outlook Express or not, but I know that you can do stuff like this with Apple's Mail, so it may be worth a shot to try this and see if it works.
    First off, I am assuming that all this old mail is a POP account, and not IMAP. If it were IMAP, it would all be safe on your email account provider's IMAP server and all you would have to do is create the new account in Apple Mail and the first time you connected, it would autosync with the server and all your old mail would just be there. But if POP, all mail is downloaded to your computer then deleted from the server. So, assuming this to be a POP account, here is what I would try to do if I were you.
    1. Go to http://webmail.aol.com and sign up for a new free IMAP email account from AOL. You could get a free gmail account if you wanted, too, but I believe there is a bit of extra configuration involved in making it a IMAP and not POP. AOL is IMAP by default. Plus, AOL is a built-in new-account setup option in Apple Mail.
    2. On the PC in Outlook Express, add a new account for your new AOL email account. See http://support.microsoft.com/kb/883081 to find out all the particulars about account settings and how to do it in Outlook Express.
    3. On the Mac in Apple Mail, as stated in #1 above, AOL Mail is one of the options when creating a new account. Just follow Mail's "new account wizard" to create your AOL account there.
    4. On the Mac, create a second new account for your existing POP account. Mirror the individual mail folder layout that are on your old PC for the old POP account.
    5. This is the part that I don't know if PC Outlook Express will let you do, but I know that Apple Mail does:
    (a) Open each of your mail folders in the old POP account stored on your dying hard drive one at a time
    (b) Highlight/select all the messages in that folder
    (c) Drag them to the AOL inbox. In Apple Mail, they would be copied to the IMAP server, preserving all the original "From" and "Date Received" and other information like that.
    6. On the Mac, drag the messages that you uploaded into the AOL inbox and drop them into the appropriate folder of the "legacy" POP account that you created in #4. That will clear them out of the AOL inbox and they will now be stored on your computer as downloaded popmails.
    7. Go back to step #5 and repeat this process for each of your folders on the old PC until you have emptied all the messages off your old computer.
    Now, I will have to issue a disclaimer that I have only done this myself from IMAP to IMAP and to/from IMAP from/to "On My Mac" folders, which keeps copies of messages locally but not on IMAP servers. So I have no reason to suspect that this would not apply equally to POP since it worked with "On My Mac" folders. And whether the PC's Outlook Express will support the POP-to-IMAP drag-and-drop is a total unknown to me.
    I'm sure I'll hear back via this forum whether this worked or not, but it's the best idea that I can come up with, and like I said, a similar (but not identical) situation worked for me before.

  • How do I migrate emails from outlook express to Mac

    I want to keep some emails from Outlook express on my old pc how do I migrate them to mail on my new macbook pro?

    Purchase EMailchemy, it will do the conversion and export for you.

  • Can't import emails from outlook express into mail

    Just bought a macbook, I'm new into MAC, I'm a MAC ROOKIE. I'm trying to import my email from my microsoft outlook express to my MAC MAIL, I followed the instructions to import from outlook but when I locate the outlook files for my emails (they have extension .dbx but it won't let me select the files. Besides in the outlook folder there are dozens of files (1 per email subfolder). What am I doing wrong that I can't import the emails, nor the address book?
    Thxs!!!
    Avecesar

    Pay attention to the information Mail displays during the import process. It could be that it wants you to select the folder that contains the files to be imported, rather than the files themselves.
    EDITED: Now that I've read your post again, I don't think you're going to be able to do this on your MacBook, as importing from Outlook Express requires that application to be running in the "Classic" environment, which isn't available for Intel-based Macs.
    Disclaimer: I know next to nothing about how importing from Outlook Express is supposed to work, so take what I say with a grain of salt.

  • How to drag and drop an email from Outlook Express (with example code)

    Hi,
    It is possible to drag a mail from Outlook Express and drop it on the desktop, and the file created is a .eml, which is a text file.
    If I drop it into a Java application, no DataFlavor is provided to make the data transfer possible.
    As the data to transfer is a text, it should be possible to drop it.
    How to make a DataFlavor available and recover the text as a stream of characters?
    Example code
    The small application below shows the MIME type of the data that is about to be dropped. If you drag an icon from the desktop, a type will be displayed; if you drag an Outlook Express mail, no type will be displayed.
    Thanks.
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetEvent;
    import java.awt.dnd.DropTargetListener;
    import java.util.List;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JTree;
    public class TestSDN extends JFrame {
        void run () {
            JLabel lab = new JLabel();
            lab.setPreferredSize (new Dimension (100, 100));
            lab.setOpaque(true);
            lab.setBackground(Color.RED);   
            getContentPane().add (lab);
            new DropTarget(lab, new DropTargetListener(){
                public void dragEnter(DropTargetDragEvent dtde) {
                    System.out.println("dragEnter DataFlavors="+dtde.getCurrentDataFlavors().length);
                    for (DataFlavor df: dtde.getCurrentDataFlavors())
                        System.out.println("DataFlavor MIME type="+df.getMimeType());
                public void dragExit(DropTargetEvent arg0) {
                public void dragOver(DropTargetDragEvent arg0) {
                public void drop(DropTargetDropEvent arg0) {
                public void dropActionChanged(DropTargetDragEvent arg0) {
            pack();
            setVisible (true);
        public static void main(String[] args) {
            new TestSDN().run();
    }Edited by: JavaGame on Jan 29, 2009 9:56 AM
    Edited by: JavaGame on Jan 29, 2009 9:57 AM

    It might just be Microsoft not using standards? I remember having a similar situation - I had an application that could have a zip entry fron 7-zip drag-and-dropped into it (came over as plain text, or maybe an InputStream, can't remember), but when you drill into a zip file with Windows (Vista at least), and try to drag-and-drop a zip entry from Windows Explorer, Java shows no dataflavors available. I just assumed Microsoft wasn't exporting the zip entry in any standard format (such as plain text).
    Sorry, I know that wasn't very helpful, just thought I'd share a similar experience. :)

  • Why can only print header from outlook mail ok with explorer 8

    I have installed both Firefox and Internet explorer 8.
    When I try to print emails from Outlook I only get the header.
    All is ok if i remove Firefox from the system and use internet explorer. Have just reinstalled firfox and I'm back to the problem again.

    I hate to be persistant but I really need some help. Let me tell you what I've done so far.
    I've gone to the HP site and downloaded the latest driver for the 1320n series printer and I reinstalled and set up the printer in the print center like I've always done with any of the printers I've set up before. I still can't print from Mail, Safari, and from the system. I see on the HP site that there is a fix in the Tiger system already (I think I'm reading that right) and I shouldn't be worrying about this.
    I found in one of the other forum listings about a Foomatic/hpijs and I installed that one. Nothing printed. I tried using a Generic PPD. Nothing happened.
    I reinstalled the Xerox Splash printer drivers from the disk and that didn't make a difference.
    In the print window, I can't make a PDF, won't let me Preview, and won't let me Print. I click on the buttons and they won't even react. It doesn't do anything. But even with the new drivers I've set up since I started all this, I can still print from Quark and Acrobat Reader. So it seems it's got something to do with the system.
    I'm really frustrated here. Can someone please give me a clue if they have one? Anything would be appreciated.
    PowerMac G5 2.63GHz 1.5 Gb RAM   Mac OS X (10.4.5)  
    PowerMac G5 2.63GHz 1.5 Gb RAM   Mac OS X (10.4.5)  

  • Importing eMail from Outlook Express into OS X Tiger mail

    Am in the process of installing OS X Tiger on a G4 eMac for my wife, who is currently using Outlook Express on an older G3 iMac running OS 9.2.
    I would like to be able to import her existing Mail Boxes from OE on the old iMac to Mail on the eMac.
    Can anyone indicate which files must be transferred from the iMac to the eMac in order for me to import them into Mail ?
    Any help would be appreciated.
    benrobe
    Power Mac G4 Quick Silver 800   Mac OS X (10.4.8)   Reasonable/Good Mac Experience

    Transferred using Ethernet

  • Rescuing deleted emails from Outlook Express 5 for mac

    Dear Forum
    Wasn't quite sure where to post this, but I would be grateful if anyone could cast some light on the following puzzle. I am trying to retrieve deleted emails from Microsoft Outlook Express 5 Macintosh edition (vers 5.02 2022) running on a G4. Using Data Recovery 2, I have uncovered two databases that hold the information, but I am unable to open them in Outlook or other programs. Is it something to do with 'End of file' as a friend suggested? I have tried importing them as my default database to no avail. When they were opened as raw text, there are definitely email addresses and parts of emails embedded in there, but nothing I can use. I desperately need to access these mails so that I can take an ex-client, who still owes me money, to court.
    Any assistance would be most appreciated.
    Thanking you for your help.
    Kind regards
    Chilliman2

    Hi, chilliman2 -
    There is one other option. You can use BBEdit Lite to open the message and database files. This utility will display all the text in most any file, including many damaged ones that otherwise can not be opened. BBEdit Lite is free -
    BBEdit Lite
    Although the SFGet window, opened via the Open command in the File menu, will not display the OE files as openable files, they can be opened by dropping them onto the icon for BBEdit Lite (just confirmed that to make sure).
    The bad news - you would need to search through the file to find the section for any specific email message, then copy that portion to another file for printing. This can take a lot of work if the file is large.
    The good news - even the usually non-visible header info for each message is included in the Messages file, and is shown in BBEdit Lite.
    Whether this result will be suitable for your purposes is a different issue.

  • Rescuing deleted emails from Outlook Express 5 mac vers

    Dear Forum
    I would be grateful if anyone could cast some light on the following puzzle. I am trying to retrieve deleted emails from Microsoft Outlook Express 5 Macintosh edition (vers 5.02 2022) running on a G4. Using Data Recovery 2, I have uncovered two databases that hold the information, but I am unable to open them in Outlook or other programs. Is it something to do with 'End of file' as a friend suggested? I have tried importing them as my default database to no avail. When they were opened as raw text, there are definitely email addresses and parts of emails embedded in there, but nothing I can use. I desperately need to access these mails so that I can take an ex-client, who still owes me money, to court.
    Any assistance would be most appreciated.
    Thanking you for your help.
    Kind regards
    Chilliman2

    Hi, chilliman2 -
    There is one other option. You can use BBEdit Lite to open the message and database files. This utility will display all the text in most any file, including many damaged ones that otherwise can not be opened. BBEdit Lite is free -
    BBEdit Lite
    Although the SFGet window, opened via the Open command in the File menu, will not display the OE files as openable files, they can be opened by dropping them onto the icon for BBEdit Lite (just confirmed that to make sure).
    The bad news - you would need to search through the file to find the section for any specific email message, then copy that portion to another file for printing. This can take a lot of work if the file is large.
    The good news - even the usually non-visible header info for each message is included in the Messages file, and is shown in BBEdit Lite.
    Whether this result will be suitable for your purposes is a different issue.

  • Importing messages from Outlook Express on a PC to Mail

    I just spent a long time looking through posts to find a way to do this, and still had difficulties, until finding this link:
    http://www.macosxhints.com/article.php?story=20040325164915651
    on one of the posts.
    Actually it is simpler than described on that link, presumably because it's a couple of years old and the software has improved.
    All you need to do now is Copy-Paste all the emails from each OE folder into a new folder you create on your desktop (OE lets you do this. So you make an Inbox folder, Sent folder, etc). Copy those folders over from PC to Mac (eg using a Fat32 formatted external drive) , then drag & drop those files one folder at a time into a Subfolder that you create in Entourage. (ie you make a new Inbox, Sent etc subfolder) Then Mail will import these folders from Entourage by itself using Import.
    You need to have Entourage (part of Office) to do this.
    cheers

    Since you have a new Mac, you can create a .Mac trial account for free which is good for 60 days I believe.
    A .Mac type account with Apple's Mail application is really an IMAP account and behaves in the same way.
    When creating a .Mac account with the Mail.app, the default account type provided is .Mac but you can also select IMAP or POP as the account type.
    You can create a .Mac account as an IMAP or POP account with a different email client on a Mac or Windows PC.
    After creating your .Mac trial account as a .Mac or IMAP account with Mail on your Mac, you can create the account as an IMAP account with Outlook Express on your Windows PC.
    After doing so, copy messages from the POP account's Inbox mailbox to .Mac account's Inbox mailbox and the same for the POP account's Sent mailbox to your .Mac account's Sent mailbox.
    Launch Mail on your Mac and these messages will be available in your .Mac account's Inbox mailbox and Sent mailbox.
    Create two "On My Mac" location mailboxes in Mail - one for transferred Inbox messages and one for the transferred Sent messages.
    Transfer these messages from your .Mac account's Inbox mailbox and Sent mailbox to the appropriate user created "On My Mac" mailboxes which are stored locally on the hard drive. This process will save the transferred messages locally on the hard drive and remove the messages from the server at the same time.
    A .Mac trail account has limited server storage space so if the Inbox mailbox and Sent mailbox for this POP account in OE on your PC exceeds the server storage limit for a .Mac trail account, you must do this in stages and although this may sound involved, it really isn't and overall is probably the easiest and fastest way to do so.

  • Moving email from Outlook Express on Windows XP to Leopard Mail

    What are the steps I should take to move my email from a Windows XP computer running Outlook Express to my new iMac running OS X 10.5 and Mail?
    I'm assuming I have to move the mailbox files from the Windows machine to the iMac and then run some kind of import.
    Where are the mailbox files on the Windows machine and what are they called?
    Does Mail support a direct import of those files or do I have to convert them somehow? If I have to convert them, is there an export command in Outlook Express that will do the trick? If not, what do I need to do to convert the files? Is there an application (preferably a free one that can do the trick)?
    Finally, anything I should know about that could cause an import of email to choke - bad characters in folder names, too many emails in a folder, subsubfolders, etc.?
    Thanks in advance,
    Steve

    Since there were no responses, I figured I'd post my own solution. After searching around online, there seem to be several ways to accomplish this. The first I tried was installing Thunderbird on the XP box and importing the Outlook Express email into it. This seemed to have grabbed most of my email. For some reasons a few boxes did not show up in Thunderbird though. Next step was to move the Thunderbird mailboxes over to the Leopard box and run the import process in Mail. This worked for all of my boxes except my Sent mail which choked the import routine (spinning beach ball). So, I went back into Thunderbird and split the 12K emails in the sent box into 6 separate email boxes and moved those over to the Mac. They imported fine. Then I just moved the messages back into the sent box.
    That still left the few mystery mail folders that didn't import into Thunderbird. For those, I downloaded a utility that converted dbx to mbox format. Ran it on those boxes, renamed the new file extensions to mbox from mbx and moved those to the Mac and imported them into Leopard.
    For some reason one box still didn't come across. But I just forwarded the 8 emails in that box to myself.
    It took forever (mainly because the XP machine was so slow and because of the number of emails). But, it did work.

  • Transfer emails from Outlook Express to Mail ?

    Hi, I've been using Outlook Express on a PC for years for my emailing and internet etc, now I'd like to transfer the lot to Mail on my G4 (which was used as my workstation). So far I've had no joy in transferring my email archives, is it do-able ?

    See if this is any help:
    Kappy recommends a cheap (US$10) utility called Outlook2Mac which converts your proprietary Outlook files into mbox interchange format. See the discussion thread for a link to the web site.
    Discussions > Mac OS X v10.5 Leopard > Mail and Address Book > importing from Outlook

  • Transfer of e-mail (email) from Outlook Express for Apple to Windows XP?

    This is a repeat of a thread which was removed from the forum because of a mistake on my part.
    This was my original query:- In OS 9.2.2 OE stores messages in a format which OE for Windows XP does not recognise. Forwarding them to myself changes the sender and the date. Any suggestions?
    I then received two responses which were both very helpful. The first was from "Simon Teale", who first suggested the need to find an intermediate host for my e-mail. In his next message he said in part:
    Otherwise Eudora Light or Netscape sound promising. But before we even need to try that, can you drag individual messages from the OE on Mac to the desktop ? Then transfer them to the Windows PC, then drag them into the Inbox in OE for Windows. Just try two or three to begin with, one sent (if you keep copies of your sent email), one received and one with attachment. They may be imported and marked as unread.
    I have now tried this but have not found that I could transfer messages to OE for Windows by dragging them.
    The second response was from "eww" who wrote:
    You may want to download and experiment with EmailChemy. I think you'll find that it can painlessly convert your OE for Mac files to a format that OE for Windoze can read or import directly.
    I have now downloaded this program and am working with the demo version. I have not yet succeded but it claims to do what I need and I think it will once I have mastered its procedure.
    A further update will follow.

    Lynite,
    I was really hoping that the 'drag' method would do the trick, it's certainly worked for me in the past, but I can't remember where I was exporting from. I do remember I was importing into OE for Mac OS9. Were you able to drag individual mail messages out onto the Mac desktop (or other folder) ? And then transfer them to the PC ? Was it just the dragging into the OE for Windows message window that didn't work. If I remember, I could only drag one message at a time.
    In your original post, you listed the format that OE for Windows can import from. It was quite a long list, most of them being MS products. Could you put that list up again ?
    Don't worry too much about the issue with the Apple discussions, it was having "issues" at the start of the week, I replied to a post which took 10 minutes to come back, at the end of which it has posted 7 copies of my reply.
    Unfortunately, I don't have access to XP under Parallels emulation on my Mac Pro (2000 Pro, 98 SE and 95 I do have - setting those up from my Virtual PC disks was a horror story in itself), so I'm unable to dabble with the version of OE on Windows that you're running.

  • Transfering emails from outlook express to mac

    Hi All,
    First, I did search for this, but didnt find any info.
    I have hundreds of emails saved in outlook express on my windows XP machine that I would like to transfer to my new macbook pro. Is there a way to do this?

    you can just import it, file->import mailboxes
    IIRC that will pull it, never tried it on my own stuff though so im not sure how much and of what it pulls
    -matt

  • Transfer emails from outlook express to Mac

    I had a windows xp PC and use outlook express, now I  have the Mac Pro and need to transfer my emails . How can I do it?

    Does this help?
    http://www.schwie.com/brad/?p=22

Maybe you are looking for

  • How To Stop Itunes From Continuous Play?

    I'd like to only play one album at a time in Itunes on my computer but continuous play seems to be automatic and there are no options to control this in the Itunes preferences...? I notice it happens a lot but it happens 100% of the time if I enter a

  • PDF Password Protection Help

    I need help password protecting my document. The security method restrictions aren't allowing me to encrypt the document and I need the encryption because the job application is with the Department of Homeland Security. Please Help Me!!!

  • Lost photos after iPhoto library rebuild - what happened?

    After noticing that there were albums entitled Recovered photos in my iPhoto library, I deleted those albums. As expected, i got a message that i was not really deleting the originals, just getting rid of such albums. There were about 5 of those "rec

  • Non-working music duplicates

    I just purchased music from itunes and put it on my ipod touch.  In my music in my library it is displaying duplicates of the songs I purchased but one of the duplicates doesn't work.  I tried erasing it but it won't let me erase, and it isn't even s

  • Anyone integrated AR to PaymentTech for payment capture

    My client would like to capture credit-card payment using PaymentTech payment processor. We are using Oracles Apps 11i. I am aware that AR is integrated with iPayment for credit-card processing. However iPayment uses Cybercash as the payment system a