Getting all mail from a gmail account

I am trying to download all my old emails from an gmail account via thunderbird. The main reason is for backup. The problem is that each time I push on GET MESSAGES it only downloads a few mails. I need to wait till it ends and then click again and so on. It will take a lot of time from my work. Is it any way to download all at a time or at least a huge amount each time???
I am using a MacBook Pro, running MAC OS X 10.9.5 and thunderbird 31.2.0.
Thanks in forehand

see http://gmailblog.blogspot.com.au/2013/12/download-copy-of-your-gmail-and-google.html
Note the google backup file is mbox format, that is Thunderbird mail format, so use this add-on to import to Thunderbird if you want to https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/

Similar Messages

  • We use the Apple mail server to get e-mails from our gmail and comcast mail accounts. Recently we have been getting spam that claims to be sent to a gmail address, but when I check that address directly, there is no such e-mail. ???

    We use the Apple mail server to get e-mails from our gmail and comcast mail accounts. Recently we have been getting spam that claims to be sent to a gmail address, but when I check that address directly, there is no such e-mail, either in the inbox or in the spam folder. Is it possible to bypass the gmail account and send directly to the Apple mail server, spoofing the gmail address?

    Maybe some info here for you about spoofing. (and much additional info)
    http://www.thesafemac.com
    Hope this helps

  • Can't get new Mail from my Pop-Account...

    Hello,
    I have a problem with Mail, as I can perfectly send but not receive Mails from my Pop-Account. The settings are fine and the problem came up suddenly. When I try to get mail from Pop-Account the application starts to load, shows the number of mails in the account, begins to count up the size and then stops. I can even see the title of the mails by opening the window of the Account, but Mail does not download them.
    I would be really pleased if anybody could give me an advice what to do.
    Thanks a lot an greeting from a German in Bahrain
    Jan

    Hello and thanks to both of you,
    I am using Mail 3.1 and the Account is coming from Strato, a German provider. Before, I had no problems neither with receiving nor with sending, but suddenly it stoped. I tried another account (gmail) that worked without any problem. Also your advice with SSl and the ports did not help . I Also phoned the Helpline of the provider Strato without any result . Also the place does not change - it neither works at home nor at work.
    Regards from a desperate Mac-User

  • 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

  • I can no longer send mail from my gmail account on my iPad.

    I can send mail from my iPhone just fine so it isn't gmail. I deleted the gmail app and reinstalled it; restarted my iPad; and checked the settings. My wifi is working as is evidenced by the fact that I wrote and posted this from my iPad with no problems. Anyone have an idea of how to fix this?

    Is your printer selected?
    Or are you printing to XLS?

  • Can I delete E-mails from my GMAIL account on my Verizon Phone without deleting them at the samem time from my computer?

    I use GMAIL for e-mailing.  Can I delete gmail messages from my Verizon Phone WITHOUT having them deleted from my computer at the same time?

    you can do it, but how to do it depends on how you have email set up on your pc and on your phone, and what type of phone you have. for example, i use outlook on my pc for all of my email accounts. i have it set in the options to leave a copy of the email on the server when i delete an email. i also have an option on my phone the is NOT checked, that says "delete mail on server." this way, i can delete emails from the pc or the phone, and they stay on the server and the other device. to delete them from both, i have to actually delete them myself from both, the pc and my phone. different email clients and different phones are set up a bit differently, but they should all have some variations of a setting to leave a copy on the server after deleting it on the respective device.
    edit: one other box i left unchecked on my phone is "sync deleted item from server" (this also removes messages from the phone when deleted from the server, the next time it syncs).

  • Not Receiving Emails from my Gmail Account in Mail

    I am not receiving my e-mails from my Gmail account. I have not received any since 31 Dec 2010. I have gone thru the Gmail web site to look at my mail & I have received several since 31 Dec. I've used the Connectivity Doctor & all three go green, but I'm still not getting my Gmail. I heard today about some issue with the iPhone & alarms - could this be connected with that? What's the problem?

    If you unable to do it from your phone then do it using the web portal
    navigate to https://bis.na.blackberry.com/html?brand=sprint
    Create new account using your device pin and imei number.
    login to the account and move your mails to the new device.
    Thast all
    But remember that if you unable to browse from phone using wirless network not wifi then it wll not work
    I think it will solve your problem
    Take care

  • I haven't gotten any incoming mail in the past 3 days from my gmail account which worked fine previously. What settings should I check?

    I suspect my settings for Mail are incorrect and are causing my iPad 2 not to receive new mail from my gmail account. I have experimented with various settings and at this point Mail is non functional; no incoming or outgoing. I'm using WiFi not a data plan. Can someone please tell me what my settings should be to correct my problem?

    If you tinkered with the actual settings for gmail in the mail app, you may have done more damage than good. Sometimes it's best to delete the account and start over again, rather than try to adjust settings that worked previously.
    Before you delete the account and start over (if you are consodereing that) try force closing mail, reset your iPad and try mail again.
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • How do I get Mail from my hotmail account?

    I was wondering if I could get my mail from my hotmail account right into my mail. Also if I could get mail from an address originally opened on Windows with Outlook Express. Thanks a lot.

    The short answer, for now, is you don't. It's increasingly clear that Microsoft does not want to extend this privilege to users of free HotMail accounts, not does it want to offer POP3 access to anyone other than paying HotMail Plus users at this point, and for the foreseeable future. And, IMAP: that's out of the question, apparently.
    While the plugin idea is a nice one, the referenced open-source HTTPMail plug in is broken by Mac OS X 10.5, and nothing has been heard to date from the developer about an update to support Mail in Leopard.

  • I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    I am running OS10.6.8 and have a mail box duplication. I use gmail and when I open my mail I have both the Apple Mail and another set of boxes for Gmail. Both get all mail and when I delete from one, it deletes from the other. How can I get rid of the dup

    Hi,
    According to your descriptioin, I don't think this is system problem, it should be Intel driver problem. It would be contact Intel to confirm this issue whether this is their driver problem.
    Roger Lu
    TechNet Community Support

  • I accidentally deleted all my husband's Mac mail and now it is also gone from his gmail account. How can I retrieve the deletd messages?

    I accidentally deleted all my husband's Mac mail and now it is also gone from his gmail account. How can I retrieve the deletd messages?

    Did you also empty the trash can?   If you did not empty the trash, then likely mail moved the messages to the trash folder on GMAIL.

  • My emails from my gmail account is taking forever to upload in my IPad mail app

    My emails from my gmail account is not uploading in my IPad mail app. I can see I have new mail, but when I tap on it, it is not uploading at all.

    Hello there, Siew Hwee.
    The following Knowledge Base article offers up some great steps for troubleshooting the issue you're describing:
    iOS: Gmail account will not connect to Gmail server
    http://support.apple.com/kb/ts3058
    Resolution
    Check that your device is connected to the Internet by opening Safari and loading a webpage, such as google.com. If you cannot connect to the Internet, try the steps in this article.
    If you have other email accounts on the device, check if those accounts can send and receive email.
    If the issue is isolated only to the affected Gmail account, visit this website:https://www.google.com/accounts/DisplayUnlockCaptcha.
    Complete the form to unlock the account.
    If the issue persists, follow this Google support article.
    Once the account has been unlocked, or the correct password entered, check that the issue is resolved. If not, remove the affected Gmail account from the device and add it to the device again: Settings > Mail, Contacts and Calendars > Add Account > Gmail.
    Additional Information
    If the issue persists after following the above steps and your Gmail account is checked by more than one device or computer, get more information about this issue.If the issue persists, consult Gmail's support site. These articles may help:
    Problems downloading mail - Gmail Help
    Problems sending mail - Gmail Help
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

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

  • All mail from gmail and not default mail Help!

    Hello all, new boy here. Just upgraded to 3Gs
    transfered everythimg fine.
    My problem is: all the mail I send appears to be from
    my gmail account.
    When really I want it to go from my default
    account (telefonica ) I have two seperate telefonica
    accounts, a hotmail, a yahoo and a gmail
    account. The main telefonica account is
    ticked as the default but this seems to makeno difference
    any help or advice would be gratefully
    received! Mike T

    Do you have all of those accounts on your iPhone? In order to send mail from an account, it must be set up on the iPhone. When you create a new message from within the Mail app, the sending account will be whichever account you're currently accessing, unless you tap the field with the from/cc label, then tap the from field, then choose another account from the list.
    The 'default' setting only applies to email messages that are started from outside the Mail app (e.g. tapping on a clickable email address in Safari). That's stated right in the Settings.

  • Pb while getting mails from my Yahoo account

    Hi,
    Since two days geting mails from my Yahoo account doesn't work. It all begun with Mail saying it must rebuild the index at start up. Ok I let it dot it. It then tried to download my whole Inbox from thr Yahoo account and get stuck at some point (I had more than 300 messages there).
    Ok I removed them all and tried again, and now Mail still gets stuck while downloading the first unread mail. The message appears in Mail but the transfer is not completed (the Activity Window shows that sthg is not finished), and I cannot quit unless I force it to quit. I tried different things, but nothing worked (index again, emptying my Inbox in Mail,...).
    Sending emails works fine.
    Thank you for any hint
    Syle

    For the Yahoo contacts, click on the following link for instructions regarding importing contacts.
    http://help.yahoo.com/l/us/yahoo/addressbook/impexp/impexp-11.html?terms=download+contacts+on+palm+c...
    Regarding Express mail subfolders, they are not supported at this time.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://www.palm.com/us/support/centro/centro_att/
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Post relates to: Palm i705

Maybe you are looking for

  • How to add a button on detail page

    Hey I know it is not standard function to add a button on detail page, but I would like to know if we can use javascripts to add a button on the detail page. for instances add it behind "Edit" button? Thanks for your input.

  • Updates for software, etc.

    Is there a way that a user (me) can be automatically notified of updates? Like on a weekly basis. Or do we have to keep checking ourselves. For example, only by chance, did I notice Apple had an update for Mountain Lion 10.8.1 today. If I hadn't know

  • How to determine the oc4j version?

    Dear All, I would like to clarify which version of the OC4J server ( actually which version of the j2ee & servlet API) we have available. Where can I quickly see this info? The best thing I have found is http://oursecurehost/7780/relnotes.htm I see w

  • Toshiba M645 laptop turns off without reason

    I have been dealing with this problem for about 4 months. It has been seen by some technicians and never found the cause. Some thought it was due to the settings in the power options either by what the lid does, or when it should go to sleep mode, an

  • Weird noise in the headphones

    hello everybody, now here is a little something taht totally wrecks my nerves. while trying to set up my laptop for recording (pismo) i noticed a distorted hiss in the headphones. it will not quit, whatever i do. its not the headphones, i doublecheck