Problem with Hotmail inbox only

Hello,
Everything was working just perfectly fine with my hotmail on iPhone 4S iOS 5.1.1 when suddenly it decided it wont download any messages older than a certain date & this applies only to inbox, where i've only 126 messages while for example the sent folder contains around a 1000 message.
I can't find my old emails anymore & it wont download no matter what, I tried to remove the account & re add it again twice but with no luck.
My settings are as follows:
Mail days to sync: No limit
Mail folders to puh: inbox
Show: 1000 recent messages.
Any help would be appreciated guys

Hi
I've had the same problem and have found a workaround which runs against the latest version of Belle OS:
(1) Make sure you have no Exchange mailbox set-up on your N8 (delete it if needed) and delete any existing hotmail mailbox too
(2) Choose add Exchange mailbox and add your hotmail details, putting your hotmail e-mail address as the e-mail address, your hotmail e-mail password as password and your hotmail e-mail address (in full e.g. [email protected]) as the username.  Leave domain empty
(3) Give it time to sycn or do manually if you choose.  Your hotmail folders should now be displayed in the N8 when you go in to that mailbox (look under 'folders' after selecting 'inbox' from the top left of the screen when in the inbox view) and you can then access e-mails stored in those folders.  You may want to play around with the settings to get as many as possible accessible via your N8.
You can also hold down on an e-mail (as you might to delete it) and you will have an option to 'add to folder'
You should still be able to add a 'proper' Exchange mailbox (there is a limit of 1 on the client and a total of 2 mailboxes in total).
Note that there is a limit to the number of folders that will be displayed (it seems to be a good few dozen though).  Note also that if you have nesting of folders in hotmail that the nesting is not shown (no indents) on the N8 which can make navigating folders tricky if you do use nesting - I got around this by renaming my folders in hotmail i.e. the parent as 'parent name', the child as 'parent name - child name' so I know which child is which!
Good luck

Similar Messages

  • Problem with Hotmail smtp - Only hotmail !

    Hello,
    I have a function that sends most of email's servers, even if it is SSL or Not.
    It does work for GMail, yahoo, AOL, etc.
    But, when i try to use with Hotmail (port 25 or 587 (all SSL)) i got the error:
    Exception Generated:
    javax.mail.MessagingException: Exception reading response; nested exception is: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection? at com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:1611) at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1369) at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412) at javax.mail.Service.connect(Service.java:310) at javax.mail.Service.connect(Service.java:169) at javax.mail.Service.connect(Service.java:118) at javax.mail.Transport.send0(Transport.java:188) at javax.mail.Transport.send(Transport.java:118) at
    I read something about the socketFactory was write before the definition of the SSL property, but i didn't get it why.
    protected final Variant ebfSendAuthenticatedEmail(Variant hostVar, Variant portVar, Variant SSLAuthenticationVar, Variant userVar, Variant passwordVar, Variant fromVar,
          Variant toVar, Variant subjectVar, Variant bodyVar, Variant html) throws Exception {
        Boolean SSL = SSLAuthenticationVar.getBoolean();
        String host = hostVar.getTrimString();
        String port;
        if (portVar.isNull() || (port = portVar.getTrimString()) == "") {
          if (SSL)
            port = "465";
          else
            port = "25";
        java.util.Properties props = new java.util.Properties();
        props.put("mail.debug", "false");
        props.put("mail.smtp.host", host);
        props.put("mail.transport.protocol", "smtp");
        props.put("mail.smtp.port", port);
        if (SSL)
          props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.auth", "true");
        final String myUser = userVar.getTrimString();
        final String myPass = passwordVar.getTrimString();
        javax.mail.Authenticator auth = new javax.mail.Authenticator() {
          public javax.mail.PasswordAuthentication getPasswordAuthentication() {
            return new javax.mail.PasswordAuthentication(myUser, myPass);
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.user", myUser);
        props.put("mail.smtp.password", myPass);
        javax.mail.internet.InternetAddress myInfo = null;
        String value = fromVar.getString().trim();
        java.util.regex.Pattern pattern = java.util.regex.Pattern.compile("(.+)?<(.+?)>");
        java.util.regex.Matcher matcher = pattern.matcher(value.trim());
        if (matcher.find()) {
          myInfo = new javax.mail.internet.InternetAddress(matcher.group(2),matcher.group(1));
        } else {
          myInfo = new javax.mail.internet.InternetAddress(fromVar.getString().trim());
        javax.mail.Session session = javax.mail.Session.getInstance(props, auth);
        javax.mail.internet.MimeMessage message = new javax.mail.internet.MimeMessage(session);
        message.setFrom(myInfo);
        if (toVar.getObject() instanceof java.util.List) {
          java.util.List<java.util.List> to = (java.util.List<java.util.List>) toVar.getObject();
          int currentAddressType;
          java.util.List currentList = null;
          for (int index = 0; index < to.size(); index++) {
            currentList = to.get(index);
            currentAddressType = Integer.parseInt(currentList.get(0).toString());
            javax.mail.internet.InternetAddress currentInternetAddress = new javax.mail.internet.InternetAddress(currentList.get(1).toString());
            javax.mail.Message.RecipientType currentRecipientType;
            if (currentAddressType == 1) {
              currentRecipientType = javax.mail.Message.RecipientType.TO;
            } else if (currentAddressType == 2) {
              currentRecipientType = javax.mail.Message.RecipientType.CC;
            } else {
              currentRecipientType = javax.mail.Message.RecipientType.BCC;
            message.addRecipient(currentRecipientType, currentInternetAddress);
        } else if (toVar.getObject() instanceof String) {
          ArrayList<String> listTo = (ArrayList<String>) Functions.stringToList(replaceAll(toVar.toString(), " ", ""), ",");
          for (int index = 0; index < listTo.size(); index++) {
            if ((listTo.get(index).toString() != null) && (listTo.get(index).toString() != "")) {
              javax.mail.internet.InternetAddress currentInternetAddress = new javax.mail.internet.InternetAddress(listTo.get(index).toString());
              message.addRecipient(javax.mail.Message.RecipientType.TO, currentInternetAddress);
        } else {
          return Variant.VARIANT_NULL;
        message.setSubject(subjectVar.getString());
        message.setContent(bodyVar.getString(), (html.getBoolean()) ? "text/html" : "text/plain");    
        javax.mail.Transport.send(message);
        return Variant.VARIANT_NULL;
      }

    The JavaMail FAQ has instructions for connecting to Hotmail, as well as simpler code that
    doesn't involve playing around with socket factories.
    Hotmail SMTP on port 587 is not an SSL connection, it's a plain text connection that
    requires use of the STARTTLS command.

  • After upgrading to firefox 3.6 I have problem with hotmail email service

    after upgrading to firefox 3.6.4 I have problem with hotmail email service, however I can login in hotmail, I can't open mails or delet or do anything else with them.
    == URL of affected sites ==
    http://hotmail.msn.com

    Thank you, but I already have "always show tabs bar" set.
    Also, I have two computers and the other is running the exact same version of Firefox, and the exact same theme, but it does not have this problem.
    To make sure I'm being clear: there is an "x" on each tab that allows me to close it when I have multiple tabs open. When I have only one tab open, there is no "x"; so in order to close the webpage I have to open another empty tab, and then close the first. My other computer has the "x" to close the tab visible even when there is only one tab so that I can close the page and have an empty (marked "(untitled)" tab). Please help!

  • Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox

    Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox browser.
    == URL of affected sites ==
    http://www.hotmail.com

    We've reached out to the Hotmail team and they've determined that this is a bug in their code. (It was masked by a timing issue in 3.5 that was fixed in 3.6.) We've worked with them to develop a fix but they may not have deployed it yet.

  • I have problem with hotmail on my macbook

    i have problem with hotmail on my macbook when i add my hotmail acc to mac mail the mail app got froze and closes by itself, when i try open it again it does the same thing till i remove it.

    i have problem with hotmail on my macbook when i add my hotmail acc to mac mail the mail app got froze and closes by itself, when i try open it again it does the same thing till i remove it.

  • I can get the signed to Hotmail but I can not read my mail. Sorry, there's a problem with Hotmail right now Hotmail wasn't able to complete this request. Microsoft may contact you about any issues you report.

    about 10 days ago started having trouble with Hotmail. Could isgn in but keep getting the following message.
    Sorry, there's a problem with Hotmail right now
    Hotmail wasn't able to complete this request. Microsoft may contact you about any issues you report.
    I can send mail and review my contacts but that is it.
    I then tried getting in with Internet Explorer and it works fine. I do not like IE because I have problems with some websites.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration 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.org/kb/Safe+Mode

  • I'm using firefox 6.0.2 It's making problem with Bangla font ONLY on FACEBOOK others bangli website FORNT SIZE are OK. On the FACEBOOK it shows Bangla font in a very / Too small! I change font SIZE in firefox setting but i can't solve. Pls HELP me

    I'm using firefox 6.0.2 It's making problem with Bangla font ONLY on FACEBOOK others bangli website FORNT SIZE are OK. On the FACEBOOK it shows Bangla font in a very / Too small! I change font SIZE in firefox setting but i can't solve. Pls HELP me ..

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Problem with hotmail calendar display

    Problems with hotmail calendar display.

    I am almost a total computer novice and am having what I think is the same problem  Just got my first Apple computer (Macbook Pro).  MSN Hotmail is my email account.  All the events on my 'hotmail' account are now unreadble because they are squished to the left side of the screen and I don't find any instructions as to how to fix this in the system. This problem didn't exist when I first started using my MAC two days ago, but now I'm stuck.  Everything else in my 'hotmail' seems to work fine.  Don't know what Chrome or Firefox is or if there is a cost for them.  Also, have never downloaded a program if any kind.
    My calendar is critically important to me and I don't have a clue as to what to do now.  Hope you can help.
    Thanks.  Linda

  • Palm treo 680 Problems with hotmail account

    I have a palm treo 680, have Problems with hotmail account, dont have configuration in versamail and when enter with the browser dont open documents, photos or videos. Thanks
    Post relates to: Treo 680 (Unlocked GSM)

    IIRC, Hotmail is like Yahoo's free email - you have to pay for POP access.
    If you aren't paying for a premium version of HotMail, it won't work correctly with VersaMail.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Niggly problem with Hotmail - Sending from a third party email address

    I need true push email on my BlackBerry, but also need access from a PC and need to send from my own email address. The easiest way I've found to do this is to forward all emails to my own address to a Hotmail address and use Hotmail as my main provider. Everything works as it should - I've got Windows Live Mail setup on my PC and all emails are sent to the BlackBerry the instant they're received. However, I've got a niggling problem with sending emails from the BlackBerry...
    On the Hotmail website, I've set my own email address as the default "From" address and in Windows Live Mail, I've set my email address as my own address. So, if I send email from the Hotmail site or from Windows Live Mail, my own email address is used as the "From" address and not the Hotmail address. If I send email from the BlackBerry, it uses the Hotmail address as the "From" address and not my own address. I've set my own email address as the "Reply To" address in BlackBerry Internet Service but it still shows the Hotmail address. I can't see anyway to change this and it's the only problem I have...
    I have tried the GoogleMail service, and this worked fine but every email I sent (either from Google Mail, Outlook or the BlackBerry) would copy itself to the BlackBerry and was getting a bit of a pain.
    I have also tried Yahoo Mail but this wouldn't allow me to send email from another email address.
    Any ideas from anyone? Either to allow emails sent from my BlackBerry to show my own email address as the "From" address, or to stop emails sent through Google Mail to copy themselves to the BlackBerry?

    clnock wrote:
    I need true push email on my BlackBerry, but also need access from a PC and need to send from my own email address. The easiest way I've found to do this is to forward all emails to my own address to a Hotmail address and use Hotmail as my main provider. Everything works as it should - I've got Windows Live Mail setup on my PC and all emails are sent to the BlackBerry the instant they're received. However, I've got a niggling problem with sending emails from the BlackBerry...
    On the Hotmail website, I've set my own email address as the default "From" address and in Windows Live Mail, I've set my email address as my own address. So, if I send email from the Hotmail site or from Windows Live Mail, my own email address is used as the "From" address and not the Hotmail address. If I send email from the BlackBerry, it uses the Hotmail address as the "From" address and not my own address. I've set my own email address as the "Reply To" address in BlackBerry Internet Service but it still shows the Hotmail address. I can't see anyway to change this and it's the only problem I have...
    I have tried the GoogleMail service, and this worked fine but every email I sent (either from Google Mail, Outlook or the BlackBerry) would copy itself to the BlackBerry and was getting a bit of a pain.
    I have also tried Yahoo Mail but this wouldn't allow me to send email from another email address.
    Any ideas from anyone? Either to allow emails sent from my BlackBerry to show my own email address as the "From" address, or to stop emails sent through Google Mail to copy themselves to the BlackBerry?
    Hi,
    I've had this sent items in my inbox, problem with Gmail.  You can add a filter from the settings page of your gmail account.  The filter should be applied to all emails from your email address [[email protected]] and skip the Inbox should be selected.
    Have you tested the "Reply to" option properly?  Send a mail from your BB to a friend and ask them to hit the reply  button, see which account it goes to.
    ===========================================================
    If I've helped, please click the Kudos button.
    If your issue has been resolved, please mark it as solved.
    Joe
    ===========================================================

  • When I use Firefox and Hotmail at startup, Firefox freezes for about 1 minute, and then I can continue. First I though it was my computer but 2 other girls in my class have the same problem with Hotmail and Firefox. What can I do to change this?

    When I start Firefox, about 15 seconds after I start it, my Firefox freezes for about 1 minute. I found out that it is my Hotmail that makes Firefox freeze.
    First I thought it was my computer, but I have 2 other girls in my class that use Hotmail and Firefox and their computer also freezes for 1 full minute.
    This is very annoying, what can I do to change this?
    xxx ellen
    p.s. I am from the Netherlands, maybe that has something to do with it?

    Try deleting cookies and cache:
    1. Tools| Clear recent history
    2. Time range to clear: Everything
    3. If it isn't already selected, select '''Cookies''' and '''Cache'''
    4. '''Clear now'''
    '''Check cookie exceptions'''
    1. Tools | Options | Privacy Panel
    2. Set '''Firefox will: Use custom settings for history.''' '''Insure Accept cookies for sites and accept third-party cookies''' is selected
    3. Click '''Exceptions'''. If the misbehaving site is in that list, select it and click '''Remove site'''
    '''Safe Mode'''
    Add-ons can cause problems with not being able to log into certain websites. To see if this is the case with your issue, run [[Safe mode]]. When you get to the safe mode window, select Continue in Safe Mode. If this resolves your problem, see [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    Also see [[Updating Firefox]] and [[Cannot log in to websites]]

  • Problem with TV out, only audio, no video

    I has just bought a new ipod video 30GB and I also bought a A/V cable
    of apple. But when I connect to my television. Only hear audio from
    television but no video.
    I tried a lot of ways as folows:
    + video setting : changed TV out --> ON
    + I tried restone ipod to factory condition
    + I tried to change the position of 3 connectors (Yellow,Red, Whitle)
    of A/V cable (according to standard, Yellow is video connector).
    + I tried some tips from Discussion Techniques from Apple Forum
    But I still can't see video, just hear audio from Television.
    What's problem?
    I think Ipod only send the audio signal, not video signal.
    Can you help me to solve this problem?
    Thank you very much.

    As well I had the same problem with my i-pod and the one of my wife. The solution was simple:
    config: i-pod 60Gb; i-pod 30Gb
    cable: no name audio/video A/V cable
    TV-out: select ask (not on!!!)
    cable into TV: white on white
    yellow on red
    red on yellow
    There are no problems with bad video quality if volume is high, just working fine
    What may be the problem: I think, the automatic detect (if you put your setting for TV-out on your i-pod to on) is not working. As well as using only headphones there must be an electronic cirquit detection; means with no Apple stuff just not working. As well there are the yellow and red cable changed; means white and yellow have audio; red video.
    Working so for video and diashow on my pod each time I´ve to select TV-Out manually starting video or Dia Show. In that moment both applications are starting in small windows, not in Full Screen mode on the pod.
    The order to connect TV or i-pod doesn´t matter; it´s just the manual setting the i-pod for TV-out.
    I hope, the info can help you.
    i-pod 60Gb   Windows XP Pro  

  • Problems with hotmail account

    I ser uo my hotmail account as soon as I bougth the table earlier this year. A few months ago it starting to show"cannot connect to server". I thought for a while it was problems with the wifi connection. I contacted sony chat and was I told that I had to change the incoming server to debug hotmail. I followed the directions but no luck I deleted my account to reset it and cannot connect it back. It tells me: ™couldnt open connection to server". Please help! Im travelling overseas in a couple of days and dont want to carry laptop. Just need my tablet to work! Will appreciate any advice, Thx!
    Solved!
    Go to Solution.

    Hello Mariquita,
    Welcome to the Sony community forums.
    Connection problems with a Microsoft® Hotmail account are not unique to the Sony Tablet or the Email application. Follow these steps to adjust the Hotmail account server settings to help avoid these connection problems.
    There are connection problems with a Hotmail account using the Email application.

  • C7: problem with hotmail account

    I am using the Nokia C7 and since one week hotmail no longer works. I tried first a reset (removed even battery to be sure), uninstalled the mailbox and when I try to re-install it I receive the message that the service is not available. Although via internet I see that mail are entering. I saw a thread saying that during the installation you need to choose decline on the Nokia agreements but I do not get that option.
    Before you ask. I haven't installed anything on my device nor linked to my computer for a long while so the device and its settings did not change but the behaviour of the email widget did....
    What can I do?

    Mine's working now too!
    Deleted and re-added the account again and the messages started flowing.
    We were not alone, see this in the Messaging section:
    /t5/Messaging-Email-and-Browsing/Problems-with-mail-app-on-c7/td-p/1117575
    C7-00 - Ver 022.014

  • Mail has intermittent keychain password problems with Hotmail account

    Most of the time Mail can access both my Me mail and Hotmail. However, since I moved from Tiger to Leopard Mail loses access to my Hotmail password and asks for it to be reentered to check for mail. If I don't do this I get the usual problem lightning bolt icon by mt Hotmail in-box in Mail. But when I click this and recheck for mail manually it works fine every time.
    Is mail just not accessing my key-chain when it isn't the active application I'm running?

    This is a common report with Hotmail accounts, but currently mine is staying connected. I think the prompt actually results from the checking the connection on the SMTP, rather than the Incoming Server, but not sure in every case. I have seen the problem in Mail 2.x, 3.x and 4.x. If it goes into a period of frequently giving the prompt, I change to exclude the account from auto checking for new mail, and then manually check for new messages.
    That mine is currently working may be due to my changing the SMTP to that of my ISP rather than the one from Hotmail.
    Ernie

Maybe you are looking for

  • Date field not working like a date field

    We have quite a few date objects in the Universe but only some seem to function as a date field whereas some do not. The easiest way to tell whether a date field is functioning as a date field seems to be to add the date fields as a filter in a query

  • PDF not displayed in Firefox 2.0 because of a popup

    Hello, we use NetWeaver 2004s SP9 and WebDynpro for ABAP 2004s SP 9. In case of using Browser Firefox 2.0, we detected a problem with popups and Adobe Interactive Forms Integration. The problem - described in a simplified form - occurs as follows: Th

  • Dynamic reverse context node mapping at runtime

    Hi! I have an application which uses another embedded component containing a ALV table which shows the data of a transparent table. Everything works fine if i'm working with a static table with static attributes and map the context node of the applic

  • Low cpu, loud fans

    hi, since a few months my macbook pro has became very noisy, i got only to bars in the activity monitor, but the fans run around 4500 rpm. i tried creating a new user account, and the problem still persists. even in target disk mode the fans run cons

  • Unlimited calls to a country/region of your choice

    Hello I just got skype premium and it says I get unlimited calls to a country/region of my choice. I chose hong kong but then it asked me for $$ and I don't want to give them my $$. So How do I do it (live chat support isnt working). Thanks