Mail through an Microsoft Exchange Server

The mail at the business is run through an Exchange server. A pop3 account collects the mail and sends it to the server (no one wanted to change their old email accounts). Everything works fine directly connected or wirelessly connected at the office.
When I go wireless on my laptop at Tmobile or wherever, I can receive mail no problem. When I send mail I get a "Can't use the pop3 account server". It directs me to the Exchange server...which does not work. But I have to try it because when I do it directs me back to the pop3 server...which then works! What's up with all that? Is this a simple setup issue or just a workaroud I have to live with?
I am using Apple Mail.
Dan
iBook 800mhz PowerPC G3   Mac OS X (10.4.8)  

Living with the work around.

Similar Messages

  • I use the MAIL app with Microsoft Exchange server- prob with attachments

    Occasionally I get an email in MAIL that I KNOW has an attachment but it doesn't appear in my MAIL client. I see no attachment icon at all. I have to go to WEB-MAIL to retrieve it and sure enough it's there. Has anyone else encountered MAIL's idiosyncratic behavior in this regard?
    Another "sometimes" problem is with HTML emails. Sometimes they come in with no graphics, mostly text, lines etc, and sometimes they even look like CODE.
    I think (hope) these things will be solved with Snow Leopard, but in the meantime... Anyone?

    I gave up on mail for exchange and use Entourage for my exchange mail - not helpful I'm afraid but mail simply does not work well with exchange in my experience (and in lots of other's)
    LN

  • 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?

  • 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.

  • 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.

  • 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.

  • Sending Reports Through Microsoft Exchange Server

    Hi,
    We are working in oracle applications 11i on solaris. In Oracle HRMS we have a customized report that generates pay slips for employees in PDF format.
    Please note that currently we are not implementing the Oracle Self Service feature as our organization hierarchy is not built in the system.
    So, We are studying the possibility of sending these reports by email to the staff through Microsoft Exchange Server.
    Can someone guide me where to start and what do I need to accomplish this please....
    Thank you..

    Hi;
    What is your EBS and OS?
    If you are usign concurrent manager for getting report please check below:
    How to Configure Concurrent Request Output Option to be Notified by Email . [ID 456925.1]
    Also check workflow notes:
    Control - Workflow: Setup Doc ID: 113664.1
    Oracle Workflow Best Practices Release 12 and Release 11i [ID 453137.1]
    OWF Diagnostics, Solutions and Information Doc ID:332152.1
    11i/R12 - A guide for troubleshoting Workflow Notification Emails - Inbound and Outbound Doc ID:831982.1
    Hope it helps
    Regard
    Helios

  • 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.

  • Spam Protection for Email showing Critical for Exchange Server 2007 after installing Symantec Mail Security for Microsoft Exchange

    Hi there,
    I have SBS 2008, and I have recently installed Symantec Mail Security for Microsoft Exchange  version 7.5 but when I take a look on Windows SBS Console under Security, it shows "Spam Protection for Email Critical Exchange Server 2007" However,
    when I open the SMSME it shows running well with no problem..
    Any Suggestions???
    Thanks

    Hi,
    Would you please let me confirm whether all functions (which are related to Exchange Server) run as normal? Just
    a confirmation, thanks for your understanding.
    Please run
    SBS BPA and check if find relevant issues. In addition, please refer to GaryD9’s suggestion in following thread and check if can help you.
    SBS
    2008 & Forefront Protection 2010 for Exchange - SBS Console Error
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • 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.

  • 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

  • Mail on Microsoft Exchange Server

    It seems as though this topic has been beaten to death. I've read nearly every post about getting Mail to work on Microsoft Exchange servers, but I can't make it work on ours.
    I am fully functional on the Exchange server using Entourage. However, I simply cannot figure out how to make Mail work on the Exchange server. It seems like some have had luck using the account type IMAP and some using account type Exchange.
    I've entered nearly every possible combination of settings, but have had no luck. Is there at least an explanation as to why Entourage will work but Mail won't? I'd still love to get Mail working...any ideas?
    Any help is much appreciated!

    Hi pblakes9,
    I can try and help, I have 10 Macs running 10.4.8 and 3 running 10.4.10 all using Apple Mail with the Exchange Server and no problems.
    I have them all set up the same using the account type "Exchange".
    Before Apple added that as an option, we had them set up using IMAP.
    However it seams that even the account type called "Exchange" is using a IMAP protocal. (excuse me if that is not the right term) What I am trying to say is that our IT people said that no matter if I use the "Exchange" or "IMAP" account type, the Mac talks to the server using "IMAP".
    What this ment to us is IT needed to make sure that "IMAP" was enabled on the server.
    If you are using Microsoft Entourage version 11 (from Office 2004). This does not use IMAP. So this would still work on your Mac even if IMAP wasn't enabled on the server. However Microsft Entourage version 10 did use IMAP.
    Chris
    Dual 2.0 GHz G5, Dual 1.2 GHz G4, 35o MHz G3, Old G3 Tower   Mac OS X (10.4.8)  

  • 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

  • How to configure email through microsoft exchange server

    Curve 8520 with vodafone

    Instructions
    1 Click the “Full Menu” button located to the immediate left of the trackball.
    2 Click the “Settings” icon in the Full Menu.
    3 Click the “Setup Wizard” icon on the Settings page.
    4 Click the “Email Setup” link in the Setup Wizard.
    5 Select the first radio button labeled “I want to create or add an email address.”
    6 Click the “Next” button twice.
    7 Type the email address for the account on the Microsoft Exchange Server in the first input box.
    8 Type the email account password provided by the email administrator.
    9 Click the “Next” link. The device will attempt to access the email account on the Exchange Server and download items. If connection is successful, the email account has been successfully added to the Blackberry.
    Please thank those who help you by clicking the button.
    If your issue has been solved, please resolve it by marking "Accept as Solution"

Maybe you are looking for