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.

Similar Messages

  • I am new to Mac Pro but am purchasing one online.  can anyone tell me how to get the information from my Toshiba onto the Mac.  there are no stores in the state I live in.  Do I need to find a location and will they do a transfer from my I Tunes etc?

    I am new to Mac Pro and am purchasing one online  tonight.  Can anyone tell me how to get my information - Itunes, photos, and videos transferred onto the Mac from my Toshiba.  the state I live in doesn't have an Apple store but I could take it to Minneapolis when I go.  Any ideas where to begin?

    You might profit from a visit to a Minneapolis Apple store. With a brand new Mac, I think they will be most helpful - not just with transferring files, but with other advice as well. And I strongly recommend you invest in a back up drive. The Apple folk can help with that as well.

  • I can't figure out how to get my contacts from my phone onto my mac book pro

    i just got a mac book pro and am trying to use icloud but i just cant figure it out. i've downloaded the newest versions of everything and authorized the computer and everything that i've been told to do, but i still cant figure out how to sync my contacts to the MBP. HELP?

    Do your contacts appear at http://www.iCloud.com after signing in?
    If so, you just follow the iCloud Setup instructions here: http://www.apple.com/uk/icloud/setup/mac.html

  • How to download ALL MAIL from the server in a Mail app ?

    How to download ALL MAIL from the server in a Mail app ? I want all the mail messages, sent, received ON my computer... Thanks much !!!!!!!

    In Mail's Accounts/Mailbox Behavior preference pane make sure these 4 checkboxes are NOT checked:
    OT

  • My phone died.  How can I get my contacts from the icloud onto my mac?

    My phone died.  How can I get my contacts from the icloud onto my mac?

    Have you checked that your contacts are in iCloud yet?
    iCloud.com

  • I just updated the software on my iPhone to the ios5. I've gotten everything to synce but my ringtones. Does anyone know how to get my ringtones from my iTunes onto my iPhone???

    I just updated the software on my iPhone to the ios5. I've gotten everything to synce but my ringtones. Does anyone know how to get my ringtones from my iTunes onto my iPhone???

    Try this thread >  http://www.mac-forums.com/forums/ios-apps/253296-ios-5-not-syncing-purchased-rin gtones.html
    edit by: cs

  • HT2518 How do I export mail from windows xp to my mac? Can I just copy all my windows mail to a USB storage device and plug it into my mac?

    How do I export mail from windows xp to my mac? Can I just copy all my windows mail to a USB storage device and plug it into my mac?

    Select "export' while in Windoz/Outlook and cerate an export file, then while in MacOS/Outlook select "import" and select the same file to import. You can use a thumb drive to sneakernet the file.

  • How to get internet mail into my server - any advice?

    To clear the pipeline and reduce the amount of configuration, I decided to get rid of my private router and plug my server directly into the modem, thus using the server as the gateway/router for other computers in my home. Hopefully this will eliminate the need for an internal/private network DNS configuration as well as an external/public DNS configuration.
    I have a registered public domain name of N.com and an associated public MX record for this domain which is also named N.com (as opposed to mail.N.com or something similar).
    I reinstalled the Leopard Server software and when the setup asked for a "primary DNS name" I named it N.com (the same name as my registered public domain). I went into firewall settings in the Server Admin and "allowed"/opened port 25 as well as 80 for email and web services respectively.
    When I looked in the Mail settings the default domain name is "localdomain" and the default hostname is N.com (the same as my registered public domain). Default user addresses are [email protected]
    So here is the problem. I have no problem seeing the server's webpages from the internet, but I still cannot get any mail from the internet to show up in my user accounts.
    What more do I need to do?

    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.

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

  • How to get All Mails from outlook

    Hi am reading mail from outlook.. It reads only unread mails. But i want to read all mails. if any one knows please help me..My code is..
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import java.io.*;
    public class AllPartsClient {
      public static void main(String[] args) {
    Properties props = new Properties();
        String host = "myhost";
        String username = "myuser";
        String password = "mypass";
        String provider = "pop3";
        try {
          Session session = Session.getDefaultInstance(props, null);
          // Connect to the server and open the folder
          Store store = session.getStore(provider);
          store.connect(host, username, password);
          Folder folder = store.getFolder("INBOX");
          if (folder == null) {
            System.out.println("Folder " + folder.getFullName() + " not found.");
            System.exit(1);
        folder.open(Folder.READ_ONLY);
          // Get the messages from the server
          Message[] messages = folder.getMessages();
          for (int i = 0; i < messages.length; i++) {
            System.out.println("------------ Message " + (i+1)
             + " ------------");
            // Print message headers
            Enumeration headers = messages.getAllHeaders();
    while (headers.hasMoreElements()) {
    Header h = (Header) headers.nextElement();
    System.out.println(h.getName() + ": " + h.getValue());
    System.out.println();
    // Enumerate parts
    Object body = messages[i].getContent();
    if (body instanceof Multipart) {
    processMultipart((Multipart) body);
    else { // ordinary message
    processPart(messages[i]);
    System.out.println();
    // Close the connection
    // but don't remove the messages from the server
    folder.close(true);
    catch (Exception e) {
    e.printStackTrace();
    // Since we may have brought up a GUI to authenticate,
    // we can't rely on returning from main() to exit
    System.exit(0);
    public static void processMultipart(Multipart mp)
    throws MessagingException {
    System.out.println("mp.getCount() = "+mp.getCount());
    for (int i = 0; i < mp.getCount(); i++) {
    processPart(mp.getBodyPart(i));
    public static void processPart(Part p) {
    try {
    String fileName = p.getFileName();
    String disposition = p.getDisposition();
    String contentType = p.getContentType();
    if (fileName == null && (Part.ATTACHMENT.equals(disposition)
    || !contentType.equalsIgnoreCase("text/plain"))) {
    // pick a random file name. This requires Java 1.2 or later.
    fileName = File.createTempFile("attachment", ".txt").getName();
    if (fileName == null) { // likely inline
    p.writeTo(System.out);
    else {
    File f = new File(fileName);
    // find a version that does not yet exist
    for (int i = 1; f.exists(); i++) {
    String newName = fileName + " " + i;
    f = new File(newName);
    FileOutputStream out = new FileOutputStream(f);
    // We can't just use p.writeTo() here because it doesn't
    // decode the attachment. Instead we copy the input stream
    // onto the output stream which does automatically decode
    // Base-64, quoted printable, and a variety of other formats.
    InputStream in = new BufferedInputStream(p.getInputStream());
    int b;
    while ((b = in.read()) != -1) out.write(b);
    out.flush();
    out.close();
    in.close();
    catch (Exception e) {
    System.err.println(e);
    e.printStackTrace();
    In this code if Content is Multipart then it is not displaying content..
    Thanks

    Hi
    if i use String provider = "imap"; then it shows the following error message..
    javax.mail.MessagingException: Connection refused: connect
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:479)
    at javax.mail.Service.connect(Service.java:275)
    at javax.mail.Service.connect(Service.java:156)
    at javamail.AllPartsClient.main(AllPartsClient.java:39)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
    at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
    at com.sun.mail.iap.Protocol.<init>(Protocol.java:84)
    at com.sun.mail.imap.protocol.IMAPProtocol.<init>(IMAPProtocol.java:87)
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:446)
    ... 3 more
    pls any one give idea

  • 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

  • How to sync sent mail from iPhone to MacBook Air mail?

    I have sent mail from my iPhone and I want this sent mail to show on my laptop (MacBook Air).  Is there a setting that will allow for this?  I use Apple's Mail on my laptop.
    thanks

    Hi,
    To do this, you must be using an IMAP email account type.
    If you are using a POP mail account it is not possible.

  • How to important "sent mail" from another account into Mail?

    I wasn't sure where to put this question because of the way this forum is organized.
    Anyway, here is my problem:
    I woke up thinking I may have forgotten to send an important e-mail yesterday. I thought, "No problem, I won't have to drive all the way to work. I'll just set up Mail on my iMac to use the e-mail account I use at work." It's an SBCGlobal account, so I found most of the information I needed about the mail servers and POP and IMAP and all that stuff that could be termed in a lot more user-friendly language so I don't have a conniption fit trying to figure out what it is I'm doing.
    I finally managed to get it set up to where all of the messages from the inboxes were imported into my Mail app. One big problem: I need to look at the *sent* mail, and if I didn't send the e-mail I thought I needed to, I need to access attachments that I sent to others.
    So how do I important the sent folder from my work e-mail account into Mail?

    I wouldn't doubt it. I work at a small church so we don't have much funding, but we're switching to Gmail. I found an older, unedited print copy of what I was supposed to send and made alterations to that and e-mailed it to the people who needed it. The other thing I was supposed to e-mail isn't essential, I suppose, as it's Sunday's bulletin and everyone will be picking one up tomorrow when they come to church anyway. It's just that I'm fairly new at the position, I love everyone at the church and with whom I work, and I want to do everything right 100% of the time to please them because I'm very Type A. I've been really getting a hang of my job, but it seems there's always one thing that I screw up. I guess I'll get better with experience. And hopefully switching to Gmail, if I do this again, I can just access everything from home.

  • How to download a mail from pop3 server to an HTML Form

    Hi Friends,
    i want to download the Mails from a POP3 server using an Html
    Interface.I mean not from command Line.
    I have designed an interface that will send emails to Recipients,
    but i didn't get any idea about how to download the mails to an interface like a HTML Form.
    if any body know the answer post the replay with the code snipnet
    Nagaraju G.

    In Mail's Accounts/Mailbox Behavior preference pane make sure these 4 checkboxes are NOT checked:
    OT

Maybe you are looking for

  • For some reason my back button and refresh button dosent work,,,also my passwords are not saved in my craiglist windows

    i just had some update today didnt really read it it was with mozilla so i just installed, now my pages were the wrong sizes and the toolbar with the backpage and refresh dosent work also my passwords are not being saved on my craiglist page

  • Convertion

    How do I change a password protected IMG document into a PDF word document?

  • Sending back to FCP

    Once I have finished the render in Color and the render files are created exactly where and as they should be I send the sequence to FCP. When I open the (From Color) sequence in FCP it does not have the rendered clips from color, but the original cl

  • To and fro communication between mobile & sap system

    Hi, I want to enable a function in basis system in which on locking the sap userid, user will send an sms (using mobile) to sap system (ecc 6.0). Syetem will authenticate the request and will revert as sms to same user on mobile either success with u

  • Multiple result sets from stored procedure into CachedRowSet

    How can you obtain multiple sets of data from a stored procedure that returns multiple result sets, when you'd like to use CachedRowSet rather than ResultSet? My database's stored procedures return multiple result sets, but I'm not sure how to manipu