Email not being pushed after 5.1 iOS

I noticed today for whatever reason, my emails are not automatically being pushed to my phone, unless I stay on the mail app. Iphone 4 with iOs 5.1 Exchange Email, Hotmail, and iCloud all exhibit the same behavoir. If mail is mimized it won't send, but if I go in and kill the mail app, then it pops up with notifications and emails just fine.

Been battling this since the update myself - finally found the problem. It's not a bug.
Settings -> Mail, Contacts, Calendars -> Fetch New Data -> Advanced -> iCloud -> Change to "Push".
I have always received my emails automatically from iCloud, or they were always "Pushed" to me. For some reason, after updating to iOS 5.1, this setting was changed. It took me a while, but I finally found the problem. All emails are coming automatically now.
Hope this helps!

Similar Messages

  • Emails not being pushed to Mac Book Pro

    Emails are not being pushed to my Macbook Pro despite coming to my other i devices.  If I close and reopen mail it seems to encourage some but not all to arrive.  Any suggestions for a fix please?
    Thanks
    Duncan

    Hi duncal,
    If you are having issues receiving emails in Mail on your MacBook Pro, you may find the troubleshooting steps outlined in the following article helpful:
    OS X Mail: Troubleshooting sending and receiving email messages - Apple Support
    Regards,
    - Brenden

  • Emails not being pushed to iPhone

    My dad's emails are not getting pushed to his iPhone. This is what his settings look like under push:
    I have the same iPhone with the same iOS version and my emails are pushed to my phone. This is what my settings look like:
    How do I get his settings to look like mine so his emails can get pushed to his phone?

    Is the account set up as POP or IMAP on your dad's phone?
    ~Lyssa

  • Emails not being pushed following update 5.1

    I realise that there are several threads about this, but nothing seems to be getting done, so figured the more people that complain about this issue the better!!
    Have tried deleting and reinstalling the cloud on my iPhone 4s, but this has failed to work, emails are still not getting pushed to my phone.
    One of the problmes also that I have noticed is that my password is not being stored on my phone properly.
    I have entered it so many times now, only for it to be verified and then my phone decides not to keep the last 2 digits of my password, which means that iCloud on my phone will not work.
    Also have an ipad, which will not be updated until this issue is sorted out.

    Hello there, Gumblejack.
    The following Knowledge Base article offers up some great steps for troubleshooting your issue:
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Mail not being pushed after upgrading to iPhone 4S

    Ever since upgrading from iPhone 4 to iPhone 4S last week, my iCloud email doesn't get pushed to my iPhone anymore. I have to manually go into mail and wait for mail to check.
    No settings were changed and I setup the phone from a backup of my iPhone 4 that had no problems with push email.
    Both phones running iOS 5.01
    Thanks for your help

    Try the following:
    Go to Settings > iCloud and turn mail OFF
    Do a hard reset of the phone (hold the home and power buttons at the same time for about 6-8 seconds until the phone restarts - release the buttons when the Apple logo appears)
    Go to Settings > iCloud and turn mail ON

  • Why are we being pushed to upgrade to iOS 8 when it isn't compatible with Maverick?

    Why are we being pushed to upgrade to iOS 8 when it isn't compatible with Maverick? I just tried to open an iCloud document after upgrading to iOS 8 in all my Apple smart devices and OSX 10.9.5 on my MacBook Pro, only to be told that the new iCloud isn't compatible with Maverick and that I should upgrade to Yosemite. Problem is, Yosemite is only available as a Beta and won't have a public release until Oct. 21. Why would Apple cut its users off from iCloud like this?

    plotdot wrote:
    Checking with my better half, I'm now even more perturbed. According the the iCloud Drive FAQ, it's compatible with PCs running Windows 7. The current Windows OS is 8, which means Apple made iCloud backwardly compatible with Windows, for PC users, but not for its own customers. That *****.
    iTunes customers are Apple customers, what are you going on about?

  • Nokia 'push' email no longer pushing after service...

    Had my e71 for a couple of weeks and i was quite happy, then i recived an email from nokia telling me they were updating my service and unless i re-entered my email password in email settings i would no longer get my emails pushed to my phone. I followed the instructions to the letter re-entered my password, pressed 'back' and 'changes were saved' since then my emails are not being pushed to my phone! Why! Help! It was working perfectly before the 'service update' thanks in advance.

    jamesds wrote:
    email sucked anyway.
    @jamesds
    Everyone is entitled to their opinion, but for your opinion to be helpful to other users (which is what this discussion board is all about), could you at least substantiate your comment(s)? Also, you refer to (I presume Nokia Messaging) in the past tense, yet it is an active service.
    @superdanx
    I have been using Nokia Email/Messaging for the past 4 months, and have also found its push at times unreliable, but the last couple of weeks it has been exceptional, apart from the outage on Sunday for a few hours. Try adding another mailbox from a different provider to see if you experience the same problem.
    Cheers,
    travla
    If you found this post helpful, please click on the green "Kudos!" star. Cheers!

  • Where clause one query not being pushed down

    I am having a problem where I cannot get a certain "optional" parameter to be pushed down to a query. The parameter gets applied in memory after the result set is returned but not pushed down to the DB. The function is as follows:
    declare function getFoo($key as xs:string, $optinalInput as xs:string*) as element(b:bar)*
    for $foo in f:getFoo()
    where $key = $foo/key
    where not(exists($optinalInput)) or $foo/optional = $optinalInput<- does not get pushed down to the query
    return $foo
    If I make optinalInput an xs:string instead of xs:string * and the optional parameter will get pushed to the query. The problem is for this optional parameter I could get anywhere from 0-50 in the sequence. Seems like when the parameter is a sequence it doesn't get applied to the query. Is there any way around this?

    Mike,
    I understand the difference between * and ? and I was one of the people working on the "string-length not getting pushed" problem so I am very familiar with it. I tried you solution that you mentioned below and it still did not push the where clause to the query. I know I could achieve this with an ad-hoc query but I wanted to do a pure xquery implementation of this component because of the benefits it could have when interacting with other components in our ODSI project...such as SQL joining and potentially pushing additional where clause down from components that call this component. The only way I did get this to kind of work is to do this:
    return
    for $o in $optinalInput
    for $foo in f:getFoo()
    where $key = $foo/key
    where $o = $foo/optional
    return
    $foo
    for $count in 1
    where not(exists($optinalInput))
    for $foo in f:getFoo()
    where $key = $foo/key
    return
    $foo
    By putting the optional parameter into a FOR statement above the table call it guarantees that at least one will exists and that's why the optional parameter gets pushed properly to the DB with a parameterized query. The problem with this is that even though a parameterized query gets pushed it will call the SQL statement multiple times!...not good.
    Another solution that was suggested to me would be to create the number of sequences for each item in the sequence and treat each item as it's own. For example if you know that the schema limits the sequence from 0..50 then you could make 50 items and 50 where clauses....probably not an optimal solution either but it would achieve properly pushing the where clause tot he DB.
    For now I am satisfied with this optional parameter not being pushed to the DB because the performance was still good but it would be nice if there was a maintainable pure xquery solution to this problem.
    Thanks for the help it's always appreciated!
    Mike

  • How to stop an email from being sent after I hit send?

    How can I immediately stop an email from being sent after clicking "send"?
    I can't seem to find any info on this. I am assuming that it is impossible. Correct?

    When sending the emails with larger attachments that take a little time to actually upload and get out, you can open the activity viewer by pressing command-0 (or is it command-o?--)--it may also be under the window menu at the top--I'm not at my Mac right now to check. The activity viewer has a stop button on it. After you stop it, you should be able to either delete the email from the outgoing mail folder or drag that email to another folder, such as the drafts folder. I've done this a few times without a problem.

  • Pictures are not being delivered after saying delivered on iMessage.

    Pictures are not being delivered after saying delivered on iMessage.
    Txting through iMessage works fine. Pic's won't send.
    I turned on and off everything and did all the necessary trouble shooting.
    I'm on a Verizon 4S. and I'm sure Verizon has nothing to do with iMessage system, since it's on its on server.

    bump

  • 'requestblock' emails not being sent

    I had a similar post on the ticket confirmation auto response email. It is not a question of emails not being generated at all - the order confirmation mail is being generated fine so I know the messaging is working to some degree, but I have created a form using requestblock.ascx and although the records are generated in the Contact log in the WT db there are no outgoing emails created.
    As before the only evidence of failure of any kind is:
    1) Event Viewer Application Log : SAPB1WTMS Thread was being aborted at NetPoint.MessgingService.NPMessagingThread.Work()
    2) Webtools log Message type I module sender SendingQueue is disabled
    I am using SP01 PL01 for this
    Can anyone offer any suggestions as I am sure someone is successfully using the requestblock.ascx to generate emails

    I have noticed that in Config>messaging I did not have SendQueue ticked.
    Having ticked it I got the missing mail messages created

  • IPhone 5 facetime app not shuting down after updating of  iOS 8.0/8.0.2 ?

    Hey there my iPhone 5 face time app not shuting down after updating of  iOS 8.0/8.0.2 ? after i upadted my iOS 8.0/8.0.2 software  my facetime app never get quit even i want to quit it. so then i have to shut my fone down to quit facetime . please help me . Thanks

    Hi, gurpreet from chatham.  
    Thank you for visiting Apple Support Communities.
    Here are some troubleshooting steps that I would recommend going through when experiencing this issue.  
    iOS: Not responding 
    http://support.apple.com/kb/TS3281
    Cheers,
    Jason H.

  • HT1688 My iphone 5 does not ring anymore after upgrading to ios 7.0.2

    My iphone 5 does not ring anymore after upgrading to ios 7.0.2.  It did not happen right away, but maybe 2 weeks ago.  I tried turning the "do not disturb" on and add allow everyone to call as well as turning it off but it only vibrates when calls come in.  I also turned my phone off and it still only vibrates when calls and messages come in.

    I found another feed and said there is a silent button next to volume bar.  That was the problem.

  • Contact addresses not showing up after upgrading to ios 7

    Contact addresses not showing up after upgrading to ios 7

    Contact addresses not showing up after upgrading to ios 7

  • I can not login Flickrs, after I update IOS 8.0.2 ?

    I can not login Flickrs, after I update iOS 8.0.2 ?

    I tried hard reset by press both power and home button.
    I can not hear music played through the speaker. Just music only.
    The speaker workes well with imcomming call or out going call by turn on loud speaker.
    Linh.

Maybe you are looking for

  • I am unable to upload files via web browser

    Good morning I have just upgraded to Mavericks (10.9.5), and I am running into a weird issue. I am unable to upload any files via the web browser. If I go to a website, and select an Upload File option, I am taken to Finder, where I am able to select

  • Spinning fans

    I have a Dell studio 1555 with ATI 3540. I have installed xf86-video-ati and acpi, also acpid is loaded at startup. The problem is that after some minutes the laptop is on a fan start spinning and its speed increase with time. With debian and windows

  • Image Drag'n'Drop error

    Hello so... he is the deal: based on that: http://java-buddy.blogspot.com/2012/03/javafx-20-implement-gesturetarget-of.html i made some simple app that loads pictures from files. whats important about this is this: HBox targetBox = new HBox();and thi

  • I get an error message "General exception" everyime i use a java based webs

    Everytime i go onto a java based website, a this pops up saying Java error, general exception... and when i right click on the coffe cup in the lower right hand corner, i click on open console, and this is what i see basic: Registered modality listen

  • Problems importing a datasource for a Data Merge? It might be one word...

    For the life of me, I could not figure out why this one CSV file was not importing correctly into InDesign CS6. I could see the datasource in the Links panel but nothing showed up in the Data Merge panel. Through trial and error, I figured it out. In