Posting from Outlook express

Hi,
Is it possible to post to this group directly from Outlook Express?
JP

Hi Luigi,
have a look at this helper tool: http://freenet-homepage.de/ukrebs/english/dbxconv.html
Good Luck
Stefan

Similar Messages

  • 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.

  • I can't move my contacts ( phone numbers and email addresses) from outlook express to my 8900 phone

    i can't move my contacts ( phone numbers and email addresses) from outlook express to my 8900 new phone through the usb cable.
    i have the same contacts in both outlook and outlook express, can this help.
    can anybody help

    highland_ddmac wrote:
    I have the 8900 and when I try and synch I get the error "unable to read application data". Very, very annoying.
    Wondering why I switched from Nokia!
    Can anyone help please??
    Hi and Welcome to the Forums!
    A lot more detail is needed to understand your issue...for instance:
    Your specific BB Model
    Your specific BB OS (all 4 octets)
    Your DTM version (again, 4 octets)
    Your PC PIM version
    Your PC OS version
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to transfer all emails and contacts from Outlook Express to Outlook 2010

    I have just done this and believe me it was a bit of a marathon! Microsoft tell you that you need to have both Outlook Express and Outlook 2010 running on the same machine. If, like me, your Outlook 2010 in running on a Windows 7 platform there is a problem.
    Until now I have been using Outlook Express on a Desktop running XP Pro. It has Outlook 2007 but it won’t run owing to a corrupted file. I set up my email account on an old XP laptop which has Outlook 2007. This is how I transferred emails between 2 machines
    running Outlook Express:
    After setting up the account (on the old laptop) I created sub-folders exactly the same as my existing account. Having got some emails in the inbox I made sure that each new sub-folder contained at least one random email simply by drag and drop. It seems to
    validate the folders. I then copied the folders from the maintenance directory on the desktop (you find this under Tools – Options – Maintenance) and pasted them into the equivalent folder on the this old laptop so they overwrote those present. I transferred
    the contacts simply using Export – Address Book using a csv file. I then set up the email account in Outlook 2007 on the old laptop and ran an import from Outlook Express which was fine as per Microsoft’s instructions. On that machine I then exported to a
    backup pst file which I transferred to my new Windows 7 machine and imported successfully into Outlook 2010. Perhaps there are easier ways but at least it worked!

    You can directly do the same, visit https://support.microsoft.com/en-us/kb/196215 to know the steps.

  • Can't import from OUTLOOK EXPRESS 5 to Mail

    I was trying to import contacts and e-mails from OUTLOOK EXPRESS and somehow all my information seemed to be erased from OUTLOOK.
    When I try to open it up it doesn't have all my emails and addresses. It's as if it just got installed. I don't know where to look for this info in my hard drive.
    Called APPLE and they told me that it could be that it got corrupted and deleted.
    I have years of information in there. Any suggestions?

    Outlook 5 -> Mail
    You can't go directly from Outlook 5 to Mail but you can do Outlook 5 -> Entourage -> Mail and that works very well
    Your mail in Outlook 5 (I am assuming you're running Outloook Express 5.x under OS 9.2.x) is in the MUD folder. You'll find it in Documents > Microsoft User Data > Identities > Main Identity
    If the Main identity is empty do a search for "Main Identity" and see if there are any other folders of the same name
    If you can't locate it, restore it from a backup, import it into Entourage and then into Mail

  • 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. :)

  • Importing Address Groups from Outlook Express 5 (Mac) to OS 10.3 Mail

    I've successfully imported all my emails and email folders from Outlook Express (Mac) to Mail. The contacts imported into my Address Book, but not collected into their groups. I need those address groups!
    Thanks for any pointers you can offer.

    Resolved.

  • Important contacts list from Outlook Express

    I am struggling to figure out how to import our contacts list from Outlook Express into iTunes so that we can then move them onto our new ipad mini.  Whatever step(s) am I missing? Thank you & standing by.......

    I can't find any documentation but I want to remember that iTunes doesn't work with outlook express.
    if it is an option, you get your contacts on by connecting your device, opening iTUnes, navigating to the 'info' tab (the name did change but basically it's the tab to set up the e-mail, notes, etc that you sync)
    If express is an option you'll see it listed as a choice.
    If it's not then you can always mail your contacts out of outlook, open that mail on your iPad and save them from there. I had to do it once and I could only figure out how to do it one at a time but there may be a better way.

  • Migration from Outlook Express loses everything after "group"

    Hello,
    I migrated from Outlook Express to Thunderbird on XP, then moved the files to Windows 8.
    I had one "group" in my OE address book. Nothing after that group name (which began with an H) was migrated into the new address book. In other words, I lost everything after H.
    I also have these contacts on Gmail. Is there an easy way to retrieve them from OE (I guess I could delete the group and start over, but that's a long process and I fear losing the mail I've already sent on TB), or is there an easy way to get them from gmail?
    Thanks.
    S

    there are several solutions to your problem, which is best for you I do not pretend to know.
    There is the option of simply copying the WAB file from outlook express to Windows 7 asnd double clicking on it to have it imported to the windows contacts folder. I have instructions here http://thunderbirdtweaks.blogspot.com.au/2013/12/windows-contacts.html that include the windows contact folder into Thunderbird.
    Alternatively you can install one of the gmail contact sync add-ons. I use https://addons.mozilla.org/en-US/thunderbird/addon/google-contacts

  • Trying to get my contact list from Outlook Express to fly over to my new iPAD. Appreciate any suggestions.

    Trying to get my contact list from Outlook Express to fly over to my new iPAD.  Will appreciate any suggestions.

    Outlook Express accesses an address book app called Windoze Contacts for contact info, which the iPad supports syncing contacts with. This is selected under the Info tab for your iPad sync preferences with iTunes.

  • Caan't print from outlook express 6

    Sine I changed from IE* to Mozilla Foxfire I can't print an email from Outlook Express 6 and I also cannot print in Mozilla Foxfire web pages 2 pages or more at a time.

    See this: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages

  • 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.

  • 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.

  • HT4864 Do I need to use Outlook as my email programme instead of Outlook Express if I want to use The Cloud to sync between PC and iPad? Can I transfer my contacts, emails and diary appontments from Outlook Express to Outlook?

    Do I need to use Outlook as my email programme instead of Outlook Express if I want to use The Cloud to sync between PC and iPad? Can I transfer my existing contacts, emails and diary appointments from Outlook Express to Outlook? What is cheapest way to aquire Outlook?

    iCloud only "syncs" data in the iCloud account, not data in other external accounts such as Gmail, Yahoo, etc.  If your email, contacts and calendars are hosted by another external account, such as Gmail/Google, you may want to not sync this data using iCloud as you would have import it all to the iCloud account in order to do so.  Instead, add your external account to your iOS devices and in Settings>Mail,Conacts,Calendars>Add Account and turn on contacts and calendar syncing with your external account.

  • Transfer mail from Outlook express 6 on Windows XP to Mail on iMac

    I want to transfer mail from Outlook express 6 running under Windows XP to Mail on a Macbook Pro running Tiger.
    I have a network set up and can access the outlook identities, but neither Entourage nor Mail will recognise the entities when I try to use the import function. I suppose they are looking for outlook express 5 which runs on Mac OS 9.
    Is there a way to do this. I would think that if Apple is keen for people to move over to Mac, this would be an area which will be a concern to a lot of people.
    Thanks
    Abel

    See this link:
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html

Maybe you are looking for