HT3748 My exchange email account works in iPhone but it does not work in mac, how do i solve it?

I've tried several times to add my work exchange email account on macBook Pro but it cant connect to the server. It works fine on my iPhone. Is there any solution to this problem?

Are you connecting to Exchange 2003? If yes, Mail requires Exchange 2007 and higher. Your iPhone can connect but not Mail. You would have to setup as POP in Mail. Microsoft Entourage 2008 connects to Exchange 2003. It's old End of Life software so it will receive no further updates.
If you are using one of the newer versions of Exchange you might need to turn off AutoDiscover settings. This link has directions for Microsoft Outlook:
http://www.officeformachelp.com/outlook/exchange/autodiscover/
See this link for help with Mail:
**(Fair disclosure: OfficeforMacHelp is my site. I may receive some form of compensation, financial or otherwise, from my recommendation or link.)

Similar Messages

  • How does one do a two way contacts sync between an iphone and outlook? Most of the community has answered as this to be "always so", but it does not work! Changes made on outlook get done in my iPhone, but it does not work the other way around!

    How does one do a two way contacts sync between an iphone and outlook? Most of the community has answered as this to be "always so", but it does not work! Changes made on outlook get done in my iPhone, but it does not work the other way around!

    Close the tab the web page is loaded in (command - W).

  • Just got an iphone 4 from my dad and its his old iphone and i was gonna delete his account so i can put my account on the iphone but he does not remember the  password so I couldnt delete it. I need help deleting it without a password

    just got an iphone 4 from my dad and its his old iphone and i was gonna delete his account so i can put my account on the iphone but he does not remember the  password so I couldnt delete it. I need help deleting it without a password.

    If the iPad has Activation Lock - that is, it's asking for the previous owner's Apple ID and password to activate the device or to turn off Find My iPhone - then you will need that information. There's no way around it If your father can't remember the password, he'll need to recover it.
    http://iforgot.apple.com
    If he can't do it via that page, then he'll have to call Apple Support and ask to speak with Account Security.
    If that's not the "password" you meant, please post back and clarify.
    Regards.

  • URLLoader works great localhost but live does not work

    I have been working on this for a few days on the localhost set up, retriving data as varaibles from a php string.
    There is a output.php file located on the server
    http://example.com/room/output.php
    My Flash code for retriving the code(the swf in embedded into a menu.php file that is in this dir http://example.com/room/menu.php)
    var theloader:URLLoader = new URLLoader();
    theloader.dataFormat = URLLoaderDataFormat.VARIABLES;   
    theloader.load(new URLRequest("http://example.com/room/output.php"));
    theloader.addEventListener(Event.COMPLETE, turnOn);
    There is no error given by Flash, i just does not load
    This is what i have tried(as far as the link is concered)
    theloader.load(new URLRequest("http://example.com/room/output.php"));
    theloader.load(new URLRequest("http://www.example.com/room/output.php"));
    theloader.load(new URLRequest("/output.php"));
    theloader.load(new URLRequest("output.php"));
    Still is not loading the file, Any Suggestions would be helpful
    Thanks

    This is the file script, the php does not give any html, it simply outputs the requested string, no whitespaces nothing like that
    Any help will be aprecaited, I just noticed that sometimes the animation freezes when it comes to loading the showImages function
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.events.TimerEvent;
    var theloader:URLLoader = new URLLoader();
    theloader.dataFormat = URLLoaderDataFormat.VARIABLES;   
    theloader.load(new URLRequest("output.php"));
    theloader.addEventListener(Event.COMPLETE, turnOn);
    //Set the Timer for the Images to Show up
    var delayCall:Number = 3000;
    var repeatCall:int = 1;
    var imagesShow:Timer = new Timer(delayCall, repeatCall);
    imagesShow.start();
    //Add Event Listener for the imagesShow Timer
    imagesShow.addEventListener(TimerEvent.TIMER_COMPLETE, showImages);
    //Define Text Formats
    //1st is Heading Text
    var headingTxt:TextFormat = new TextFormat();
    headingTxt.font = "Eurostile";
    headingTxt.size = 18;
    headingTxt.color = 0x40ABE3;
    headingTxt.bold = true;
    headingTxt.underline = true;
    //2nd is Car Name Text
    var carnameTxt:TextFormat = new TextFormat();
    carnameTxt.font = "Eurostile";
    carnameTxt.size = 14;
    carnameTxt.color = 0x40ABE3;
    carnameTxt.bold = true;
    carnameTxt.underline = false;
    //3rd is Car Description
    var cardescTxt:TextFormat = new TextFormat();
    cardescTxt.font = "Eurostile";
    cardescTxt.size = 10;
    cardescTxt.color = 0xF6F9FA;
    cardescTxt.bold = true;
    cardescTxt.underline = false;
    //4th is for Car Price
    var carpriceTxt:TextFormat = new TextFormat();
    carpriceTxt.font = "Eurostile";
    carpriceTxt.size = 15;
    carpriceTxt.color = 0xF6F9FA;
    carpriceTxt.bold = true;
    carpriceTxt.underline = false;
    function showImages(event:TimerEvent):void {
    var bmw:MovieClip = new bmw_mc();
    var ferrari:MovieClip = new ferrari_mc();
    var lambo:MovieClip = new lambo_mc();
    var mercedes:MovieClip = new mercedes_mc();
    bmw.x = 260;
    bmw.y = 340;
    mercedes.x = 50;
    mercedes.y = 18;
    lambo.x = 530;
    lambo.y = 20;
    ferrari.x = 570;
    ferrari.y = 370;
    bmw.rotation = 20;
    var bmw = new TransitionManager(bmw);
    bmw.startTransition({type:Zoom, direction:Transition.IN, duration:4, easing:Elastic.easeOut});
    addChildAt(bmw, 0);
    var mercedes = new TransitionManager(mercedes);
    mercedes.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    addChildAt(mercedes, 0);
    var lambo = new TransitionManager(lambo);
    lambo.startTransition({type:Blinds, direction:Transition.IN, duration:2, easing:None.easeNone, numStrips:10, dimension:0});
    addChildAt(lambo, 0);
    var ferrari = new TransitionManager(ferrari);
    ferrari.startTransition({type:Fade, direction:Transition.IN, duration:8, easing:Strong.easeOut});
    addChildAt(ferrari, 0);
    function turnOn(event:Event):void {
    //Looking After Spacing    
    var tft:Number = 325;
    var twt:Number = 325;
    var tct:Number = 50;
    var tst:Number = 50;
    //Looking after heading Text
    var category:TextField = new TextField();
    category.text = "CAR LIST";
    category.x = 400;
    category.y = 300;
    category.setTextFormat(headingTxt);
    var movieTween:Tween = new Tween(category, "x", Elastic.easeOut, 600, 400, 2, true);
    addChild(category);
    var categoryone:TextField = new TextField();
    categoryone.text = "TRAILER LIST";
    categoryone.x = 50;
    categoryone.y = 300;
    categoryone.setTextFormat(headingTxt);
    var cargoTween:Tween = new Tween(categoryone, "x", Elastic.easeOut, 0, 50, 2, true);
    addChild(categoryone);
    var categorytwo:TextField = new TextField();
    categorytwo.text = "CARGO";
    categorytwo.x = 120;
    categorytwo.y = 25;
    categorytwo.setTextFormat(headingTxt);
    var cocktailTween:Tween = new Tween(categorytwo, "x", Elastic.easeOut, 0, 120, 2, true);
    addChild(categorytwo);
    var categorythree:TextField = new TextField();
    categorythree.text = "BIKES";
    categorythree.x = 430;
    categorythree.y = 25;
    categorythree.setTextFormat(headingTxt);
    var shotsTween:Tween = new Tween(categorythree, "x", Elastic.easeOut, 600, 430, 2, true);
    addChild(categorythree);
    //Iterating through the loop
    for (var i:Number = 0; i < theloader.data.count; i++) {
    if (theloader.data["carcat" + i] == "CarList") {   
    var carname:TextField = new TextField();
    var cardesc:TextField = new TextField();
    var carprice:TextField = new TextField();
    carname.y = tft;
    carname.x = 400;
    cardesc.x = 400;
    cardesc.y = tft+13;
    carprice.y = tft+5;
    carprice.x = 525;
    carprice.text = "$" + theloader.data["carprice" + i];
    carname.text = theloader.data["carname" + i];
    cardesc.text = theloader.data["Bevdes" + i];
    var myTween:Tween = new Tween(carname, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTween:Tween = new Tween(cardesc, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTween:Tween = new Tween(carprice, "alpha", Strong.easeOut, 0, 1, 3, true);
    carname.setTextFormat(carnameTxt);
    carname.autoSize = TextFieldAutoSize.LEFT;
    cardesc.autoSize = TextFieldAutoSize.LEFT;
    cardesc.setTextFormat(cardescTxt);
    carprice.setTextFormat(carpriceTxt);
    addChild(carname);
    addChild(cardesc);
    addChild(carprice);
    tft += 30;
    if (theloader.data["carcat" + i] == "Bikes") {   
    var carnameW:TextField = new TextField();
    var cardescW:TextField = new TextField();
    var carpriceW:TextField = new TextField();
    carnameW.y = twt;
    carnameW.x = 50;
    cardescW.x = 50;
    cardescW.y = twt+13;
    carpriceW.y = twt+5;
    carpriceW.x = 200;
    carpriceW.text = "$" + theloader.data["carprice" + i];
    carnameW.text = theloader.data["carname" + i];
    cardescW.text = theloader.data["cardesc" + i];
    var myTweenW:Tween = new Tween(carnameW, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTweenW:Tween = new Tween(cardescW, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTweenW:Tween = new Tween(carpriceW, "alpha", Strong.easeOut, 0, 1, 3, true);
    carnameW.setTextFormat(carnameTxt);
    carnameW.autoSize = TextFieldAutoSize.LEFT;
    cardescW.autoSize = TextFieldAutoSize.LEFT;
    cardescW.setTextFormat(cardescTxt);
    carpriceW.setTextFormat(carpriceTxt);
    addChild(carnameW);
    addChild(cardescW);
    addChild(carpriceW);
    twt += 30;
    if (theloader.data["carcat" + i] == "Cargo") {   
    var carnameC:TextField = new TextField();
    var cardescC:TextField = new TextField();
    var carpriceC:TextField = new TextField();
    carnameC.y = tct;
    carnameC.x = 120;
    cardescC.x = 120;
    cardescC.y = tct+13;
    carpriceC.y = tct+5;
    carpriceC.x = 270;
    carpriceC.text = "$" + theloader.data["carprice" + i];
    carnameC.text = theloader.data["carname" + i];
    cardescC.text = theloader.data["cardesc" + i];
    var myTweenC:Tween = new Tween(carnameC, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTweenC:Tween = new Tween(cardescC, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTweenC:Tween = new Tween(carpriceC, "alpha", Strong.easeOut, 0, 1, 3, true);
    carnameC.setTextFormat(carnameTxt);
    carnameC.autoSize = TextFieldAutoSize.LEFT;
    cardescC.autoSize = TextFieldAutoSize.LEFT;
    cardescC.setTextFormat(cardescTxt);
    carpriceC.setTextFormat(carpriceTxt);
    addChild(carnameC);
    addChild(cardescC);
    addChild(carpriceC);
    tct += 30;
    if (theloader.data["carcat" + i] == "Trailers") {   
    var carnameS:TextField = new TextField();
    var cardescS:TextField = new TextField();
    var carpriceS:TextField = new TextField();
    carnameS.y = tst;
    carnameS.x = 430;
    cardescS.x = 430;
    cardescS.y = tst+13;
    carpriceS.y = tst+5;
    carpriceS.x = 540;
    carpriceS.text = "$" + theloader.data["carprice" + i];
    carnameS.text = theloader.data["carname" + i];
    cardescS.text = theloader.data["cardesc" + i];
    var myTweenS:Tween = new Tween(carnameS, "alpha", Regular.easeOut, 0, 1, 2, true);
    var myPTweenS:Tween = new Tween(cardescS, "alpha", Strong.easeOut, 0, 1, 3, true);
    var myDTweenS:Tween = new Tween(carpriceS, "alpha", Strong.easeOut, 0, 1, 3, true);
    carnameS.setTextFormat(carnameTxt);
    carnameS.autoSize = TextFieldAutoSize.LEFT;
    cardescS.autoSize = TextFieldAutoSize.LEFT;
    cardescS.setTextFormat(cardescTxt);
    carpriceS.setTextFormat(carpriceTxt);
    addChild(carnameS);
    addChild(cardescS);
    addChild(carpriceS);
    tst += 30;

  • 3 imacs 3 cities, A works to B, B works to C, but A does NOT work to C

    Hello. I have a imac with 10.5.1. We have 2 sets of Grandparents each with 10.5.1 imacs, call them GPA and GPB, call us kids.
    KIDS can ichat with GPA.
    GPA can ichat with GPB.
    KIDS can not however ichat with GPB.
    To muddy the waters further, if GPA ichats with GPB, then adds KIDS, we can all 3 ichat together.
    The problem is KIDS can not ichat with GPB.
    Any ideas on what could be causing this?
    All 3 sites have imacs with airport extremes.
    KIDS are in Denver and have Qwest DSL.
    GPA are in Chicago and have Comcast cable.
    GPB are in Omaha and have a local phone company DSL.
    Any help would be much appreciated!
    Thanks. Paul.

    If one of the Extremes is in Bridge Mode then it is Not doing NAT.
    The issue can be the way each device at each end is doing NAT and some jsut "Don't Play Nicely" together.
    See this http://ralphjohns.co.uk/page15.html#CertainBuddy
    As the Airports can not do UPnP then the Bridge Mode is one option although it does not help if you have multiple computers.
    9:16 PM Sunday; January 20, 2008

  • HT204230 this device is not longer eligible for creating a free i cloud accounting on my Iphone 5s , my old not working now cannot opened again just when i try make a free email this Message showed up  how i can fix it please help me  iPhone 5s, iOS 8.3

    this device is not longer eligible for creating a free i cloud accounting on my Iphone 5s , my old not working now cannot opened again just when i try make a free email this Message showed up  how i can fix it
    please help me
    iPhone 5s, iOS 8.3

    Create a new AppleID on a different iOS device or on a computer. You will
    then be able to use that newly created AppleID on your iPhone.

  • I want to delete exchange email account from my iPhone 5s but when ever opening the setting-Mail,Contacts,Calenders but no option to delete the account, please help

    I want to delete exchange email account from my iPhone 5s but when ever opening the setting-Mail,Contacts,Calenders but no option to delete the account, please help

    Do you have Settings/General/Restrictions/Accounts set to dont allow changes - i have an exchange email account on my 6+ and there was a button at the bottom to delete the account
    i dont know that much about exchange ( i hate it) but im wondering if this might be some administrator setting on the account

  • I want to disable or remove Game center from my iphone. It's always pop up during i play hay day game. So i can not solve this problem. Any way i try to log in game center my several Apple id account but it does' not work. I am still stuck in log in page

    I want to disable or remove Game center from my iphone. It's always pop up during i play hay day game. So i can not solve this problem. Any way i try to log in game center my several Apple id account but it does' not work. I am still stuck in log in page

    The Game Center app is pre installed and cannot be removed from the device.
    Best thing to do is move it to the last available screen.
    Hold down the Game Center app until all the apps jiggle then sliide the Game Center app to the right from one screen to the next. This requires a bit of finesse, but it's doable.
    Press the Home button one time to stop the apps from jiggling.
    For the Apple ID issue, try resetting.
    Tap Settings > General > Reset > Reset All Settings
    Then try your Apple ID and password for the Game Center app.

  • HT201320 I have ne iphone 5, i been setting my email using AT&T global but it is not working, please help me on the correct configuration

    I have ne iphone 5, i been setting my email using AT&T global but it is not working, please help me on the correct configuration

    Contact the email provider and obtain the correct setup information.

  • HT1277 i have set up an email account on my iPad, but i can not set up same account on iMac or iPhone , it keeps saying wrong password for account, any help please

    i have set up an email account on my iPad, but i can not set up same account on iMac or iPhone , it keeps saying wrong password for account, any help please

    i am trying to use my sky email on imac & iphone 4gs

  • I just set up my Site 5 email account on my iPhone, but there is a delay of over 2 hours for the iPhone to receive the emails.  Can anyone provide a solution to this problem?

    I just set up my Site 5 email account on my iPhone, but there is a delay of over 2 hours for the iPhone to receive the emails.  Can anyone provide a solution to this problem?

    Hey Garlicdaisy,
    Thank you for the follow up.
    With iCloud, you can have iTunes automatically download new music purchases to all your devices the moment you tap Buy. You can also access past music, movie, and TV show purchases from any of your devices — wirelessly and without syncing.
    For more information, see the following:
    Apple - iCloud - All your music on all your devices.
    http://www.apple.com/icloud/features/itunes-in-the-cloud/
    To download past purchases on your devices, follow these steps:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    If you want the benefits of iTunes in the Cloud for music you haven’t purchased from iTunes, iTunes Match is the perfect solution:
    Apple - iTunes - Match
    http://www.apple.com/itunes/itunes-match/
    Thanks,
    Matt M.

  • I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords but it does not work for the macbook.

    I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords several times but it does not work for the macbook.

    You will have to provide the correct password to delete the existing account, if you have tried but are not getting the password reset email, contact Apple for assistance by going to https://expresslane.apple.com, then click More Products and Services>Apple ID>Other Apple ID Topics>Lost or forgotten Apple ID password.

  • TS4083 I delete an email on my iphone but it does not delete the same email on my laptop. Any suggestions to help?

    I delete an email on my iphone but it does not delete the same email on my laptop. Any suggestions to help?

    Yes,  There are actually 4 calendars listed under my iCloud account.  The listing on my iPhone is exactly like the listing on my iPad.  The iPad is updating but not the iPhone.  It's odd because the iPhone did work at one time so I'm assuming it some setting I've changed.  I have checked and double checked that the settings on both devices are the same.  Do you have any other ideas?
    Thanks for your help.

  • TS3989 New MacAir but  photostream does not work.  Message though everything is on. "In order to use Photo Stream, you have to be signed into your iCloud account in System Preferences." And,

    New computer but Photostream does not work.  I am signed into my account but get the following message:  In order to use Photo Stream, you have to be signed into your iCloud account in System Preferences.  I go to system preferences and then get a message that says that my account cannot be accessed.  However, I am using my icloud account for email and other items and it works fine.  Any thoughts?

    Are you getting this messages in iPhoto? If so try the following (again?):
    Log out of iCloud in the System/iCloud preference pane and disable Photo Stream in iPhoto's Photo Share preference pane.  Then log back in and re-enable, respectively.  That should jump start Photo Stream.
    OT

  • TS3988 Each time I log into iCloud, I check, Keep me logged in, but this does not work.  I have to reenter user name etc each time I try to go back to my iCloud account.

    Each time I log into iCloud, I check, Keep me logged in, but this does not work.  I have to reenter user name and password etc each time I try to go back to my iCloud account.

    Hi,
    In Keychain Access app in the Menu for the App is Keychain First Aid.
    If you open this is the tick box for Synchronising the Login password with the so called Login Keychain ticked ?
    9:49 pm      Monday; March 16, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for