Problem with Mail accessing Gmail account

I don't know if this is a problem with Gmail or with my Mac, but any hints appreciated. I did some tidying of my Mac permissions this morning, and since then my Mail programme refuses to accept my Gmail application-specific passwords. (Both incoming and outgoing.) I have revoked the old ones and started again but it makes no difference. One thing that seems odd is that on the Gmail page for setting up the passwords, it lists my passwords at the bottom of the page with 'created date' but under 'last used date' it says 'unavailable'. I don't know if this is significant.
Any ideas how I solve this? I am using Mac OS 10.7.2, and Mail 5.

An update on this: I just tried to enter my POP password by going into Mail's Preferences (rather than just typing it in when prompted by a pop-up window), and got the following:
Error Saving Preferences:
Writing your preferences to disk has failed. Your preferences may not have been saved. The permissions on ~/Library/Preferences may be wrong or your disk may be full.
Help!! What have I done?!

Similar Messages

  • HT6030 I am still having problems with Mail and Gmail

    Using OSX 10.9 MacPro.
    despinte installing the mail update on the 7th Nov 2013,  may mail does not sync and update with my gmail accounts accross my devices?
    what should I do?

    as rediculous as this is, I enabled "all mail" under the labels, then went into the actual apple mail settings and checked some box about updateing immediately (for deleted items) . then I had to quit mail then open it back up  - it "appears" to have synced properly. I'll let you know if it all comes back, but this is really a pain in the butt, I swapped from Entourage a few months back because it started acting weird with gmail.
    anyone have any other mail options if this continues to not work? I don't want to have to pull gmail in my browser to move read items each day.
    thanks for all the help.

  • Problem with calendars on gmail accounts

    I have two gmail accounts on my iPhone 4.  I can access the mail for both of them, but I cannot accses the calendars for both, only one. I also have an exchange account calendar on my phone if that is important.

    Go to https://www.google.com/calendar/iphoneselect on a PC/Mac and choose the Google Calendars you'd llike to sync

  • Problems with Mail or gmail?

    I have gmail set up on my Mail app on computer.   Whenever I send an email from info@   and someone replies, the reply goes to the admin account (admin@)
    But If I just send an email to info@ it correctly ends up at info@   I cannot figure out it this is a gmail setting or a setting in my Mail App.
    Any help appreciated as I am finding the gmail system on Mail difficult to fathom.

    Please disregard.  I deleted the account and set it up again  - somehow it fixed the problem

  • I have a problem with Mail on my Macbook Pro. It is configurated with a gmail account, and now I can't access the mail. Is it possible to reboot the account or..? Please help:)

    I have a problem with Mail on my Macbook Pro. It is configurated with a gmail account, and now I can't access the mail. Is it possible to reboot the account or..? Please help:)

    The question mark means the computer cannot find a bootable volumes so can;t do anything, That, combined with annoying sounds, strongly suggests a failed hard drive.
    You can ask a "genius" at an Apple Rtail Store to test it but I'm pretty sure the drive is kaput. I'm hoping you had your data backed up.

  • 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");
    */

  • Mail cannot access gmail accounts

    I use iOS 7.0.4
    Since earlier today, mail stopped working with my (several) Gmail accounts.
    I have not changed the password in Gmail or something like that. I tried re-entering the password on the iPhone, deleting and re-creating the account - nothing worked.
    I have exactly the same issue on my iPad and Macbook.
    iCloud account works, Gmail accounts don't.
    Gmail works with other Email clients and the website.
    Any idea what I can try to correct the issue?
    Thanks!

    I verified this, and I am not using two-factor auhtn on my other devices.
    Yes, I am sure I am not using this (maybe I should...
    any other idea?

  • For users having problems with Mail functionality...

    Hello! I have been having problems with Mail functionality as well, so, I took a few steps to see if I could solve the problem on my own.
    My problems were:
    Mail would freeze when sending mail, or, when I pressed quit, it would freeze.
    If I toggled between inboxes too much it would freeze up.
    Even after trying the many techniques others offered on this board, Mail still froze up. So.. here's what I did:
    1.) Turn off the auto-retrieve mail function in the preferences/general menu. Set it to a manual check. Just check it yourself every once in awhile. It may not be as convenient, but it works, trust me.
    2.) Under the fonts and colors menu, set all three fonts to the SAME font (mines Century Schoolbook, but anything works) and turn off fixed-width font. Sometimes mail has a tough time decoding and working with texts, and causes it to freeze.
    3.) Clean our your main inbox! Place the emails that you want to keep, but don't need to be in your inbox in a new folder on your inbox bar (mines aptly named 'Saved Messages.' That way, when you open up Mail to your default account, it doesn't have 1,000+ messages to index. Also, try to keep the inboxes from having more than 100-200 messages per. It seems to frown on any more than that.
    After trying these three easy, steps, restart mail and see if things run smoother. I have had no problems since these changes, and mail runs a ton better. Plus you don't have to worry about deleting your library/mail folder anymore. Let me know if things work out so I can see if my theory is a universally proven thing. Thanks and good luck!
    iMac G5 20"   Mac OS X (10.4.5)  

    Good question. I have worked very little with IMAP other than as a testing device, so, on a daily routine I cannot say how it would function. However, I can only expect that by having the option to download all emails for offline viewing selected, you are right in it being a lag creator. Another suggestion would be, if you are running a single-computer setup, to have the account delete emails from the server after recieving them on your computer. Thus, you reduce the risk of repeat downloads or unnecessary build-up on the server end. DO NOT select this option if you run multiple computer set ups on one AppleMail account system or you will cause some discrepancies and/or data loss from system to system. Or, if you have emails redirected from a seperate server to Mail (i.e. I redirect mail from my university email account into Mail so that I don't have to go to the web-mail site to check it--> just like Gmail or Yahoo etc etc) you won't be able to check them from the web-based email system if you have the system delete them. Ok that sounded confusing. Solution: have the system remove emails from the server after a week (or any period of time, just not immediately) so that, in the off-chance you need to use the online system, you will have access, and will give you a chance to check the emails on other systems without a threat of data corruption (by corruption i mean that frustrating feeling you get when you can't find that super important email that was in your inbox just 10 seconds ago on your desktop etc.)
    I will see if I can learn anything more about IMAP Ernie. Its definitley the biggest problem source for Mail, POP and .Mac being simple and functional as long as you don't play with the settings too much. As far as the issue of Offline viewing goes, try turning it off and seeing how Mail functions.
    BEFORE you turn it off, however, I recommend saving all of your emails in your inbox as a text file or something so, in case the server burps and has a brain flatuence, you don't lose anything. Been there, done that, thrown the books against the wall in a frustrated rage.
    My only reserve about the Offline Viewing is whether or not Mail will, when you click "recieve mail," have to re-download the emails from the server each time. If so, then it may end up taking longer and lagging more. The issue here is obviously minimizing the amount of activity between Mail and the email server without jeapordizing information on the server or multiple Mail programs on the same account. When we can find that balance, I think Mail's potential will be realized. Keep the questions coming.

  • Problems with mail after upgrading to Mavericks

    Hello,
    since I upgraded to Mavericks, I have problems with Mail.
    The mail app doesn't retrieve any mail from my email servers. IMAP or POP or exchange mail no longer work.
    I have these problems on my iMac and my MBP.
    The strangest thing is that I have no more new emails in my icloud account since the upgrade. Not only does mail not retrieve the emails but I even can't see any new mail online.
    On my iphone with iOs7 the mails are retrieved, except of course the mails from the icloud account.
    Has anybody a solution at hand?
    Thanks

    this might help with the gmail problem: http://www.wired.com/gadgetlab/2013/10/mavericks-issues-and-fixes/?viewall=true

  • Problems with Mail after upgrading to 10.9.1

    I am running into problems with Mail after installing 10.9.1. I had NO problems with Mail prior to this update.
    Problems I have encountered so far are:
    - I don't receive some e-mails on my Gmail account.
    - I have sent e-mails that supposedly got "sent" but do not show up in my Sent box both on mail and on web Gmail. My Outbox is empty also.
    Has anyone encountered the same problems and found a solution?
    Thanks in advance!

    Yes Paul I have, but no solution. I cannot send email. My ISP uses a smtp mail server for sending and It will not log in. Have had ISP on phone and checked all settings. Can only put it down to Mavericks.
    It worked OK for a week after upgrading then stopped. So now having to use web mail to send email.
    Strange thing is I receive mail OK, just cant send.

  • "Firefox has stopped working" message shortly after accessing gmail account--Help?

    Use firefox to access gmail account. Worked great until tonight--Nov 6th. Firefox autoloaded an update, then within 10 seconds of loading gmail account, I get a message, "firefox has stopped working", followed shortly by "A problem has occurred with firefox. Windows will close the program and notify if a solution is available". Nothing happens. If I reattempt to get into email or firefox, I get a "this is embarrassing message" with two options: restore or start new session--neither of which work. Please help.

    *3
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Problem signing in my gmail account

    Problem singing in my gmail account I displays an error-sspt error cannot connect to server

    Hi, rocker2503.  
    Thank you for visiting Apple Support Communities.  
    I understand that you are unable to sign into your Gmail account on your iPad.  Here are the troubleshooting steps that I would go through for this specific issue.  
    Gmail account cannot get or send email in iOS
    Get help with Mail on iPhone, iPad, and iPod touch
    -Jason H.  

  • Hi! (iPhone4s) I have a problem with Mail.

    Hi all!
    I have a problem with Mail.
    I added my Gmail account. iPhone tells me that there are more than 42949670 mails. Obviously this number doesn't appear on the icon; I see it only when I open Mail. (Ah, I have already read all of these mails).
    The problem is that iPhone doesn't tell me when a new mail arrives; on the icon, the number in red doesn't appear.
    How can I set up my iPhone so that he tells me only how many new mails there are?
    Thank you!
    Ciao a tutti!
    Ho un problema con Mail.
    Ho aggiunto il mio account Gmail. L'iPhone mi dice che ci sono più di 42949670 emails. Ovviamente il numero non appare sull'icona; lo vedo solo quando apro Mail. Tutte queste emails le ho già lette.
    Il problema è che, quando arriva una nuova email, non mi compare il numero nel cerchietto rosso sull'icona.
    Come posso impostare l'iPhone in modo tale che non mi mostri il numero totale di emails che ho, ma solo quelle nuove da leggere?
    Grazie mille!

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

  • 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

  • Connection problems with Mail 6.2

    Is anyone else having connection problems with Mail 6.2? I'm running OSX 10.8.2 and Mail 6.2 (1499)?
    When Mail starts all my mailboxes connect to their respective servers (GMail, iCloud and an ISP). IMAP and SMTP connections are all good and mails can be sent and received. But then............ after a while (I've not timed it so I don't know exactly but say 20 to 30 mins) the connections begin to drop. First the SMTP connections to the ISP go then the SMTP ones to GMail then iCloud, then the IMAP connections drop. All connection settings are correct (it was working remember) and using the same connection settings on my iPhone everythig works just fine, but the Connection Doctor (Or whatever it's called) tells me that the mail account can't connect to the network/IMAP/SMTP server and asks me to check my connection settings. The only way to get it to work is to close Mail and restart it, whereupon everything is hunky dory for the next 20 to 30 mins.
    As it's happening to all my mail accounts including Apple's own iCloud server I don't think it's a mail server issue. As I have internet connectivity it's not a network connection issue in that sense. As it was connected but then drops the connection I'm assuming that Mail is sending something it shouldn't to the respective server when it tries to connect to send and receive mails.
    Everything was just fine until about a week ago and I didn't do any s/ware upgrades.
    Is anyone else experiencing similar issues or does anyone have any help they can offer to fix it? It's kinda tedious to keep closing and starting the Mail App.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether your problem is caused by third-party system modifications that load automatically at startup or login. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

Maybe you are looking for

  • Error during automatic po creation ME59N

    Dear All, Following errors has been shown after automatic po creation by ME59N:- Message text Message Class Message Number PO could not be created PO header data still faulty MEPO 2 Enter Validity End ME 83 Enter Latest GR Date ME 83 Can delivery dat

  • Oracle9i Application Server Release 2

    Oracle9i Application Server Release 2, which includes Oracle9iAS Portal Release 3.1, is planned for the final calendar quarter of 2001. What are the new features of 9iAS Release 2 and Portal Release 3.1? Thank you.

  • How to capture files in MVC 4 Action Filter ?

    Hi, I have three buttons and one submit button in my MVC web page. On click of each of those buttons i send a file to server and i want the files to be captured in an action filter and when when i finally submit the form i want those files to be bind

  • RSL Caching not working in Flash Player

    We have built a Flex application compiled into an swf file that uses RSL linkage for the different framework libraries it needs. This has been done to reduce the size of the swf file. We are using the URL of the signed version of the library while bu

  • IOS 8 apps run in background when set not to.

    Since upgrading to iOS 8, apps have been launching themselves in the background despite being set not to in the "Background Apps Refresh" settings page. I've noticed that that page no longer mentions anything about apps using Location Service.  That