Can't access Mail,calendar,contacts icon in Settings

When I type on the "Mail,contacts,calendar" icon in Settings, I get redirected straight away to my desktop. Same when I try to type an e mail. E mail shuts down and  I am back on my desktop. I have restored iPad twice to its factory settings. Any help welcome!

Try reset all settings
Settings>General>Reset>Reset All Settings
Note: Data will not be affected but settings for Wi-Fi, FaceTime, Message, Home Sharing will be reset

Similar Messages

  • HT201320 I changed my yahoo password but now can not access mail on my iPad  The settings for email is not a hot link

    I changed my yahoo password but now can not access mail on my iPad  The settings for email is not a hot link

    Go into setting on the iPad
    Mail, Calendar, contact...
    Tap your email account
    back out the dots and enter the correct passcode.

  • Can't access mail, calendar section through settings on IPAD

    Since I updated to 5.1,1 I am no longer getting email.  I can't no longer access the mail, calendar section via the settings section.  I can see it but cannot access it.  This all occurred when I updated.  Both my exchange email and my ymail no longer sync. My calendar is not available either.  I have reset my settings and that did not help. Any ideas? 

    The mailaccess.log didn't show anything with the user's name at all. I just tried to add a POP account and refreshed the mailaccess log over and over the whole time and the Mail app gave me the "Trying to log into the POP server ... has failed..." again. With no mention of that user in the log at all.
    I tried it with multiple user accounts too. I even created a test user and tried it with that account and the same thing happens. No mention of the user in the mailaccess log and the Mail app gets the error message when trying to logon to the POP server.
    I'm stumped...

  • TS3899 My phone is 3GS, after the update to IOS 6.1.3 I can't open mail from the icon or settings, just a white screen then back to home page, anybody can help me please?

    I have iphone 3GS, after update to 6.1.3 am unable to open mail from either mail icon or settings, just goes back to homepage, any helpful advice much appreciated.

    I have iphone 3GS, after update to 6.1.3 am unable to open mail from either mail icon or settings, just goes back to homepage, any helpful advice much appreciated.

  • I can't open contact app and when i click on the mail, calendar, contact menu in setup, i go back to the main screen

    I can't open contact app and when i click on the mail, calendar, contact in the setup menu, i go back to the main screen.
    Anyone can solve this issue ?

    Try reset ipad. Hold down Sleep and Home button for about 10 seconds until you see the Apple logo.

  • Exchange Sync works for Mail, Calendar, Contacts - but not for Notes

    Hi,
    I am using an iPhone 3G (16GB). The sync with my account on an Exchange Server (I think 2003) is working just great. Mail, Calendar, Contacts are all in snyc, but there seems to be no way of synchronising the Notes between the iPhone native app and the Exchange Notes.
    Is there any way to make that happen?

    Notes syncing is only supported via USB/iTunes sync with Outlook (Windows) or Mail (Mac), not via Exchange. So, there is no way to sync the native iPhone Notes app with your notes on Exchange. There are 3rd party apps that can access your Exchange notes, though.
    http://itunes.apple.com/us/app/imnotes-outlook-notes/id295449588?mt=8

  • Mail, Calendar, Contacts System Preference problems

    I am having trouble updating account informtaion in the Mail, Calendar, Contacts System Preferences.
    I can update account information but when I close the System preference panel and reopen it, the changes are not saved and revert to the previous state.
    I can change account information in Mail, iCal and Address Book but any changes are not reflected in the Mail, Calendar, Contacts System Preference panel.
    A Lion bug?
    Any insight or advice is appreciated.

    I have this exact same issue!
    I was on 2.0.1 running fine until late last week, noticed emails would not show up unless I had opened them in outlook. I thought I ran into a bug so I upgraded to 2.0.2. Now I can sync my email if outlook had them opened previously, but no calendar or contacts at all. I don't think my exchange admins will move me to another server, any other ideas?
    I love my iphone but if these features don't work I can't use it. I would appreciate any ideas.

  • Office 365 REST API - Mail, Calendar, Contacts Update

    UPDATE: We have announced General Availability of our REST APIs. The refreshed documentation which covers all the changes and much more is now available
    here.
    I wanted to share an update on our Mail, Calendar, Contacts REST API. Over the last few months we have been heads down updating the APIs. Most of the changes are a direct result of all the great feedback that we have received from
    customers like you and we are very excited about sharing these changes. 
    These changes are starting to light up in the service and we have already received questions/comments about them from some of you.
    Some of these changes are not backward compatible.  
    Due to versioning not yet implemented (but coming soon!), and these API’s being in preview, they might require simple updates to your code.
      Once versioning is in place, introducing non-backward compatible changes won’t impact your existing code. 
    Stay tuned for a full list of these changes along with the refreshed documentation and client libraries. 
    We have received a number of questions on some specific changes which I wanted to share a workaround for:
    1. Folder names after ../ews/odata/Me, such as Inbox, SentItems, DeletedItems, Drafts will additionally require a “Folders” in front of them in the URL.
    REST URL:
    Before  :
    https://outlook.office365.com/ews/odata/Me/Inbox
    Now      :
    https://outlook.office365.com/ews/odata/Me/Folders/Inbox
    .Net code sample:
    var messageResultsBefore = await (from i in client.Me.Inbox.Messages select i).ExecuteAsync();
    var messageResultsNow = await (from i in client.Me.Folders.GetById("Inbox").Messages select i).ExecuteAsync();
    2. The Namespace has been updated from "#Microsoft.Exchange.Services.OData.Model" to “Microsoft.OutlookServices” and hence the fully qualified type names have to be updated to reflect that. In most cases though, you do not need to provide the odata.type
    property as we can infer it based on where you make the post. For example, if you POST to ../Me/Contacts, we know you are trying to create a contact.
    3. Contacts changes: To make the API easier to use, we have replaced EmailAddress1, EmailAddress2, EmailAddress3 with a collection of a new type called EmailAddress. We have similarly also changed BusinessPhones, HomePhones to collections.
    Sample payload showing how to create a contact with EmailAddresses and BusinessPhones:
    "GivenName": "John", 
    "EmailAddresses": [    
    "Address": "[email protected]",
    "Name": "John"
    "BusinessPhones": [
    "123-456-7890" 
    4. Event Changes: The property Attendees now includes the type “EmailAddress”.
    Sample Event payload showing how to create an Event.
    "Subject": "Discuss the Calendar REST API", 
    "Body": {   
    "ContentType": "HTML",   
    "Content": "I think it will meet our requirements!" 
    "Start": "2014-07-02T18:00:00Z", 
    "End": "2014-07-02T19:00:00Z", 
    "Location": {     
    "DisplayName": "Conference Room 1"   
    "ShowAs": "Busy", 
    "Attendees": [   
    "EmailAddress": {
    "Name":"Alex Darrow",
    "Address": "[email protected]"
    "Type": "Required"   
    "EmailAddress": {
    "Name": "Anne Wallace",
    "Address": "[email protected]"
    "Type": "Optional"   
    "EmailAddress": {
    "Name": "Conference Room 1",
    "Address": "[email protected]"
    "Type": "Resource"   
    5. We have introduced a simple API for sending email called SendMail, and have removed the custom parameter MessageDisposition which was difficult to understand and discover.
    The sendmail action, takes two parameters, a required parameter which is the Message itself and an optional parameter, "SaveToSentItems" which by default is set to true.
    Sample Request to create and send email with one call:
    POST:
    https://outlook.office365.com/ews/odata/me/sendmail
    "Message":{   
    "Subject": "Have you seen this new Mail REST API?",   
    "Importance": "High",   
    "Body": {     
    "ContentType": "HTML",     
    "Content": "It looks awesome!"   
    "ToRecipients": [{         
    "EmailAddress": {           
    "Name": "John Doe",           
    "Address": "[email protected]"         
    If you are running into any issues please post on stackoverflow here:
    http://stackoverflow.com/questions/tagged/office365
    We apologize for any inconvenience and thank you for your continued feedback!

    Hi, 
    I was trying to create and update the calendar event using [POST] https://outlook.office365.com/api/v1.0/me/events and [PATCH] https://outlook.office365.com/api/v1.0/me/events/<eventId> respectively.
    When i try with poster or postman, I get this error
    {error: {code: "ErrorInvalidRequest" message: "Cannot read the request body."} }
    its not working . Any help will be appreciated.
    Note: GET events and DELETE Events are working. I think the API with payload is not working.

  • Can users access iPlanet Calendar Server 2.0 (iCS 2.0) from anywhere?

    Can users access iPlanet Calendar Server 2.0 (iCS 2.x) from anywhere?
    <P>
    Regardless of whether you are a remote user, mobile user, or in the
    office every day, you need access to your calendaring information anytime from
    anywhere. iCS 2.x provides a personal calendar and event solution that can be
    any device that includes a web browser. iCS 2.x works with other Alliance
    solutions such as Sun Internet Mail Server and Netscape Messaging Server
    software to ensure complete access to your calendar data regardless of location,
    platform, or browser.

    Hi,
    Thank you for your suggestion. I have tried with your option also. Still I am getting the second time userid/password dialogue box.
    Is there any other solution to avoid the second time user authentication dialogue box?
    Do you want to see the ACL file?
    Thanks & Regards,
    Murthy

  • Can't access google calendar with parental controls on

    We are trying to give our daughter accesss to the family's Google calendar.  In the parental controls we have "try to limit adult websites" as the selection.  With this on, she is not able to log into the calendar - it gives a message that says something about not being able to establish a secure connection.  She can go on the Google homepage without problem and search, etc. - but she can't access the Google sign-in or the calendar.
    When we change the parental controls setting to "allow all websites" she can log onto the calendar without any problem.
    We also tried adding the various google web address strings under the "customize" tab for "always allow these sites" while still leaving the "try to limit adult websites" as the overall setting.  Even with the specific sites approved - she still can't access the calendar.
    What's up??  Isn't there a way we can allow her to see the calendar without having to give her unecessary exposure to anything on the net?

    So after I made my original post above I continued searching the forums and found the answer below.  It refers to Googla Mail but their solution worked just as well for Google Calendar.  Who knew it would be so simple.  I just went into "always allow these sites" and put in the 1e100.net and it worked like a champ!  The adult sites are still screened out but she can now access Google without any issue.
    atobteam
    Re: Why can't I access Gmail anymore when internet restrictions are in plac 
    Apr 10, 2010 1:52 PM (in response to atobteam)
    Finally!!!!! This solution works! Yea!  There are two scenarios I know of: 1. If you have users for whom under "Parental Controls/Content" you've chosen "Allow access only to these websites" (they can only get to the websites that are bookmarked by you) and if Google Mail was already a bookmark, then just do this: click the plus sign below the list in "Parental Controls/Content/Allow access only to these websites", and choose "Add Bookmark." On the pop-up, name the site "goog" or anything you want; then type in: 1e100.net in the box asking for an address. This will produce a new bookmark (named "goog" or whatever you've chosen), but will in effect just be a dummy or slave bookmark that you'll never use, but it'll allow you to get to your user's google mail sign in page by hitting the old google mail bookmark he or she used to hit. Second scenario (I have both scenarios in my home): if you have users for whom under "Parental Controls/Content" you've chosen "Try to Limit Access to Adult Websites Automatically", click the "Customize" button and then on the top of the pop-up, under "Always Allow These Websites," click the plus button and then add: 1e100.net . Then click OK. This user will now be able to get to his or her google mail sign in page. 

  • I took Lion off my Macbook Pro and put Snow Leopard back on and now I can't access Mail or iPhoto. How do I get Mail and iPhoto to work with the Snow Leopard I just put back on?

    Hi. I was having slowness problems with my Macbook Pro and thought I would re-install Lion but put Snow Leopard back on by mistake. I bought the computer used with Lion on it and don't have access to the USB drive or a username/password to reinstall Lion. Now I can't access Mail or iPhoto since I put Snow Leopard on.
    Is there a way to get my Mail and iPhoto working again with Snow Leopard or do I have to "re-upgrade" to Lion?
    Thanks!
    Steve

    You can't. When you converted those libraries to Lion's format, you lost the ability to go backwards. Unless you saved a bootable backup./clone or Time Machine backup of your previous SL installation, you're up the proverbial creek w/o a paddle.

  • How can I access a calendar backup from my old iPhone?

    How can I access a calendar backup from my old iPhone?
    I recently had to get a replacement iPhone 4. The tech at the Apple Store thought that I might have had a software problem and recommended that I not "restore from backup," but start this phone as a new device and just sync the apps and what-not. My calendar on my computer was different than the one on my old phone, though, and now I need the data from my old iPhone calendar. I did back up my old phone just prior to taking it to the Apple Store.
    HELP!

    Well what you can do is update to ios5 then use icloud to sync your calandar up to your phone then restore your phone as new and when prompted in the new phone setup put in your icloud username and password and you will have your calandar events back.

  • HT1338 What's going on with iCloud (MobileMe)?  I'm able to sign in here, but I can't access mail on my Macbook Pro, iPhone, or work computer.  I always get an authorization error (user-id or passwork wrong).  This has been going on for almost a week now.

    What's going on with iCloud (MobileMe)?  I'm able to sign in here, but I can't access mail on my Macbook Pro, iPhone, or work computer.  I always get an authorization error (user-id or passwork wrong).  This has been going on for almost a week now.

    The single download means that you won't be able to redownload it from the store without paying, either on a computer's iTunes or an iOS device - it doesn't stop you from copying the audiobook to your other computers or syncing it to your iOS devices, you just can't redownload it. (I believe that they are all supplied to Apple by audible.com, so I assume that it's them requiring the one-time download.)
    You can download audiobooks on your computer's iTunes and sync them to iOS devices, you do not have to buy them directly on the device (if you do then you can copy them back to your computer's iTunes library by connecting the device and using the File > Devices > Transfer Purchases menu option on your computer's iTunes).
    What you are doing to sync them should work i.e.
    - connecting the iPad to your Mac
    - selecting the iPad on your Mac's iTunes
    - selecting its Books tab and selecting the audiobooks that you want to sync to the iPad and syncing/applying that selection.
    You should then get an audiobooks option in the Music app on your iPad. If they aren't appearing there  then do they show in Settings > General > Usage > Music on the device - if you have audiobooks on the iPad then they should be listed there under an 'audiobooks' heading.
    By 'restart the iPad' do you mean a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    You could also try closing its Music app via the iPad's taskbar : Force an app to close in iOS.
    And do a soft-reset and retry syncing.
    I assume that music and other items sync ok ?

  • Can't access my full contact list

    I added a new contact to my contact list, then hit "Done," but now I can't access any other contacts.  When I press "All Contacts," nothing happens and I remain on the same page.  How do I get back to my full contact list?

    Hello there, Calcharmac.
    The following Knowledge Base article provides some practical steps for when an app doesn't perform as expected:
    iOS: Understanding multitasking
    http://support.apple.com/kb/ht4211
    Try these steps and close all apps when performing step 2:
    If an app doesn't respond to your input, or doesn't perform as expected, do the following, testing after each step:
    Check for app updates.
    Force the app to close.
    Restart your device.
    Update your iOS device.
    Learn more about troubleshooting apps.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • HT204053 Hi all, I am constantly running into problems opening iCloud services (mail, calendars, iWork's, etc.). I get a message stating i.e. Can't load Mail (Calendar, iWork), There was a problem loading the application. Does anybody know what a heck is

    Hi all, I am constantly running into problems opening iCloud services (mail, calendars, iWork's, etc.). I get a message stating i.e. Can't load Mail (Calendar, iWork), There was a problem loading the application. Does anybody know what a heck is going on?

        I can see that this issue has been quite extensive, and frustrating, and I am so sorry for all that has happened societygirl! I would like to help you work this issue out. Please follow & send me a Direct Message, so I can get your account specifics and help finally bring this to a resolution.
    Thank you,
    MichelleH_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for