Unable to read emails

Hello,
I have problems with E63. I have configured my gmail on this phone and I am able to connect and download emails. But I am not able to open any of the emails which were retrieved.
I have tried the following steps but didn't help.
1) Reconfigure gmail
2) Performed master reset on my phone
Please let me know if I need to do anything else to get this problem sorted. Also, the phone just restarts when I try to change frequency on the internet radio.
Thanks for the help.
Regards,
Nara

POETED BY DAN H. in my other thread regarding the home screen icon not updating. That problem was fixed as well as this (http://discussions.apple.com/thread.jspa?threadID=1354397):
New info:
This irritating bug kept coming and going, but this morning I discovered what may have been causing it.
There was an old gMail POP account on my phone that got auto-converted to IMAP when I upgraded to 1.1.3. But it was shut off in Mail prefs because I never used it, so I figured it would have no influence on an active account and forgot all about it.
All of my attempted fixes were focused on the active gMail IMAP account.
Well, apparently OFF is not really off on the iPhone (sigh). Deleting the rogue account fixed three things: gMail IMAP is now FAST; stubborn messages that sometimes refused to fully load don't hang any more; the Home screen unread messages flag works properly.
-dan

Similar Messages

  • Unable to read email on iphone4

    For the past few days I have been unable to read my email messages on my iphone.
    New messages are displayed, along with the preview, but when I click on a message I am unable to read it on my phone.
    Does anyone know what this might be caused by?

    I have been having the same problem for the last two days. Co-worker of mine had the same problem and recommended deleting and re-registering accounts all over again. Unfortunately, it didnt help. Hopefully someone knows how to fix this.

  • TS3899 Unable to read emails on iPhone.

    I have internet access and everything works fine on my iPhone except that when I click on the mail icon, after a few seconds it turns blank and takes me back to the home page on my iPhone. I turned the power off twice and the problem continues and I am unable to read any of my emails on my iPhone.

    Hi cblira!
    Here is an article with some tips about troubleshooting the mail app:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    If the steps in that article do not resolve the issue, you may need to restore your device:
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/ht1414
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Unable to read email

    I am unable to read most of my email especially my pictures, this is the ERROR: This item cannot be displayed in the reading pane.  The item has not been received from the server.
    After 2 or 3 minutes some will "unlock" so I can read it or some will just disappear or never open.
    Can anyone help me?  My job depends on my email.
    Thank you,
    [Edited for privacy-please do not post personal or unique information such as but not limited to full names, employee ID numbers, email addresses, phone numbers, account numbers, etc.]

    Hi pedrochin, email client: if I understand the question..AT&T thus: sbcglobal.net my email address device: my pc connected to: AT&T uverse did this answer your questions? Thank you for asking, I do hope you can help...sj

  • Adobe unable to read email attachment

    I want to know how to get adobe to read my email attachment.  Adobe reader says it is either not a supported file type, or that the file has been damaged.  What do I do?

    Hi Pat.  The one that is opening is an email opening in wordpad or docx.  The other three don't seem to open right away.  I have to go through adobe.  They are doc.  All four from a distance appear to be microsoft word documents.  I don't understand about the file association being correct or not.  They all look similar, but apparently one is different and opens while the other word documents do not.

  • Unable to read email content of type multipart/mixed....

    Hi i have written following code to read text content form the multipart email content type,
    but when i say
    if (content instanceof Multipart){
    System.out.println("############ Content Type is Multipart ############ ");
    messagePart = ((Multipart) content).getBodyPart(0);
    }the flow is not going into the if condition,
    bellow is the detailed code and the output in the console, you can check with the SOPs
    Part messagePart = message;
    content = messagePart.getContent();
    System.out.println("############ : " + content);
    System.out.println("############ START MESSAGE BODY ############");
    System.out.println(content);
    System.out.println("############ END MESSAGE BODY ############");
    if (content instanceof Multipart){
         System.out.println("############ Content Type is Multipart ############ ");
         messagePart = ((Multipart) content).getBodyPart(0);
    String contentType = messagePart.getContentType();
    System.out.println("############ CONTENT TYPE     : " + contentType);
    System.out.println("############ CONTENT TYPE     : " + contentType);
    if (contentType.startsWith("text/plain")) {
         System.out.println("############ Content Type is text/plain ############");
         InputStream is = messagePart.getInputStream();
         BufferedReader reader = new BufferedReader(new InputStreamReader(is));
         String thisLine = reader.readLine();
         while (thisLine != null) {
              actualMsg = actualMsg + thisLine + ".";
              thisLine = reader.readLine();
    System.out.println("############ SMS CONTENT      :" + actualMsg);
    System.out.println("/**********************Passing to E2SConverter********************/");
    And the output for the same
    Stack Trace*** Check for new mails on Mail Server for Processing ***
    ########## Unread Msg Count      : 1
    ########## FROM           : [email protected]
    ########## SUBJECT           : RE: SMS-5000-9969413222-S1221654991804 [T20080917000CS010Z246]
    **************** Checking Subject Line ****************
    ******* GO AHEAD IS TRUE : EMAIL TO SMS CONVERTER *******
    ############ : javax.mail.internet.MimeMultipart@1a2760f
    ############ START MESSAGE BODY ############
    javax.mail.internet.MimeMultipart@1a2760f
    ############ END MESSAGE BODY ############
    ############ CONTENT TYPE     : multipart/mixed; boundary=22902610.1221655198503.JavaMail.javamailuser.localhost
    ############ SMS CONTENT      :
    /**********************Passing to E2SConverter********************/
    Please help me for the same.. its bit urgent...
    Thanks And Regards,
    Amie...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Yes,
    It's going into the if if block, but its giving me ClassCastException
    System.out.println("******* GO AHEAD IS TRUE : EMAIL TO SMS CONVERTER ******* ");
    Part messagePart = message;
    content = messagePart.getContent();
    System.out.println("############ : " + content);
    System.out.println("############ START MESSAGE BODY ############");
    System.out.println(content);
    System.out.println("############ END MESSAGE BODY ############");
    if (messagePart.isMimeType("multipart/*")) {
                   System.out.println("############ Content Type is Multipart ############ ");
                   messagePart = ((Multipart) content).getBodyPart(0); //GIVES EXCEPTION : ClassCastException at this line...
    String contentType = messagePart.getContentType();
    System.out.println("############ CONTENT TYPE     : " + contentType);
    See the Stack Trace..TAconnVect.size()25
    *** Check for new mails on Mail Server for Processing ***
    ########## Unread Msg Count      : 2
    ########## FROM           : [email protected]
    ########## SUBJECT           : SMS-5000-9969413222-S1221713640885 [T200809180003S070]
    ########## FROM           : [email protected]
    ########## SUBJECT           : SMS-5000-9969413222-S1221713740897 [T200809180004S070]
    **************** Checking Subject Line ****************
    ******* GO AHEAD IS TRUE : EMAIL TO SMS CONVERTER *******
    ############ : javax.mail.internet.MimeMultipart@1f7be7b
    ############ START MESSAGE BODY ############
    javax.mail.internet.MimeMultipart@1f7be7b
    ############ END MESSAGE BODY ############
    ############ Content Type is Multipart ############
    java.lang.ClassCastException: javax.mail.internet.MimeMultipart
         at com.interactcrm.SMSConverterClass.PollEmail.CheckEmails(PollEmail.java:327)
         at com.interactcrm.SMSConverterClass.PollEmail.run(PollEmail.java:98)
         at java.util.TimerThread.mainLoop(Unknown Source)
         at java.util.TimerThread.run(Unknown Source)
    - INFO : readMessage Checking for new messages in inbound table of ta database
    TAconnVect.size()25
    TAconnVect.size()25
    and Bellow is the internet header of the mail which i am trying to read.Received: from grameenphone.com ([10.10.29.153]) by neptune.grameenphone.com with Microsoft SMTPSVC(6.0.3790.3959);
         Thu, 18 Sep 2008 10:55:52 +0600
    Date: Thu, 18 Sep 2008 04:55:52 GMT
    From: [email protected]
    Subject: =?us-ascii?B?U01TLTUwMDAtOTk2OTQxMzIyMi1TMTIyMTcxMzc0MDg5NyBbVDIwMDgwOTE4MDAwNFMwNzBd?=
    To: [email protected]
    MIME-Version: 1.0
    Content-Type: multipart/mixed; boundary="20238918.1221131600666.JavaMail.SYSTEM.ipcc-test3"
    Return-Path: [email protected]
    Message-ID: <[email protected]>
    X-OriginalArrivalTime: 18 Sep 2008 04:55:52.0114 (UTC) FILETIME=[D35D2120:01C9194A]
    Edited by: Amie on Sep 18, 2008 10:29 AM
    Edited by: Amie on Sep 18, 2008 10:36 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Able to log into Hotmail but unable to read emails

    Hey all!
    So basically, what's happening is that I'm able to log into my hotmail account and see the inbox and all, but I can't click on my emails to read them. It's really frustrating cos I've tried using Firefox and another computer, but neither works! Please help me I'm kind of desperate!

    if you r desperate, get a gmail account and have it send and receive messages as your hotmail account. to anyone who you send an email to, it will seem like you are still using hotmail.

  • Recently I am unable to read emails in Hotmail. Why and can it be fixed?

    I have a laptop with windows vista. I can sign into hotmail, but I cannot open any emails. It will work in internet explorer, but not firefox.

    If your outgoing mail server was too slow in responding, then Mail may have deselected it assuming it was incorrect.  This happens sometimes with the servers if there is an issue at their end.

  • Unable to read emails on my mobile

    Hi all new on here, i have a question about the BT Yahoo app on my mobile phone.
    Since the update of  BT mail i have not been able to log onto the web site to view my emails on my phone, when i openthe app it asks for email address and password then it says that i need to update settings from a desktop at yahoo.com.
    I've looked on there but can't find what to update.
    Any ideas please.
    Samsung Galaxy S5, worked fine before changes to bt mail.
    Thanks Simon.
    Solved!
    Go to Solution.

    If you go to the "PlayStore" app on your phone and search for "Aquamail" app, download it and it will install. You then need to set it up.
    To set up the default email app see this link
     http://www.samsung.com/us/support/supportOwnersHowToGuidePopup.do?howto_guide_seq=7328&prd_ia_cd=N00...
    You will need to use the settings in this link
    http://bt.custhelp.com/app/answers/detail/a_id/44917/~/bt-email%3A-what-are-the-settings-for-outgoin...

  • Unable to read email with mozilla firefox. The online graphics are missing and the links are unable to be accessed when I try to click on them

    Having issues with being able to assess my email on Mozilla Firefox. When I sign in, the graphics are missing. Once I'm logged in, the inbox is not there. Some thing is wrong graphically. There are work links for inbox and contacts, but they are all flushed to the left of the screen. When I attempt to click on them, nothing happens. I have tried to remove Firefox and then reinstall it but the same thing happens. I also attempted to reset firefox to its default state and that did not work either. I check plug ins and most are up to date. However, not clear for window presentation foundation is and if it was necessary to have. The plug in state was unknown. Please advise on what to do? Thanks!

    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Why are some of my emails coming in with lines all bunched together on top of each other, unable to read?

    WHy are some of my emails coming in with the text body all bunched together on top of one another unable to read?

    Are that bookmarks that you have imported from another browser?
    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Torch - Unable to read content of email

    Not sure what happened - I was receiving email fine, able to open email and read them.
    Now I am unable to read the content of the email. Page remains blank.
    Can anyone help me resolve this problem?
    Thanks

    Hi and Welcome to the Forums!
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Best!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Unable to read excel attachment received thru email using function module ?

    Hi...
    I am using the function module 'SO_DOCUMENT_SEND_API1' to send an email attachement in EXCEL format.
    The email is getting received along with the attachment, but when i try to open the excel file, i am getting an error stating "Unable to Read File"......
    What could be the reason behind this error.......
    Plz Help......

    Hi,
    Firstly, convert Excel Format with FM: SAP_CONVERT_TO_TXT_FORMAT ,
    " Format convert(Excel content)
      CALL FUNCTION 'SAP_CONVERT_TO_TXT_FORMAT'
        EXPORTING
          I_LINE_HEADER        =  'X'
        TABLES
          I_TAB_SAP_DATA      = GIT_DATA                     "Before convert
        CHANGING
          I_TAB_CONVERTED_DATA = GIT_EXCEL           "After convert
      LOOP AT GIT_EXCEL INTO LFC_STMP.
        LI_ITMP = STRLEN( LFC_STMP ).
        LFC_STMP+LI_ITMP = CL_ABAP_CHAR_UTILITIES=>CR_LF.
        MODIFY GIT_EXCEL FROM LFC_STMP.
      ENDLOOP.
    Then, send Email with .xls attachment via FM: SO_DOCUMENT_SEND_API1.
    Best Regards
    Lily

  • TS3899 I can't verify my hotmail account ? Which leads to me being unable to read/ receive my emails ?

    I can't verify my hotmail account ? Which leads me being unable to read/receive my emails ?

    How is being unable to verify your hotmail account, which is a Microsoft Service, relevant to these forums. If you can't verify your account information with Microsoft, that's something you need to take up with them.

  • Blackberry unable to read secure email (lotus)

    Hi,
    Currently i facing an issue to read an secure email in blackberry handheld.
    I am able to read secure email send by external. (envelope with key icon).
    If internal user send a secure email thru lotus notes client, i will unable to read the email content from blackberry handheld.
    It show one attachment - smime.p7m. (do not have envelop with key icon).
    Besides, if i reply an email send from internally, i will unable to send a secure email. It show unable to find user certificate. I have to retype recipient email address. (it is because when i click on reply - recipient show lotus notes hieractical name and not email address.)
    I have try on microsoft exchange - the above issue do not happen.
    Can anyone help?
    Thanks
    Best Regards,
    Stanley

    Hi and welcome to the forums!
    Try BES Security Tech overview
    Page 30 I think is relevant
    Thanks,
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

Maybe you are looking for

  • Why does "itunes accounts" use data with all settings OFF?

    Does anyone know how to keep "iTunes accounts" under system from using cellular data? I have already: 1. Toggled OFF all settings in the "Use cellular data for" menu. 2. Turned OFF all automatic downloads and any other options under iTunes/app store

  • How to find internet plugins on MAC OS X 10.9.2.?

    How do I find the internet plugins on Macbook Pro running OS X 10.9.2?  I am looking for a speed download browser plugin.

  • Windows Xp Home Edition/SP1a problem

    I'm having a very serious problem. I am a user of a pc at home, not a business. I cannot enable Java. The download package installed and the Java Console settings are as recommended in the Help section. I have tried every suggestion and procedure wit

  • Simple shell script utility to copy abs tree for build

    Hi,     I'm learning shell script and decided to make a simple script to copy the folder i want from /var/abs to     a new folder so i can build the package. here it is: (remember, i'm new to shell scripting, if you know a better way to do it, you ca

  • Weird Sky Hub Log Entries

    Hello all, I'm after a bit of assistance with some log entries I am seeing. I have a couple of devices on the other side of my Sky Router, and have opened Telnet and SSH ports on the router so that I can access these devices externally. This works fi