Mail didn't import my sent mail from Gmail

Had a bit of trouble initially but eventually got my Mail account set up with my existing Gmail account and it nicely downloaded all my past incoming mail which is all in the In Box. However, I can't find my old outgoing mail. The only things I see when I click Sent are the messages sent since I started using Mail. Is there somewhere else I should be looking for them? If not, how do I go about importing them to my new computer now?
The old outgoing messages are still on my old computer, but that email client is old Eudora— is there a way to import them from the old machine to the new and make them readable with Mail?

Sorry—did I put this in the wrong place? I thought I selected Mail but will try again.

Similar Messages

  • How to import ALL MAIL from Gmail to OSX Mail?

    I am trying to migrate my mail system over to OSX Mail from Google Mail, but I can't seem to make "All Mail"  show up as an option in OSX Mail, even though I have the folder checked  in the Gmail settings to share with outside apps.  I am on Yosemite and a MacBookPro.
    How are others switching to OSX Mail from Gmail?
    Thanks for your help!
    Korky

    You open your email - edit - then select each email to delete.
    If you have an imap account you can delete it from the server and it will reflect on yoru phone.

  • Retrieve mail from Gmail account with pop3???

    I want to retrieve e-mail from my account on Gmail in my application, but I have a problem. I cant establishe a connection with pop3 server...
    Do you have an example (full) in Java code for retrieving a mail from Gmail account.
    I used the example from JavaMail Api 1,4 Specifications, but I have a problem with the parameters. (protocol null), and I dont know why...
    Help me, please...

    i hv retrived messages from gmail.but i m geting problem at the time ......
    when i m reading mail which hava attachment.........
    it is only showing attachment name...but not shoing the body part....
    this is my programe........
    plz any body help me its very urgent.........
    give me a programe how to find the attachment name with body part........
    //java msgshow -D -T pop3s -H pop.gmail.com -U user -P passwd
    package MailServer;
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.util.Date ;
    public class msgshow
    static String protocol;
    static String host = null;
    static String user = null;
    static String password = null;
    static String mbox = null;
    static String url = null;
    static int port = -1;
    static boolean verbose = false;
    static boolean debug = false;
    static boolean showStructure = false;
    static boolean showMessage = false;
    static boolean showAlert = false;
    static boolean saveAttachments = false;
    static int attnum = 1;
         static Message[] msgs = null;
         static String body = "";
         static String attachment = "";
         static String indentStr = " ";
    static int level = 0;
    static String from = "";
    static String subject = "";
    static Vector v ;
    public Vector v1;
    static Date date;
    public Vector show()
              int msgnum = -1;
              int optind;
              InputStream msgStream = System.in;
              v = new Vector();
    try
              // Get a Properties object
              Properties props = System.getProperties();
              // Get a Session object
              //debug = true;
              Session session = Session.getInstance(props, null);
              //session.setDebug(debug);
              // Get a Store object
              Store store = null;
              protocol = "pop3s";           
              store = session.getStore(protocol);
                   host = "imap.gmail.com";
                   user = "techzain";
                   password = "zain1234";
                   // Connect
              store.connect(host,port, user, password);
                   //System.out.println ("connected");
              // Open the Folder
              Folder folder = store.getDefaultFolder();
                   mbox = "INBOX";
              folder = folder.getFolder(mbox);
                   //System.out.println ("opened inbox");
              // try to open read/write and if that fails try read-only
              try
                        folder.open(Folder.READ_WRITE);
              catch (MessagingException ex)
                        folder.open(Folder.READ_ONLY);
              // Attributes & Flags for all messages ..
                   msgs = folder.getMessages();
                   //System.out.println (msgs.length);
                   for(int x=0;x<1;x++)
                   try
                        //System.out.println ("inside for");
                        Address[] addList=msgs[x].getFrom();
                             if(addList.length>0)
                                  from=((InternetAddress)addList[0]).getAddress();
                             subject=msgs[x].getSubject();
                             //body=(String)msgs[x].getContent();
                        date=msgs[x].getSentDate();
                        //body=(String)msgs[x].getContent();
                             //msgs[x].setFlag(Flags.Flag.SEEN,true);
                             if(msgs[x].isMimeType("multipart/*"))
                                  boolean bbb=msgs[x].isSet(Flags.Flag.SEEN);
                             System.out.println (bbb);
                                  Multipart multipart=(Multipart)msgs[x].getContent();
                                  for(int i=0,n=multipart.getCount();i<n;i++)
                                  {Part part=multipart.getBodyPart(i);
                                       if(i==0)
                                       body=part.getContent().toString();
                                       else
                                       //body=(String)msgs[x].getContent();
                                       attachment=part.getFileName();
                             else
                                  boolean bbb1=msgs[x].isSet(Flags.Flag.SEEN);
                             System.out.println (bbb1);
                                  body=(String)msgs[x].getContent();
                             //System.out.println ("ok");
                             if(attachment==null)
                                  try
                                       v.addElement(x);
                                       v.addElement(from);
                                       v.addElement(date);
                                       v.addElement(subject);
                                       v.addElement(body);
                                       //System.out.println (v.size());
                                  System.out.println("********* mail "+x+" ***********");
                                  System.out.println("From: "+from);
                                  System.out.println("Date: "+date);
                                  System.out.println("Sub: "+subject);
                                  System.out.println("body: "+body);
                                  System.out.println("Attachment: No attachments......");
                                  System.out.println ("*******************************\n\n");
                             catch (Exception ex)
                                  ex.printStackTrace();
                             else
                                  try{
                                  v.addElement(x);
                                  v.addElement(from);
                                  v.addElement(date);
                                  v.addElement(subject);
                                  v.addElement(body);
                                  v.addElement(attachment);
                                  System.out.println("********* mail "+x+" ***********");
                                  System.out.println("From: "+from);
                                  System.out.println("Date: "+date);
                                  System.out.println("Sub: "+subject);
                                  System.out.println("body: "+body);
                                  System.out.println("Attachment: "+attachment.toString());
                                  System.out.println ("*******************************\n\n");
                             catch(Exception ex1)
                                  ex1.printStackTrace();
                             //     System.out.println (v.size());
                   catch (Exception ex)
                        ex.printStackTrace();
              catch(Exception e)
                   e.printStackTrace();          
              System.out.println (v.size());
              return v;
         public static void main(String argv[])
         new msgshow().show();
              Flags flags = m.getFlags();
              StringBuffer sb = new StringBuffer();
              Flags.Flag[] sf = flags.getSystemFlags(); // get the system flags
              String s = "";
              for (int i = 0; i < sf.length; i++)
                   if (sf[i] == Flags.Flag.SEEN)
                        s = "\\Seen";
                        System.out.println ("Seen Message");
    */

  • How can I move mail from Gmail to another account?

    Mail.app in Mavericks is incompatible with Gmail. I use Gmail. I have about 2GB of mail, most of it in a few dozen archive folders, stored on Gmail, and (I think) duplicated locally on my Mac Mini.
    I think my best recourse is to switch to an email service provider that conforms to the IMAP standard (which Gmail does not). Assuming I find one, I will have both accounts, Gmail and the new one, in Mail.app. How can I move the mail from Gmail to the other account?
    In Mail.app in Mavericks, All Mail must be marked to show as a folder, and when I move a message from a folder in Gmail it will still be in the All Mail folder.
    When all folders are empty, including the Inbox, can I be sure that every message has been moved to the new account, even though every message is still in the All Mail folder?

    Mail.app in Mavericks is incompatible with Gmail. I use Gmail. I have about 2GB of mail, most of it in a few dozen archive folders, stored on Gmail, and (I think) duplicated locally on my Mac Mini.
    --> mine's working fine. I know there are issues, but it should work
    I think my best recourse is to switch to an email service provider that conforms to the IMAP standard (which Gmail does not).
    --> yes, it would be nice if they adhered to standards.  That said, mine works great.  So far.
    Assuming I find one, I will have both accounts, Gmail and the new one, in Mail.app. How can I move the mail from Gmail to the other account?
    --> If all you want to do is keep your history, make a local folder on your mac and drag all the mail messages there (both se4nt and incoming).  I am not sure what will happen if you later drag those into the new Xmail account
    When all folders are empty, including the Inbox, can I be sure that every message has been moved to the new account, even though every message is still in the All Mail folder?
    --> Dont look in "all mail". Open your inbox and look at each individual inbox.
    Good luck,. But first, try to fix your account.
    Grant

  • Can't get any mail from Gmail to my mac

    help cant send or get mail from Gmail to my Mac?

    Try taking accounts offline
    then online
    mail/press the mailbox tab
    if that fails then delete account
    and re enter account details (set up account again)
    Gmail Help
    http://support.google.com/mail/?hl=en

  • Safari wpn't retreve mail from Gmail

    I have a problem. Safari will not retreve incomming mail from Gmail. The mail appears in the Gmail mail window but not in Safari. I get an error; Connection failed
    The server error encountered was your account is not enabled for POP access. Please visit your gmail settings page and enable your account for POP access
    I have very carefully followed the setup proceedure at the Gmail.com site. http://mail.google.com/support/bin/answer.py?answer=13275 Actually, I had my wife who is a programmer watch over my shoulder to double check. I can send email from Gmail but can not receive Right now I have two mail accounts, Comcast and Gmail. Should incomming messages from both accounts appeat in the same Safari window? If not where? I even went back to Gmail and checked my pass word.
    Thanks Bob

    Don't you mean that you can't seem to receive Gmail via Mail.app? If you can access your account in Safari, then there's nothing wrong with that, but if you can't retrieve via Mail after setting it up, that's something else.
    Are you sure you checked your Gmail settings? You need to enable POP access in Gmail before you can retrieve your mail via Mail.app
    Hope this helps,
    Mulder
    If my answer helped solve your problem, please consider awarding some points. Why Reward Points?
    iMac G4 700Mhz   Mac OS X (10.3.9)  

  • How to get next batch of mails from GMail?

    Hello,
    I can not get next batch of mail from Gmail. I thought how this is question for gmail but they have respond me this:
    "Thanks for your interest in Gmail and in Google. Because we're testing Gmail, there is some information we're unable to share."
    Does anyone can tell me how to do this?
    Thanks in advance!
    Best Regards,
    Nikola Putnik

    You cannot

  • How can I import My contact list from gmail to Icloud??

    How can I import My contact list from gmail to Icloud??

    If you have a mac or pc
    I would try to export the contact from gmail
    Import the contact to mac or pc
    And then sycronise your device with it.

  • Mail did not download my sent mail from Gmail.

    Reposting this question in case I originally put it in the wrong category:
    Had a bit of trouble initially but eventually got my Mail account set up with my existing Gmail account and it nicely downloaded all my past incoming mail which is all in the In Box. However, I can't find my old outgoing mail. The only things I see when I click Sent are the messages sent since I started using Mail. Is there somewhere else I should be looking for them? If not, how do I go about importing them to my new computer now?
    The old outgoing messages are still on my old computer, but that email client is old Eudora— is there a way to import them from the old machine to the new and make them readable with Mail?

    Thank you for responding.
    >Can you visit the Gmail site and see if you can download them from there?
    Can you explain how would I go about doing that?
    As for JustAnswer, they wanted $58 to answer my question which is money I simply don't have.
    I saw the discussion you linked. He said "I figured out the solution to this problem.  I simply deactivated the email and reactivated it.  I guess after the updated to moutain lion that's all I needed to do."
    "Deactivated the email and reactivated" — do you understand what he means?
    I have done a Google search for this topic but no one seems to have this exact problem, and I've put a question up on the Google Gmail help forum with no response yet.
    Do you know how I might go about just undoing the connection I've made between Mail and Gmail so I could just start fresh and hope for a better outcome the second time?

  • *** Sent emails from GMAIL account appear in Inbox of´MAIL` ***

    I just opend an account with MAIL.
    The trasnfer of my emails worked, but all emails (received and sent ones) from my Gmail account appear in the inbox of mail.
    All sent ones appear only in the sent box, if I sent them from the mail programm. If I sent any email from my Gmail account the always be transferd all in the inbox of the mail programm.
    I don´t havy any clue what to do. I already checkes all settings - I guess...
    I need assistance - please!
    p.s. it´s a pop account, if this matters...

    This is intended behavior with Gmail POP access,
    however weird it may seem. Gmail POP access does not
    work as a normal POP mail server should (points 4 and
    5 below are relevant to your "problem"):
    1. Messages downloaded by any conventional POP
    mail client are marked as downloaded at the
    server, and no longer available to either the
    same or any other mail client.
    2. To make already downloaded Gmail messages
    available for POP access again, you must log into
    your Gmail account with a web browser and re-enable
    POP downloading for all your messages, which will
    cause everything (and I mean everything) still
    there to be downloaded again.
    3. Any "Remove copy from server" account settings in
    Mail > Preferences > Accounts > Advanced have
    absolutely no effect on the messages stored on the
    server. The reason is that, after being downloaded,
    those messages are no longer available to any mail
    client, not even to the same client that has just
    downloaded them, not even for deleting them or
    checking whether they are still there.
    4. Messages created and sent using the web interface
    will be downloaded by your POP mail client as if they
    were incoming messages. You can set up a rule in Mail
    to automatically route those messages to the
    appropriate Sent mailbox (or to any other mailbox for
    that matter) if that's what you want. Although this
    may seem weird, it's good because it allows archiving
    all messages locally in Mail, regardless of how they
    were sent -- as long as you don't access the same
    Gmail account with more than one mail client, that
    is.
    David, thanks for your reply. Yes, point 4 seems to be relevant for my problem. How does it work to "set up a rule in Mail to automatically route those messages to the Sent Mailbox" (in Mail). I want my messages downloaded from my Gmail account to be ordered in the Inbox and Outbox in Mail (like it is ordered in Gmail). The messages which I sent from the gmail account should not appear in the Inbox of Mail...
    5. Messages created and sent using a POP mail client
    such as Mail are also treated as if they were
    incoming messages for POP purposes, just as in 4.
    What prevents them from being downloaded is that
    Gmail marks them as already downloaded immediately.
    They would, however, be downloaded if Gmail settings
    were changed as described in 2 above.

  • How to get sent mail from Gmail server onto my mac

    I recently upgraded to Snow Leopard. When configuring Mail I used POP ( I prefer it) with my Gmail account and it tediously uploaded all my received mail from the Gmail server to my mac mail program. How do I get the sent mails on the Gmail server onto my computer?

    Not sure if this will work as I use IMAP. Go to Mail>Preferences>Accounts> click on mailbox behaviour, uncheck 'store sent messages on server' if it is checked. Then try a fetch mail and see if it works.

  • Download sent mail from gmail

    Newbie here.  Feeling my way around in the dark.  I managed to connect to my gmail account and was wonderfully amazed that it downloaded all of the mail in my In Box.
    Now, is there a way for it to download the Sent Mail?  I want to have that, too!
    Thanque!
    Making the transfer from windoze.

    Thank you for responding.
    >Can you visit the Gmail site and see if you can download them from there?
    Can you explain how would I go about doing that?
    As for JustAnswer, they wanted $58 to answer my question which is money I simply don't have.
    I saw the discussion you linked. He said "I figured out the solution to this problem.  I simply deactivated the email and reactivated it.  I guess after the updated to moutain lion that's all I needed to do."
    "Deactivated the email and reactivated" — do you understand what he means?
    I have done a Google search for this topic but no one seems to have this exact problem, and I've put a question up on the Google Gmail help forum with no response yet.
    Do you know how I might go about just undoing the connection I've made between Mail and Gmail so I could just start fresh and hope for a better outcome the second time?

  • Archive mail from Gmail

    I have purchased a new mac and in setting up mail my gmail account is constantly fetching archive mail from the server.  25000 messages.  I have searched and searched but can't find a way to stop it or change my archive settings.  In the mean time because it's constantly looking for emails I have gone through my months worth of data in 2 days!  Any advice please?

    Same here; right clicking and choosing "move to" is also an option, gives you more choiche.
    Updating Apple products used to be without much problems, but since Mavericks it seems that every update create a new problem!

  • Mail not receiving incoming mail from gmail account

    I have an imac with 10.5 that has suddenly stopped accepting email in one of my gmail accounts, but still gets it from another. I synched my imac with my ibook earlier today. The ibook has the same problem accepts mail from the account that the imac doesn't etc.
    Any help solving this problem would be greatly appreciated.
    dc

    Hi,
    Did you select “Directory Management Service” option, if so, please make sure you configure the Central Administration application pool identity account to have the Create, delete, and manage user accounts right to the container that you specify in Active Directory.
    Did you install Exchange server 2003 in your MOSS environment? If so, you should add an SMTP connector in Exchange Server, if you don’t know how to do that, you can post your issue into the following forum:
    http://social.technet.microsoft.com/Forums/en-US/exchangesvrdeploy/threads
    Also, please check whether your configuration meet the following requirements, If not, correct them and check the effect.
    ·         The application pool account for Central Administration, the logon account for the Windows SharePoint Services Timer service, and the application pool accounts for your Web applications should have the correct permissions to the e-mail drop folder.
    ·         The domain controller running Active Directory has a Mail Exchanger (MX) entry in DNS Manager for the mail server that you plan to use for incoming e-mail.
    For more information about how to configure incoming e-mail settings, please refer to the following article:
    Configure incoming e-mail settings
    http://technet.microsoft.com/en-us/library/cc262947.aspx
    Introduction to incoming e-mail
    http://office.microsoft.com/en-us/sharepointtechnology/HA100823061033.aspx
    Demo: Configure a SharePoint Server 2007 site to receive e-mail
    http://office.microsoft.com/en-us/sharepointserver/HA102047921033.aspx?pid=CH101788401033
    Enable and configure e-mail support for a list or library
    http://office.microsoft.com/en-us/sharepointtechnology/HA100823071033.aspx?pid=CH101215271033
    Rock  Wang 
    Rock Wang– MSFT

  • I want to send my mails from Gmail to all of my groups but no one of them can see the others and secondly I like to send them in groups. If this app is free is better if not its ok

    1.- send my emails from gmail to groups
    2.- no one from the group be able to see the others that I send the mail. Is there any app...just name it

    1.- send my emails from gmail to groups
    2.- no one from the group be able to see the others that I send the mail. Is there any app...just name it

  • E-Mail won't send my mail from GMail account

    My e-mail keeps on telling me that it can't send e-mails from my GMail account and it's the primary account I use for sending e-mails. Please, tell me what do i have to do in order to be able to send e-mails from my Maill app on my iMac?
    photo: http://cl.ly/image/2j1s0h2d1H18

    The error message says that you don't have an outgoing mail server selected. Go to Mail > Preferences > Accounts and select the gmail account in the left hand panel. Next go to "Outgoing Mail Server" :
    It should read smtp.gmail.com if you are using pop. If it is blank click on it and it should display whatever outgoing servers you have configured. If the only option you have is to "Edit SMTP Server List" then you need to enter the information as shown below.
    These are the standard settings for gmail pop:
    You will also need to set password authentication on your outgoing (SMTP) mail as shown below:

Maybe you are looking for