Mail does not load the mail after opening with 10.10.3 on macbook air

Mail does not load the mail after opening with 10.10.3 on macbook air

Under Window in the Menu bar select Connection doctor. You will see green to indicate a connection and red to show there is a problem. Except for iCloud account you'll see two entries for each account 1) receiving and 2 SMTP for sending.
If it's red, this usually means it's missing the password.
For Incoming messages, set in the account window, under Account Information tab.
For Outgoing (SMTP) messages, follow these steps:
EDIT SMTP SETTINGS
In Accounts window > Outgoing Mail Server SMTP:  select to Edit SMTP Server list... from popup.
Select account in the list.(It's not uncommon to find extra SMTP servers listed. When you remove account, Mail does not delete the smtp info. You might need to do some clean up in the list to remove the extras.)
Under Advanced Tab:
Apple defaults to the default ports (25,465, 587) but some servers prefer a custom port. Check to see what port they recommend. Gmail for example likes 465, Outlook.com 587.
Verify if your server require SSL.
User Name. Enter full email address  eg.  [email protected]
Add password if it is blank.(If you have two step authentication setup, you'll need to get an app specific password  more info)
Open Connection Doctor under Window in the Menu bar.
Do you see green light now for your account SMTP?

Similar Messages

  • Hello, I'm using Mountain Lion and mail does not leave the mails on the server, either on iCloud nor on other suppliers (orange). They are both using iMap protocol... Any place where I could change this ? Thanks for any hall; Christian

    Hello, I'm using Mountain Lion and mail does not leave the mails on the server, either on iCloud nor on other suppliers (orange). They are both using iMap protocol... Any place where I could change this ? Thanks for any hall; Christian

    Under what circumstances does mail "not leave the mails on the server"?
    If you mean that you delete them (or move them out of the inbox) on one device and then find them not in the inbox on the server when you look from another device, that's how IMAP is supposed to work. (Note that the deletion or moving might be the result of rules you have set up in Mail.)
    If you mean something else, please explain your issue in more detail.

  • Java mail does not retevire the mail for server

    i am runing this code on tomcat 6
    login.jsp
    <%@ include file = "header.jsp" %>
    <%@ include file = "navigation_l.jsp" %>
    <form action = "logcheck.jsp" method = "Post">
    <Div id=content>
    <div class="splitcontentright" style="width: 550px; height: 313px">
              <h2>Login</h2><hr />
                        <table>
                        <tr>
    <th>POP3 Server:</th>
    <td><input type = "text" name = "pop" width = "150px"></td>
    </tr>
                        <tr>
    <th>SMTP Server:</th>
    <td><input type = "text" name = "smtp"></td>
    </tr>
                        <tr>
    <th>Username</th>
    <td><input type = "text" name = "uname"></td>
    </tr>
    <tr>
    <th>Password</th>
    <td><input type = "password" name = "pass"></td>
    </tr>
    <tr>
    <th></th>
    <td><input type ="submit" value = "Login" style="border: 0px ridge #004F4F; background-color: #f28aa4"/></td>
    </tr>
    </table>
    </div>
    </Div>
    </form>
    <%@ include file= "footer.jsp" %>
    logcheck.jsp
    <jsp:useBean id="log" class="src.LoginBean"/>
    <jsp:setProperty name="log" property="pop" value="<%= request.getParameter("pop")%>"/>
    <jsp:setProperty name="log" property="smtp" value="<%= request.getParameter("smtp")%>"/>
    <jsp:setProperty name="log" property="uname" value="<%= request.getParameter("uname")%>"/>
    <jsp:setProperty name="log" property="pass" value="<%= request.getParameter("pass")%>"/>
    <HTML>
    <HEAD>
    <TITLE></TITLE>
    </HEAD>
    <BODY>
    <%
    request.setAttribute("key",log);
    RequestDispatcher reqdisp = request.getRequestDispatcher("/Login");
    reqdisp.forward(request,response);
    %>
    </BODY>
    </HTML>
    loginbean
    package src;
    public class LoginBean
    public LoginBean()
    private String pop;
    private String smtp;
    private String uname;
    private String pass;
    public String getPop()
    return pop;
    public void setPop(String pop)
    this.pop=pop;
    public String getSmtp()
    return smtp;
    public void setSmtp(String smtp)
    this.smtp=smtp;
    public String getUname()
    return uname;
    public void setUname(String uname)
    this.uname=uname;
    public String getPass()
    return pass;
    public void setPass(String pass)
    this.pass=pass;
    loginservlet
    package src;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import java.io.*;
    import java.sql.*;
    import net.sf.classifier4J.*;
    import net.sf.classifier4J.bayesian.*;
    import net.sf.classifier4J.summariser.*;
    public class LoginServlet extends HttpServlet
    static RequestDispatcher reqDisp=null;
    static PrintWriter out = null;
    public void doPost(HttpServletRequest req, HttpServletResponse res)throws ServletException,IOException
    try
    req.setAttribute("log","false");
    out = res.getWriter();
    LoginBean au = (LoginBean)req.getAttribute("key");
    String popServer = au.getPop();
    String smtpServer = au.getSmtp();
    String popUser = au.getUname();
    String popPassword = au.getPass();
    //out.print(popUser);
    if(popUser.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else if(popPassword.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else if(popServer.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else if(smtpServer.isEmpty())
    req.setAttribute("log","false");
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    else
    Connection con = Generator.getAccessCon("mail_db");
    PreparedStatement ps=con.prepareStatement("insert into login values(?,?,?,?)");
    ps.setString(1,popServer);
    ps.setString(2,smtpServer);
    ps.setString(3,popUser);
    ps.setString(4,popPassword);
    ps.executeUpdate();
    req.setAttribute("key",au);
    req.setAttribute("log","true");
    con.close();
    reqDisp=req.getRequestDispatcher("/account.jsp");
    reqDisp.forward(req, res);
    //out.println("done "+ popServer);
    catch(Exception e)
    reqDisp=req.getRequestDispatcher("/failure.jsp");
    reqDisp.forward(req, res);
    System.out.println("Error ------> better luck next time ");
    //e.printStackTrace();
    public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException,IOException
    doPost(req,res);
    inboxbean
    package src;
    import javax.mail.*;
    import java.util.*;
    public class InboxBean
    InboxBean()
    private String mid;
    private String from;
    private String subject;
    private String content;
    private Message msg;
    private ArrayList al;
    private String spamc;
    private boolean empty = false;
    public void setMid(String mid)
    this.mid=mid;
    public String getMid()
    return mid;
    public void setFrom(String from)
    this.from=from;
    public String getFrom()
    return from;
    public void setSubject(String subject)
    this.subject=subject;
    public String getSubject()
    return subject;
    public void setContent(String content)
    this.content=content;
    public String getContent()
    return content;
    public void setMsg(Message msg)
    this.msg=msg;
    public Message getMsg()
    return msg;
    public void setAl(ArrayList al)
    this.al=al;
    public ArrayList getAl()
    return al;
    public void setSpamc(String spamc)
    this.spamc=spamc;
    public String getSpamc()
    return spamc;
    public void setEmpty(boolean empty)
    this.empty=empty;
    public boolean getEmpty()
    return empty;
    ******************************

    Please find and read the [JavaMail FAQ|http://java.sun.com/products/javamail/FAQ.html]. Then post the protocol trace.

  • Firefox 3.6.13 does not load AOL mail - it logs in ok but does not load

    I updated Firefox to the latest version and it will not load my AOL eMails.
    I can however log into my AOL account and it shows the Welcome message and number of unread mail and also shows the folders etc. including Spam folder but it does not load the eMail or will not allow me to open any eMails.- Just shows blank.
    BTW I can access my AOL mail Box with Internet Explorer.

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • ICloud mail does not reconnect in Mail application on MacBook Pro after disconnecting and reconnecting iPhone or after sleep

    iCloud mail does not reconnect in Mail on my MacBook Pro after sleep or after disconnecting and reconnecting my iPhone. This only happens when I use my iPhone as a 3G-modem and not when I am on Wi-Fi. The only solution seems to be to quit the Mail-application and restart it again. Then Mail reconnects to iCloud.

    Hi horstp,
    Given your description of the issue (works on other Macs), it may be worth trying to set up that account by itself in a new test user on the iMac to see if it can be isolated to a user-specific file. You may find the following article helpful:
    Apple Support: Isolating an issue by using another user account
    http://support.apple.com/kb/TS4053
    Regards,
    - Brenden

  • TS1369 After updating iTunes this week Windows 8 recognizes the iPod but does not offer an option to open with iTunes. iTunes does not recognize iPod Touch. Have followed all the steps but without success. Is there a solution with iTunes?

    After updating iTunes this week Windows 8 recognizes the iPod but does not offer an option to open with iTunes. iTunes does not recognize iPod Touch. Have followed all the steps but without success. Is there a solution with iTunes?

    I followed all the instructions on the suggested page. Many files in C:\Program Files\Common Files\Apple\ and C:\Program Files (x86)\Common Files\Apple\ could not be deleted. Message said ""Cannot delete files: It is being used by another person or program"' but could not find iPodService.exe in task manager (also, the "Cannont delete ... " did not mention iPodService.exe).
    Deleted all that I could. Reinstalled iTunes. Still same result. iTunes and computer both recognize my old iPod. Only the computer recognizes iPod Touch.

  • TS1702 My app store does not load the featured apps, also in charts. Everytime i open the app store, the screen remains blank. Im using ipad3, ios6.

    My app store does not load the featured apps. The screen remains empty everytime I open it.

    Saw this on another post.
    Applecare Senior Advisor Txx Bxxx (I have his contact info in an email he just sent) just confirmed with me that the problem people are having with the App Store not loading is an apple issue with there servers, ITS NOT YOUR IPAD so don't go restoring it!   It's not happening to everyone however but they are looking into it, its really hit or miss.
    In the meantime ...........
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - 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 - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Moving mail to the trash icon does not delete the mail.

    I am using an iPad with OS Ver 7.0.2. Moving mail to the "Trash" icon does not delete the mail from the Inbox. This is not a problem on my iPhone. Settings are the same on both devices

    First thing to try is a reset: hold the on/off button and the hold button at the same time until the iPad completely shuts down, then turn back on.
    May not work, but often resolves simple app issues.

  • Sometimes when I open a link in a new tab, the new tab does not load the link.

    Sometimes when I open a link in a new tab, the new tab does not load the link. This seems to be random.
    Win 7 64
    FF 4.0.1

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Safari cannot open the specified address as OS X does not recognise the internet address starting with "aam". Please please can someone shed some light on this, its driving me MAD!!!

    when i try to download the software onto my mac, i receive a message saying that safari cannot open the specified address as OS X does not recognise the internet address starting with "aam". Please please can someone shed some light on this, its driving me MAD!!!

    Try and download the Desktop Application First before trying to install any other Adobe Product. The link for AAM is Safari looking for Desktop Application in your machine.
    Creative Cloud Help | Creative Cloud for desktop

  • Firefox does not fully load Barclaycard Authentication site. It loads as far as asking for certain letters in my pasword but does not load the "Submit" button so I cannot continue with my purchase and have to switch to IE8 browser to purchase anything ov

    Firefox does not fully load Barclaycard Authentication site. It loads as far as asking for certain letters in my pasword but does not load the "Submit" button so I cannot continue with my purchase and have to switch to IE8 browser to purchase anything over the internet. Any clues?
    == This happened ==
    A few times a week
    == Couple of weeks ago

    Your UserAgent string in Firefox is totally messed up by another program that you installed, and Barclays doesn't know you are using Firefox 3.6.6 - it probably looks like IE 6.0 to that website.
    [http://en.wikipedia.org/wiki/User_Agent]
    type '''about:config''' in the URL bar and hit Enter
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''general.useragent.'''
    Right-click the preferences that are '''bold''', one line at a time, and select '''''Reset''''',
    Then restart Firefox

  • Safari does not load the website

    Hi,
    I am running MAC OS X 10.4.7 using Safari Version 2.0.4 (419.3).
    Ever since I started using this computer (1 week back) Safari just does not load the pages. The website that I am trying to load is http://www.apple.com/startpage/ or the default page of Safari as installed. This also happens with many other pages.
    The browser starts loading the page and the blue bar just stops mid way and nothing happens post that. I have waited for almost 20mins for it to load, however that never loads. If I press the Stop button, I do see the partial HTML thats loaded in the browser, but the page never loads completely.
    My internet connection is fast, since I am able to load the same page or any other page in FireFox with no problems.
    Can you please support me with what to look at to resolve this problem?
    Mac Book Pro   Mac OS X (10.4.7)  

    Hi! Yes I have experienced similar difficulty with Safari 1.3.2 (v312.6). Although I am using Safari to browse this site now, it does seem prone to reject some sites. When it works it work beautifully. There must be a gremlin glitch in there somewhere!
    All I can suggest that that you switch to another browser such as Netscape 7.2 or Firefox to resolve this issue as and when it happens.
    Happy surfing!
    Technoapple.

  • Swf does not load the images on the web

    I made a swf that works perfectly on my computer.
    The swf does not load the images, cal with the buttons, when I use the swf on the web.
    I think the problem is due to the fact that the web changes the path of the file, that is called with the following variable:
    var ImmageUrl: String = "MyFolder2 /" +  MynamePic +  ".jpg";
    The path is C:/MyFolder1 "(with the swf)" /MyFolder2 "(with the pics)"
    Any hint ?
    Thank you.

    When you place an swf in a web page, any files that the swf loads have to be targeted as if the swf is sitting in the same folder as the html page.  If you have the swf in a different folder than the html page, then you need to adjust the paths for the files it loads so that it acts as if it is in the html page's folder.

  • My computer says it is connected to internet but it does not load the webpage

    my computer says it is connected to the internet, full bars but it does not load the webpage when i click on safari

    If you are connected wirelessly it is possible to have full bars, but your wireless router connection to the Internet could be the problem.  Try restart your router. 

  • Firefox 26 does not load the home page. Instead, it loads the previous session (and that includes all the tabs). It does not matter how Firefox is closed.

    Firefox 26 does not load the home page. Instead, it loads the previous session, irrespective of what has been entered in "Options". The browser is running in Win 7.0 64-bit; Norton Internet Suite 21 provides the security functions. There are certain "cloud" solutions also running such as Google Drive, Box, Skydrive and Cubby. The browser behaves similarly in all my machines (the setup and OS is similar to the one described above) and no amount of resetting of "Options" seems to affect it . Nor is it affected by the manner Firefox is closed. It is obviously a bug that needs to be fixed.

    u wait for firefox next update
    otherwise
    1. go to firefox tab .
    2. click on help ->trouble shooting information.
    3. reset ur browser .
    ur problem is solved

Maybe you are looking for