Email setup is not working

I have recently gone through a new update and now I cannot access my email accounts to change my passwords. I am required to change my passwords every 90 days so I am familiar with the process and since the update I ran on Friday May 27th, I can go to "setup", and select "Email Accounts", and then it just tells me that "Updates are ready for your device." I am able to select either "yes" or "no", but either option takes me back to the "setup" menu. Is there a way I can uninstall the most recent update, or is there a way to fix this issue?

Backup your device data, then go through the following clean application load: http://bbry.lv/cKy9A0 Once this is complete, try accessing the Email Setup and configure your email accounts. If this works with no issue, I suggest restoring your data then test your email accounts to make sure they still work with no issue.

Similar Messages

  • Office Jet Pro 8600 Plus Scan to Email Setup, website not working.

    When setting up scan to email. 
    The first question is: Is the HP software provided with the printer installed on the network-connected computer?
    The answer should be yes, but we can't follow the steps of opening up the software on the computer and acessing scanner options like the printer tells us to. 
    Anyway, in the past I have set up a two users by selecting "No" to this question then it provies me with a website to enter in:
    http://192.168.5.158
    This is the current address it is giving me. This has worked for me in the past and have had no issues setting it up this way. But now (after my employer changed my email address) my scan to email is no longer working and I am trying to set it up again with my new email. 
    Every time I type in the given address: http//192.168.5.158 I receive an error message. 
    [Fiddler] The socket connection to 192.168.5.158 failed.
    ErrorCode: 10060.
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.5.158:80
    I had found a forum that had supposedly been a solution where they said to remove web services on the printer and re-set it up, this did not work at all. Still can't set up a scan to email. I just want to use the site given like I normally do, and set it up that way, I need help as SOON as possible please

    Hello rachelhuver,
    Welcome to the HP Support Forums!
    Regarding the issue connecting to the Officejet Pro 8600 Plus's Embedded Web Server to change the Email used for Scan to Email, I would like to see if I can help.
    If you touch the Wireless icon on the printer, is the I.P address the same as you noted in your post? If not, use that I.P in an attempt to access the needed page.
    If you are still unable to load the page, try using a different web browser on the computer. For example, if using IE, try Firefox.
    If you are still unable, it would appear to me that the network is blocking this page from you. You can get around this by connecting temporarily to the printers Wireless Direct network. To connect to this;
    Touch Setup
    Network
    Wireless Direct
    On with no security (I suggest)
    Connect the computer to the printer's network, ie HP-Print-**-Officejet 8600 series.
    Open a web browser (don't worry if you get a message about no Internet), enter this I.P: 192.168.223.1 and hit Enter.
    You should now be able to access the Embedded Web Server of the printer, make your changes and apply them.
    Hope this helps,
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Blackberry 9870 Email Account Setup Wizard not working

    i have Balckberry 9870 and I am trying to setup an email account, but into setup wizard, E-mail setup wizard not working. please help

    pankajmaniyar wrote:
    Thanks Ira :-) I will try to reload the operating software and than see, if the problem resolved or not.
    Before you reload your OS I suggest you call your carrier first. This could be an issue on their end, it may be caused if your carrier  has not correctly provisioned the BlackBerry smartphone for BlackBerry data services.
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • TS3276 My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    Sorry for the delay...
    I did what you've told me, new account and manually copied my files from Time Machine. I had lots of permissions problems, but at the end, almost everything is in order... It seems it had to be with some of the Apple Preferences, but I can't be sure, as most of them were dumped to the trash can.
    I still don't have my Mail Rules back, unfortunately, although I did goggled some. It is a pity, as I had around 30 or 40 of them, getting my mail in order to each of its mailboxes, but it is a small price as the rest doesn't show the before syntoms.
    Thanks for the help, anyway!!

  • Multiple recipient email addresses is not working  for xsl & PDF Attachment

    multiple recipient email addresses is not working properly when
    to list has some external email address and sending xls and PDF file as an attachment.
    Test Scenario:
    (A) Create mail target activity
    1)To email : use the multiple email id with some external domain (ex.
    [email protected] ,[email protected], [email protected])
    2)File attachment with .xls file and this file is sending to mail target as an inputstream(at runtime)
    3)Use all other valid parameter in activity.
    (B) Create a process flow File source to mail target
    Execute the process flow.
    Actual Result: Mail is received by every email account. Only external email account get correct file but other email account(as ([email protected])) attachment files
    displaying message
    �abc.xls� can not be accessed. The file may be read-only, Or you may be
    trying to access a read only location. Or, the server the document is stored on
    may not be responding.�
    When i trying to open xls and PDF file
    Expected Result:
    All type of file attachments should be supported with all valid email address
    (servers).
    Pls help me about this senario:
    What is problem in this case:
    I am sending code
    Session session =getSession(host,port,secure);
    session.setDebug(this._debug);
                   Transport trans = connect(host,port,session,userID,password);
                   Message message = new MimeMessage(session);
                   InternetAddress[] iAddr = null;
                   message.setFrom(new InternetAddress(fromName));
                   iAddr = InternetAddress.parse(toUserName, true);
                   message.setRecipients(Message.RecipientType.TO, iAddr);
                   message.setSubject(subject);
                   //BodyPart messageBodyPart = new MimeBodyPart();
                   Multipart multipart = new MimeMultipart();
                   MimeBodyPart messageBodyPart=null;
    if(dataLocation!=null && dataLocation.equalsIgnoreCase("ATTACHMENT")){
                        String tmpName=fileName;
                        if( inputstream != null)
                                  tmpName = makeAttachment(fileName,inputstream);
                        messageBodyPart = new MimeBodyPart();
                        DataSource source = new FileDataSource(tmpName);
                        messageBodyPart.setDataHandler(new DataHandler(source));
                        fileName = fileName.replace('\\', '/');
                        fileName = fileName.substring(fileName.lastIndexOf('/') + 1,
                                  fileName.length());
                        messageBodyPart.setFileName(fileName);
                        multipart.addBodyPart(messageBodyPart);

    First, when sending your message, the filename should be a simple
    filename, not containing any directory names.
    It sounds like your mail server might be doing some special
    processing of attachments, perhaps to prevent viruses.

  • Just bot to conver to Word.  All I get is invite to purchase again.  email links DO NOT WORK!

    HOW DO I GET STARTED?  I JUST BOUGHT TO CONVERT PDF TO WORD.  ALL I GET IS INVITE TO PURCHASE AGAIN.  EMAIL LINKS DO NOT WORK!

    Reply from Keygames.
    Hi David,
    It is a problem with the website. We are working on a solution.
    Best is to go to http://spele.nl for the time being.
    Best regards,
    Lorenzo
    Date: Sun, 17 Nov 2013 01:43:55 -0800
    From: [email protected]
    To: [email protected]
    Subject: Unable to play flash games. All I get is a white box. Does anyone have a solution?
        Re: Unable to play flash games. All I get is a white box. Does anyone have a solution?
        created by Pat Willener in Installing Flash Player - View the full discussion

  • TS3212 itunes64 setup does not work, how do i download itunes32 setup?

    itunes64 setup does not work, how do i download itunes32 setup?

    Some older scanners don't support presets. If this is the case, you can try this workaround as taken from this technical note Error: Bad Parameter | Acrobat.
    In the Configure Presets dialog, choose the scanner attached to your computer from the Scanner pop-up menu.
      From the File menu, choose Create > PDF from Scanner > Configure Presets.  
      In the Configure Presets dialog, click the pop-up menu to the right of the Scanner field and choose the scanner connected to your computer.
      Click OK, and then choose Create > PDF From Scanner.

  • HI,Have 10.10.3 version email system does not work at all it display emails up to the installation of the new version, no incoming or outgoing emails

    HI,
    Have 10.10.3 imac version- email system does not work at all it display emails up to the installation of the new version, no incoming or outgoing emails

    That helped thanks-
    I was able to solve this by deleting all "Envelop Index*"- and "ExternalUpdates*"-files in ~/Library/Mail/v2/MailData. After that I restarted Mail and let it reindex all mailboxes.

  • HT6114 my audio midi setup is not working correctly since the install of maverick os

    my audio midi setup is not working correctly since the install of maverick os

    The upgrade may have reset to default settings ..
    Check System Preferences > Sounds > Output
    Make sure the correct device is selected and the Mute box is not checked.

  • Adobe setup did not worked

    Hello,
    Every time i try to install the last patch for photoshop cs4 11.0.2 (windows vista 32)  I am always having a "Adobe setup did not worked".
    The same problem happened for InDesign (6.0.()  and After Effects (patch 9.0.3).
    It's really driving me crazy.
    Anyone can help me ?
    JJ

    Nothing you can do short of a full reinstall of all CS4. Your caps.db got locked due to a flakey update of another app and market some files as non-replacable, thus the updater fails. Read this and this, if you feel like reinstalling...
    Mylenium

  • Email and BBM not working

    Hi,
    My email services and Blackberry messenger are still not working, despite the fact that the disruptions of last week have apparently been fixed. However, I am able to access the internet.
    On the setup menu it says that there are two email accounts, but when I click on it, it says that there are no activated accounts and there is only the option for enterprise activation. The Blackberry and 3G sign at the top of the screen are present and in capitals. I have tried pulling out the battery and rebooting. I have re-registered with the host routing table. I have also called my carrier (t-mobile), who have said it is not a problem with them.
    It's been over a week now that my phone hasn't been functioning properly. Can someone please help?
    Thanks

    Hi and Welcome to the Community!!
    I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    2) Delete and Resend Service Books
    KB05000Delete the service book for the BlackBerry Internet Service email account from the BlackBerry smartphone
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    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.
    Hopefully that will get things going again for you! But, I am distressed by one thing...
    s-k wrote:
    I have also called my carrier (t-mobile), who have said it is not a problem with them.
    For them to successfully fob you off that way is, IMHO, inexcusable. Regardless of where the root of the problem is (e.g., the RIM network or the carrier network), your carrier remains responsible for ALL of your services and support. After all, you pay them every month for your services...they are not delivering those services. Only they have the ability to seek for you any support from RIM...you have no direct channel to RIM...only via escalation from TM can you get support from RIM. It is so sad that so many CSR's at carriers are responding like this and fobbing their paying customers off. I encourage you to ring them back up and impress upon them that your service and support contract is with them...and they are responsible for providing that support and service, including escalation into RIM if necessary.
    Good luck!
    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

  • Email notifications are not working anymore

    Hi guys,
    I use Grid Control 10.2.0.2 on Windows, and email notifications for critical alerts are not working anymore.
    I didn't change anything to the OMS configuration, it just stopped one day, and when I ask for a test email (in "Setup -> Notifications methods" of in "Preferences") it is successfully delivered.
    I didn't find anything related to this in log files, and nothing that could help here or on metalink.
    Can anyone help about that weird issue ??
    thanks in advance
    Antoine

    Have you gone back over your notification rules?
    have you tried just creating a new notification rule and testing it?
    Also take a look at Note:356774.1. If you've applied any patches (or done partition maintenance) you may have inadvertently lost all your jobs, which will break the email notications.
    If still no joy, then try Note:285093.1.
    let us know how you get on.

  • Email notification mail not working in case of customer repository

    Hi Experts,
    We have the system MDM 7.1 SP06, we are not able to get the email notification for customer repository. For other repositories like material & vendor mails are working fine. I Have checked the following steps.
    1) Added notification step to the workflow between processes.
    2) Verified the email addresses of the workflow owner and the receiver of the notification.
    3) Verified that the mds.ini has the "MailServer=" setup to the right smtp.
    I have check in workflow history, it is showing notify step but not showing details of mail like send to, mail body. While in case of material repository, it was showing complete details like send to, mail body & all.
    Previously mails for customers were working fine. Kindly suggest the solution.
    Regards,
    Gaurang

    Hi Gaurang,
    Are the time parameter same for all the repositories?
    Create a dummy user and dummy workflow,and try to send mail from that workflow.
    If this works with some id then check with the Admin id which you are using.
    This way you can eliminate the possibility of id not working.Also it will tell you that user is corrupt or not.
    Check for log and traces,kindly provide with the post here.
    Thanks,
    Ravi

  • "Email for Nokia" Not Working Properly after Firmw...

    The "Email for Nokia – 10 Accounts" also called Nokia Messaging does not work after firmware upgrade. 
    I upgraded my E63 firmware from 400.21.13 to 410.21.10 (the latest).   After upgrade, I installed the Email software, ver 9.07(2), from Ovi store.  The problem starts after I entered my email address and password.  The software imported the email account to the Communication --> Messaging  folder (where you used to read your text message). Before upgrading, the email software manages all my email accouts and synchronise up to 10 emails.  Now that nice email software and user friendly interface no longer show up.  Instead it uses that poor design Communication --> Messaging folder.  It only allows maximum 2 email acct. auto retrieval and NOT working with yahoo mail.  
    Please advise how can I get eh Nokia email works again.  thanks

    Very upset with Nokia's tech support service, taking so long not calling back after contacting them.  Finally I found a work around.  After reinstall the email software, setup a new email account never used with Nokia email before.  Then the software will setup correctly instead using the messaging folder.  This is a bug with the Nokia email software and the new firmware.    OR the Nokia email software is intended to do it that way because it's a trial version.  It just let you try it for the first time of installation. 

  • Email Setup Icon not responding

    Its been very frustrating.
    The Internet Email Setup option in Setup of my bb torch 9800 is not responding. I have tried rebooting, wipeout, reinstall of OS, couple of times, but nothing works. And when i try exiting the setup, the phone freezes. I have read many of users facing similar problem, but seems like RIM is in NO mood to resolve this one so guess i can call my smartphone a DUMBphone instead or is there any resolution to this?
    Solved!
    Go to Solution.

    This issue actually does have a resolution. Follow the link below and follow the workaroud at the bottom. This issue normally occurs when you have to do a wireless update of your email client through your carrier. You will have to get in touch with your carrier to find out their <brand> though. Also make sure that EmailClient has the E and M capitalized.
    KB26055- Unable to access Email Setup after automatic update

Maybe you are looking for

  • Missing texts in WEB with F4-help combined with variable input.

    I've defined a characteristic with text : short text, medium length text and long text. The texts are language independent. I've defined a variable for this characteristic and I've defined a BEX-report that provides a variable-filter for this charact

  • Reg WebDynpro for Java

    Hi, iam not sure that this is the right forum to raise a query. if this is not the right forum please suggest me with the forum name,if this is the right forum then, Can any one please send or post some FAQs for Java WebdynPro. Thanks, MS

  • BC4J application causes DB locks with iAS 1.0.2.2

    Hi, We've deployed a BC4J JSP application to iAS. After a few (not more then 5!!) requests, the application seems to hang. At first, we thought it was iAS that didn't respond, but after a while we noticed DB sessions with a lockwait. We configured th

  • Add event cases to an event structure using scripting

    Hello, Iam trying to (using scripting) update an event structure (add event cases) on a vi that is not on memory. i get error 1054 The specified object was not found. here is a picture of it. any help in this will be greatly apreaciated. Solved! Go t

  • Use Trim Function in this instance?

    Oracle 10.2g I have the following code (Thanks to michaels 2): SQL> with t as ( select to_date('11/14/2003 7:39:00 PM','MM/DD/RRRR hh:mi:ss pm') time, 11122 home_team_id,null away_team_id,null home_team_name, 'parks' away_team_name,'Steve' offensive_