Microsoft Exchange server / OSX / Mail / entourage

Just a quick question about this, as a friend of my Dad's has been giving him grief because he doesn't ever receive receipts that emails have been received / opened / read etc.
As far as I know Apple Mail doesn't support Microsoft Exchange Server, but Entourage does - but is it as simple as my Dad using Entourage, or does it need to on a network using Microsoft Exchange Server?
And if so, does this mean that two, common or garden home PC users using Windows Mail or Outlook wouldn't get email receipts from each other either?

what would the situation be with two, bog standard home PCs using XP/Vista and Outlook Express/Windows Mail - would they generate and receive receipt notifications with each other?
Windows Mail and Outlook Express both support receipts (do a web search to find more information and instructions). But they will get receipts only if the receiving email client supports them, so the recipient must also be running one of those two applications or one of the other rare email applications that does. And receipts in Internet-standard email really doesn't mean much; it may return even if the email is selected, or, as is apparently the case with both Outlook Express and Windows Mail, the recipient can disallow sending back the receipt which if true rather defeats the purpose.
where does the Microsoft Exchange Server come into it, which was what I thought powered these?
It may or may not. Both Outlook Express and Windows Mail are standard email applications and work with any standard email server. If the ISP/company/organization is using Exchange and has it set up for POP and/or IMAP, you can use any email application with the server including OE or Windows Mail. But you don't get any of the features an Exchange Server provides: shared calendaring, "real" delivery/read receipts (ones the user can't disallow), etc. For those you must use Outlook.

Similar Messages

  • SAP PI Connection Microsoft Exchange Server (Scenario Mail -- SAP PI -- File)

    Hi experts,
    we want to connect Microsoft Exchange Server to SAP PI. POP3 and IMAP4 is not allowed on mail server side.
    But the standard mail adapter in SAP PI  (configured as sender communication channel) only works with POP3 and IMAP4.
    Can anyone help me to solve this problem
    Thank you for your help.
    Mario

    Hi Priyadshini,
    The way that you have developed your java program can be different that the way that SAP did it. With pop3 in PI, as far as i know, it is no possible to change the read/delete properties that the mail server has by default, as Amit and Ilya mentioned you should try with the imap solution or to talk to the mail server administrators.
    Are you sure that the messages is being deleted?, have you checked other mail folders in the user account?, may be the message is being moved.
    Regards.

  • Any one have idea how to read microsoft exchange server inbox mail

    I am trying to build a program which can read the mail from exchange server and i found microsoft exchange server is used MAPI protocol for mail server. I did not found anything which can guide me how to read exchange server mail and what ever i found is, i need to use connector to connect with microsoft exchange server.

    The simplest approach is to configure the Exchange server to allow IMAP access.  If you can't do that, you'll need to use one of the third party products that use MAPI to access Exchange.

  • Can I get more than one account on iphone microsoft exchange server

    Hi all,
    I was trying to get more than one account on iphone microsoft exchange server for mail, but it seems to only accept one. Is this true with everyone else out there. I guess I am one of the few people with more than one email account that uses microsoft exchange. I would love to have the convience of accessing them through iphone mail but it seems that I will be forced to use safari for the other two by typing owa... in the url.
    any workaround to the one email account per iphone policy??

    Yu can only have one Exchange Server account per device. This is true to iPhone and any Windows mobile device in the market. The work around is to set your other accounts that reside on an Exchange server using IMAP or POP settings as you used to do before the Version 2 update allowed you to sync directly to the Exchange Server. This methode will allow you to add as many accounts as you want or have.

  • Can someone help with my Mail not working with my Microsoft Exchange server?

    I am trying to set up my Mail account. I am using the Microsoft Exchange server. I've been using Entourage, but wanted to switch to using the Mac's Mail. I used the same settings I had with Entourage, but with Mac Mail I'm getting this error: MFEWSErrorDomain error 56. From some of the other posts I saw, it seems as though no one has any answers, but I figured I'd ask anyway.

    There is no single cause of this problem and hence no single solution. There are several suggestions in this thread, if you haven't come across it, one of which might help:
    https://discussions.apple.com/thread/3953623?start=0&tstart=0
    Regards.

  • Mail bouncing from the Microsoft Exchange Server.

    Hi  All,
               This is Brajesh from Mobinius Technologies. When ever  we are sending mails to our client those  who are using Microsoft exchange server. Our mail are getting rejected as spam content . How to resolve this
    issue. Please help us.   

    Hi,
    According to your description, I understand that failed to send message to recipient and rejected as a spam.
    If I misunderstand your concern, please do not hesitate to let me know.
    I want to double confirm whether all account or some special account contain this domain experience this question, how about internal and external mail flow?
    If this issue only occur on some special recipient, it indicate that target domain may be configured to reject your message, I recommend to contact its administrator to change the setting.
    Otherwise, please try to enable protocol log to get more details about this issue. More details about Protocol logging, for your reference:
    https://technet.microsoft.com/en-us/library/aa997624(v=exchg.150).aspx
    Best Regards,
    Allen Wang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Error while connecting to Microsoft Exchange server using javamail: "com.sun.mail.util.MailConnectException: Couldn't connect to host, port: host name , 993; timeout -1"

    I am trying to read mails from my outlook microsoft exchange server. Following is the code:
    public void readEmailsFromOutlook(/*String host, String username, String password*/ ) throws MessagingException, IOException {
          String host = "hostname";
          String username = "domain\\username";
          String password = "password"
          // Create empty properties
          Properties props = System.getProperties();
          props.setProperty("mail.smtp.auth","true");
          props.setProperty("mail.store.protocol","imaps");
          props.setProperty("mail.imap.auth.plain.disable","true");
          props.setProperty("mail.imap.host",host);
          props.setProperty("mail.imap.port","993");
          props.setProperty("mail.imap.user",username);
          props.setProperty("mail.imap.pwd",password);
          props.setProperty("mail.imap.debug","true");
          props.setProperty("mail.imap.ssl.protocols","SSL");
          props.setProperty("mail.imap.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
          props.setProperty("mail.imap.socketFactory.fallback", "false");
          props.setProperty("mail.imap.socketFactory.port", "993");
          // Get session
                     Session session = Session.getInstance(props, new ExchangeAuthenticator(username, password));
          session.setDebug(true);
          // Get the store
          Store store = session.getStore("imaps");
          //Store store = session.getStore();
          store.connect(host, username, password);
          // Get folder
          Folder folder = store.getFolder("INBOX");
          folder.open(Folder.READ_ONLY);
          BufferedReader reader = new BufferedReader(new InputStreamReader(
              System.in));
          // Get directory
          Message message[] = folder.getMessages();
          for (int i = 0, n = message.length; i < n; i++) {
            System.out.println(i + ": " + message[i].getFrom()[0] + "\t"
                + message[i].getSubject());
            System.out.println("Read message? [YES to read/QUIT to end]");
            String line = reader.readLine();
            if ("YES".equalsIgnoreCase(line)) {
              System.out.println(message[i].getContent());
            } else if ("QUIT".equalsIgnoreCase(line)) {
              break;
          // Close connection
          folder.close(false);
          store.close();
    But it threw the following error:
    DEBUG: setDebug: JavaMail version 1.5.1
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle]
    DEBUG IMAPS: mail.imap.fetchsize: 16384
    DEBUG IMAPS: mail.imap.ignorebodystructuresize: false
    DEBUG IMAPS: mail.imap.statuscachetimeout: 1000
    DEBUG IMAPS: mail.imap.appendbuffersize: -1
    DEBUG IMAPS: mail.imap.minidletime: 10
    DEBUG IMAPS: trying to connect to host <hostname>,port 993, isSSL true
    com.sun.mail.util.MailConnectException: Couldn't connect to host, port: 10.75.250.60, 993; timeout -1;
      nested exception is:
    java.net.ConnectException: Connection refused: connect
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:693)
    at javax.mail.Service.connect(Service.java:345)
    at javax.mail.Service.connect(Service.java:226)
    at com.capgemini.utilities.Utilities.readEmailsFromOutlook(Utilities.java:1261)
    Whats wrong with my code?
    Please help!!!!

    You're using the "imaps" protocol, but you've set properties for the "imap" protocol.  Change all the property names from mail.imap.* to mail.imaps.*.
    Also, get rid of all the socket factory properties.
    If you still can't connect, see these connection debugging tips.
    Most likely you're using the wrong host name or port number.  In almost all cases, it's better to just let JavaMail choose the correct port number.

  • Problem e-mailing reports after migrating to new Microsoft Exchange server

    Hi,
    I am now unable to e-mail (SMTP) reports to anyone in my company because we just migrated to a new Microsoft Exchange server.  Anyone know how to get rid of this message?
    Status: Failed 
    Printer: The instance is not printed. 
    External Destination: Mail the instance to "____________" with a subject of " %SI_NAME% %SI_STARTTIME% ". 
    Data Refresh Settings:  Use the server defaults. 
    Start Time: 8/4/09 1:00:18 PM 
    End Time: 8/4/09 1:01:07 PM 
    Server Used: gmmc-crs.reportjobserver 
    Error Message: server error. SMTP_E_TCPSOCKET_OPEN(2): CrystalEnterprise.Smtp 
    We tried changing the gmmc-crs.reportjobserver with no luck.
    Thanks,

    Hi,
    You need to start with your exchange logs and possibly enable tracing on your BO webi/crystal/destination job servers (depending on the type of report and whether or not it is scheduled) to get an idea of how far down the line the SMTP connection is getting.
    You could also confirm a few key things:
    Have the SMTP destinations on your BO servers been updated with the new SMTP server info
    Can you telnet to the mail server on port 25 from the BO server -  if not, then check the firewall between the two servers and change the existing ruleset to allow connectivity to the new server
    Possibly the old mail server didn't require authentication and the new server does, you could test this through telnet?

  • Readinjg mail from Microsoft Exchange Server

    Hi,
    I neeed java code to read emails from Microsoft Exchange Server.Can somone please share the code.
    Thanks in Advance
    Rama

    Thank you very much for the reply.
    I tried to write the code .At one place I am getting the below error.
    DEBUG POP3: server doesn't support TOP, disabling it
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/activation/DataSource
         at com.sun.mail.pop3.POP3Folder.createMessage(POP3Folder.java:333)
         at com.sun.mail.pop3.POP3Folder.getMessage(POP3Folder.java:314)
         at javax.mail.Folder.getUnreadMessageCount(Folder.java:761)
         at InboxReaderIMAPLast10.main(InboxReaderIMAPLast10.java:41)
    Pls help me in fiding the reason
    Rama

  • I am having trouble setting up a 2nd exchange server e-mail in entourage

    I am having trouble setting up a 2nd exchange server e-mail in entourage on a new macbook air.  Trying to set up exactly the same as on iMac but keep getting error message.  Any suggestions?

    You need to first set up a new account with the information provided by your university. They should supply you with an email address and you should be able to provide your own password. They should also provide you with the name of the incoming mail server to use as well as the name of the outgoing mail server. They should let you know whether to set up the account as an IMAP account or a POP account (with the servers to match).
    If you already have all this information at hand, setting up the email account should be fairly easy. What have you tried thus far?

  • Migrate or Redirect Client Mail Server to Microsoft Exchange Server

    Hi, i am new in Microsoft Exchange Server and Email Administrator. At present, my company planed to have a Microsoft Exchange Server 2013 and my scope will be redirect or migrate the webmail database to the Exchange. Would you guys give me any solution and
    advice for this? Thanks a ton
    Sorry for my bad English.

    Hello,
    The steps can be like this. There are various approached available and this can be a general approach
    1. Install and configure the Exchange 2013
    2. Export the current mailboxes to pst
    3. Create the current domains as accepted domain in Exchange
    4. Change DNS and direct email traffic to Exchange server
    5. Import the psts to new outlook
    Regards from Visit ExchangeOnline |
    Visit WindowsAdmin

  • Microsoft Exchange Server 2003 and Windows 8 Compatibility

    Is there a fix or workaround for accessing email via Outlook 2013 (Windows 8) when your company uses Microsoft exchange server 2003 and has not plans on upgrading it any time soon. I am a remote employee so I am the only one that has this problem in the
    company. I can access email through an owa account but it's a pain. I tried to set up a rule to have all incoming mail forwarded to my gmail account in Outlook 2013, but that did not work. Any other ideas?

    If server has enabled ActiveSync you can use Windows 8 Mail Client - works almost like Outlook.
    AFAIR Outlook 2013 can't work with Exchange 2003.
    Regards, Konrad Sagala, MCT, MCSE+M, MCITP: Exchange 2007/2010, Lync 2010, Office365, Windows 2008, Virtualization

  • Syncing ACT contacts while on automatic wireless syncing with Microsoft Exchange Server?

    Does anyone know if this is possible? At the moment, my company is automatically performing a wireless sync between Outlook contacts and their Blackberry Curve 8330 devices. However, employees that travel also need their ACT contacts on their phone. I've researched CompanionLink and know that I can get the ACT contacts directly onto the Blackberry that way, but, the problem arises where the ACT contacts will end up syncing back to the Exchange server -- which we don't want. We want to keep the automatic syncing with Outlook, but periodically we want to do a one-way ACT transfer onto our Blackberries, without having those extra (approximately 5,000) contacts go back into Outlook. Is there an easy way to categorize/separate Outlook and ACT? Any ideas or workarounds?

    flashman181 wrote:
    I am trying to sync my Outlook 2007 with my palm Treo Pro but keep getting the same error - server could not be reached Error code
    80072ee2. This is probably a basic question but the server you enter into the Microsoft Exchange settings in active sync is the mail server you have in Outlook 2007? eg mail.internode.on.net. I don't need to do anything to outlook 2007 to "activate" Microsoft Exchange.
    I'm looking at the Internode setup guides and it looks as though you have a POP server. In that case, if you want to sync directly to the server, you would want to set it up for POP/SMTP rather than for Microsoft Exchange Server. Does that help?
    If you do not want to sync over the air and instead want to sync only by USB/Bluetooth to your PC, I think that works quite differently. I don't have any experience with that.
    (Edit: Changed link style so it was more obvious.)
    Message Edited by Jeffro on 05-27-2009 07:05 PM

  • Microsoft Exchange Server on Mac OS X Server

    I am running Mac OS X Leopard Server on my Mac Pro with multiple clients, all using Mac OS X Leopard. Each client also has Microsoft Office 2008 for Mac installed with Entourage. Is it possible to install Microsoft Exchange Server on the Mac Pro and use it to set up calendaring for all of my Mac clients through Entourage?

    Hi Benjamin,
    Apologies for Jeff's rather useless answer.
    You can absolutely install Microsoft Exchange on a Mac Pro server to accompany OS X Server.
    Head over to VMware, Parallels or Oracle and grab a virtualisation hypervisor. I personally recommend VMware ESXi. 
    Setup a Virtual Machine running a copy of Microsoft Windows Server 2012 and Microsoft Exchange Server 2013. (More information here http://www.microsoft.com/en-us/server-cloud/products/windows-server-2012-r2/buy.aspx#fbid=f4pyYTvvgji and here http://office.microsoft.com/en-us/exchange/microsoft-exchange-server-2013-business-email-email-server-try-now-FX103765014.aspx)
    If you would rather not involve yourself with all the fuss involved with maintaining Microsoft Exchange, head over to Microsoft Office's website and Subscribe to Office 365 for Business. If you would rather not work with Microsoft at all, head over to Google
    and setup Google Apps.
    Thanks,
    Will

  • Using Microsoft Exchange Server in SOA Suite

    Hi Gurus,
    I want to use Microsoft Exchange Server for sending email notifications in SOA Suite.
    I tried connecting to my company( Exchange Server) SMTP name and port no but its failing with all options ( SSL, TSL , NONE).I even tested with OSB, adding SMTP server and sending mail using Business Service but it's failing
    I have tested with Apache James and Gmail as email server and it works fine,but problem comes when in want to configure it with company Exchange Server
    Did any one have configured/tried connecting to Microsoft Exchange Server using SOA Suite. Please provide your inputs.
    Socket Excpetion while sending emails in 11g
    says Oracle UMS does not works with Microsoft Exchange Server and we need to replace some jars.
    Please suggest !!
    Regards,
    Abhinav Gupta

    Hi Neeraj,
    for OutgoingMailServerSecurity       :      TLS
    *******error*****
    ******** in Email Driver Logs *********
    javax.mail.MessagingException: Can't send command to SMTP host;
    nested exception is:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at com.sun.mail.smtp.SMTPTransport.sendCommand(SMTPTransport.java:1564)
    at com.sun.mail.smtp.SMTPTransport.sendCommand(SMTPTransport.java:1551)
    at com.sun.mail.smtp.SMTPTransport.ehlo(SMTPTransport.java:935)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:426)
    at javax.mail.Service.connect(Service.java:310)
    at javax.mail.Service.connect(Service.java:169)
    at javax.mail.Service.connect(Service.java:118)
    at oracle.sdpinternal.messaging.driver.email.EmailDriver.send(EmailDriver.java:780)
    at oracle.sdpinternal.messaging.driver.email.EmailManagedConnection.send(EmailManagedConnection.java:50)
    at oracle.sdpinternal.messaging.driver.DriverConnectionImpl.send(DriverConnectionImpl.java:41)
    at oracle.sdpinternal.messaging.dispatcher.DriverDispatcherBean.onMessage(DriverDispatcherBean.java:296)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    *****IN console Logs *******
    Jun 25, 2012 3:45:36 PM IST> <Error> <oracle.soa.services.notification> <BEA-00
    0000> <<.> Error status received from UMS.
    Status detail :
    Status type : DELIVERY_TO_GATEWAY:FAILURE,
    Status Content : javax.mail.MessagingException: Can't send command to S
    MTP host;
    nested exception is:
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorExc
    eption: PKIX path building failed: sun.security.provider.certpath.SunCertPathBui
    lderException: unable to find valid certification path to requested target,
    Addressed to : EMAIL:abhinav.gupta@*********.com,
    UMS Driver : Farm_base_domain/base_domain/AdminServer/usermessagingdriv
    er-email:oracle_sdpmessagingdriver_email#Email-Driver,
    UMS Message Id : 23239c4f0ac0064b017335c74f86a8e9,
    Gateway message Id : ****.outlook.com:[email protected]@*******.com,
    Status Received at : Mon Jun 25 15:45:34 IST 2012.
    Check status details and fix the underlying reason, which caused error.
    >
    ********error *******
    for OutgoingMailServerSecurity       :     NONE
    *******error*****
    ******** in Email Driver Logs *********
    javax.mail.MessagingException: [EOF]
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:1481)
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1512)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1054)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:634)
    at oracle.sdpinternal.messaging.driver.email.EmailDriver.send(EmailDriver.java:781)
    at oracle.sdpinternal.messaging.driver.email.EmailManagedConnection.send(EmailManagedConnection.java:50)
    at oracle.sdpinternal.messaging.driver.DriverConnectionImpl.send(DriverConnectionImpl.java:41)
    at oracle.sdpinternal.messaging.dispatcher.DriverDispatcherBean.onMessage(DriverDispatcherBean.java:296)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    *****IN console Logs *******
    <Jun 25, 2012 3:57:10 PM IST> <Error> <oracle.soa.services.notification> <BEA-00
    0000> <<.> Error status received from UMS.
    Status detail :
    Status type : DELIVERY_TO_GATEWAY:FAILURE,
    Status Content : javax.mail.MessagingException: [EOF],
    Addressed to : EMAIL:abhinav.gupta@*****.com,
    UMS Driver : Farm_base_domain/base_domain/AdminServer/usermessagingdriv
    er-email:oracle_sdpmessagingdriver_email#Email-Driver,
    UMS Message Id : 232e2ab70ac0064b01cd6ee979e494ed,
    Gateway message Id : ****.outlook.com:[email protected].******.com,
    Status Received at : Mon Jun 25 15:57:04 IST 2012.
    Check status details and fix the underlying reason, which caused error.
    *******error*****
    Please suggest me what to do !! I am stuck with it for last two days !!

Maybe you are looking for