Mail 2.1.1: Can't read mails from Exchange server

Effect: *Mail 2.1.1* contacts the Exchange server successfully, which I checked with the operator, looking directly over his shoulder, but Mail 2.1.1 does not load any e-mails. Mail 2.1.1 loads down mails from another server with unknown software (gmx.de) successfully.
Mail 2.1 works nicely with absolutely identical settings with both mail servers
I am using Mail 2.1.1/MacOS 10.4.10 on my G4 and MacBook Pro, Mail 2.1/MacOS 10.4.10 on my G5.

No solution found - works again. Please no questions.

Similar Messages

  • Not getting all e-mails from Exchange server w/ OS Mavericks

    Hello all,
    After I installed OS Mavericks and opened up the mail app, only a small portion of my inbox (and other folders) populates in the app. Instead of all 50 e-mails in my inbox it is only showing 8. Looking back at my inbox on my iPhone and it still has all my e-mails. Is there anyway to fix this?
    Thanks..

    I'm having the same issue and have tried deleting the account and adding again but I only have emails that came in yesterday after Mavericks installed. My thousands of emails from the server did not load. They are everywhere else but on the updated Mavericks computer.

  • How to read information from Exchange server ?

    Hi,
    I would like to retrieve some information from my exchange server (mailbox size for example). But i need also to retrieve those information for a lot of people. How can i do that ?
    Thanks in advance.
    Ibouddha

    Please don't [url http://forum.java.sun.com/thread.jspa?threadID=699492&messageID=4059659#4059659]cross post.

  • Forwarding mail from Exchange server to an External email address (SBS 2003)

    Hi
    I hope someone can help me the above question. I need to forward email sent to a particular exchange email account to an external gmail one. i have set this up by creating a contact, I have altered the users Exchange general with the new contact. I have
    also made sure mail forwarding is enabled. I have been though all the basic steps to make this work. and tried many other things. i simply cannot get it to work. if an email is sent internally then it forwards it out fine. anything incoming will not forward.
    I looked at the NDR and it is clearly being blocked from leaving. i just cant see how to allow this. i get the following code. smtp;554 5.7.1 <[email protected]>: Sender address rejected: You're not allowed
    to send from that domain.
    Many thanks in anticipation
    Paul

    Are you using a smarthost? maybe you can test it to deliver mail trough DNS instead of a Smarthost.

  • Why "Outlook Express" users can't read email from Mail.app ?

    Why "Outlook Express" users can't read email from Mail.app ? Any explanation ? Select a good format,that's a good explanation,but i can't know each time if our recipients use "Outlook Express".

    There are no completely bug free email clients including the Mail.app and Outlook has its share of bugs for such an old/mature email clients and some glaring ones that MS has been aware of for a long time but has chosen not to do anything about since these do not affect exchanging email with other Outlook users.
    Outlook has always had problems with Mail's RTF and the degree depending on the Windows and Outlook versions used by the recipient.
    Check this link.
    http://homepage.mac.com/thgewecke/woutlook.html

  • HT201320 when my phone goes and gets my mail, can i get it to remove the mail from the server.

    when my phone goes and gets my mail, can i get it to remove the mail from the server.

    Only if it's a POP3 server. IMAP and Exchange synchronize the server and all clients.

  • Reading mails from Hmail Server

    hi all,
    I am using an java mail api to read mails from a hmail server.I was successfull in reading mails and analysing it further but the problem that i face is my program could read only the recent mails ,all the remaining unread mails were not accessible from the java code.......i am attaching my code...
    package mail.hmailserver;
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    public class ReadMail_frm_hmailserver {
         int c=0;
    @SuppressWarnings("unchecked")
    public static void main(String args[]) throws Exception {
    ReadMail_frm_hmailserver mailObj=new ReadMail_frm_hmailserver();
    mailObj.readMails();
    public Vector[] readMails() throws Exception
         String host = "172.29.19.78";
    String user = "[email protected]";
    String password = "testuser1";
    // Get system properties
    Properties properties = System.getProperties();
    // Get the default Session object.
    Session session = Session.getDefaultInstance(properties,null);
    // Get a Store object that implements the specified protocol.
    Store store = session.getStore("pop3");
    //Connect to the current host using the specified username and password.
    store.connect(host, user, password);
    //Create a Folder object corresponding to the given name.
    Folder folder = store.getFolder("inbox");
    // Open the Folder.
    folder.open(Folder.READ_ONLY);
    //folder.open(Folder.READ_WRITE);
    Message[] message = folder.getMessages();
    // String [] contents=new String[10];
    Vector [] contents = new Vector[message.length];//creating array of vectors to store mails
    // Vector contents1=new Vector();
    System.out.println("No of mails : " + message.length);
    System.out.println("subject 1 : "+message[0].getSentDate());
    System.out.println("subject 2 : "+message[0].getSubject());
    // System.out.println("subject 3 : "+message[2].getSubject());
    // System.out.println("subject 4 : "+message[3].getSubject());
    //System.out.println("-----------------");
    // Display message.
    for (int i = 0; i < message.length; i++) {
              c=0;
              contents[i] = new Vector(); //since vector array is an array of arrays we hav to initilize each of the content vectors
    System.out.println("------------ Message " + (i + 1) + " ------------");
    System.out.println("SentDate : " + message.getSentDate());
    System.out.println("From : " + message[i].getFrom()[0]);
    System.out.println("Subject : " + message[i].getSubject());
    System.out.print("Message : ");
    //System.out.println(message[i].getContent());
    Multipart multipart = (Multipart) message[i].getContent();
    //System.out.println(multipart.getCount());
    String line = null;
    for (int j = 0; j < multipart.getCount(); j++) {
    //System.out.println(i);
    //System.out.println(multipart.getContentType());
    BodyPart bodyPart = multipart.getBodyPart(j);
    InputStream stream = bodyPart.getInputStream();
    BufferedReader br = new BufferedReader(new InputStreamReader(stream));
    while (br.ready()) {         
         try {
                                  //line.append(br.readLine());
              //line=line+"\n"+br.readLine();
              line=br.readLine();
              if(line.equals("NOTICE")){
                        System.out.println("entered-----------------------------exit loop");
                        //exit();
                        c++;
                        break;
              if(c==0)
              contents[i].add(line); //adding the mails line by line to the array
                             System.out.println(line);
              //System.out.println(contents[i].get(j));
         } catch (Exception e) {
                                  // TODO Auto-generated catch block
                                  e.printStackTrace();
                                  System.out.println("Exception : "+e);
         //contents[1].add(line);
    System.out.println();
    //System.out.println(line);
    // contents[i].add(line); //adding the mails line by line to the array
    System.out.println();
    // folder.close(true);
    //store.close();
    //System.out.println(contents.length);
    //System.out.println(contents[0].get(0));
    //System.out.println(contents[0].);
    return contents;

    You might want to use IMAP to read mail from hMail Server, if you keep messages on server. It has a lot more features for managing messages on server.
    A lot of POP3 implementations (both client and server side) will automatically delete retrieved messages. I don't know exactly what JavaMail does in that regard, nor of hMailServer, but I do know some mailservers out in the wild will ALWAYS delete mails retrieved with POP3.

  • How can I make MFE delete the mails from the serve...

    guys,I am using mfe on my E63 with mail2web free account.I configured gmail to retrieve my hotmail mails then I configured gmail to forward my mails to my mail2web account.I did that so I dont have to have more than one mailbox on my phone and to be able to check my all accounts from one account which is mail2web via mfe.but my problim is when I delete an email via mfe from my phone its not been deleted from mail2web servers.I mean when I login on pc I see all the mails that I have been deleted.can I make the phone to also delete the mails from the server? thanx
    my blog on the net(in arabic):http://bazkurd.wordpress.com

    WaMuHIP07 wrote:
    Right-click the videos that you want to always start from the beginning in iTunes. The options tab of the video file properties contains this option control. Uncheck the box that says "Remember Play Postion."
    Or hit the left side of your scroll wheel when launching it on your iPod

  • I can't access my mail from the server!!!

    I am having trouble retrieving mail....I click on "Get Mail" and nothing happens. When I select the inbox and Get Info, it shows that there are a number of new emails on the server, yet my Mail program does not want to retrieve them. I checked to see if my account was enabled (under Preferences) and it is....I don't understand what the problem is...this is happening in a networked office of 10 other macs, and only one other person is having this exact same problem. very weird. internet works fine.
    any suggestions? I'm about to download a new mail program like entourage if this keeps up.
    thanks,

    POP account.
    We own Entourage already, so that isn't a problem.
    Right now we're using www.mail2web.com as a temporary solution, but that isn't really practical for a professional architecture firm where email records are essential to our business.
    I would love to keep using Mail, I really have no idea how to fix this problem. I don't know why it is only happening to 2 of our 10 computers, there is no difference in the setup of any of them, and this started mid-morning, so I know that the users did nothing to the settings. It just stopped wanting to pick up mail from the server.
    File size does not seem to matter, because one of the computer's mailboxes has about 10,000 emails saved, and the other has about 20, and they are showing the exact same behaviour. It is really strange!

  • How to fecth the contents of a mail from the server by using jsp

    hi
    Can any body tell me how to fetch the contents of mail from the server by using javamail api...please send me code if some one have
    bye.

    hi
    Can any body tell me how to fetch the contents of mail from the server by using javamail api...please send me code if some one have
    bye.

  • Recovering mail from a server backup

    A bunch of messages have disappeared from an Imap mailbox, at the same time as the Time Machine backup disk at the client Mac has failed.
    So, I'm looking to recover the missing messages from my OS X Server Mac mini, which has a known good Time Machine backup.
    Can anyone advise an approach please. I'm unclear why the messages disappeared in the first place, but I assume that if I can somehow access them from the server backup, I can restore.
    I could:
    - Save off current messages from the client
    = Restore the server to a point before the messages disappeared
    - Copy back the saved current messages
    Is there a better way?
    And does anyone have a theory as to why the messages disappeared in the first place?
    Thanks all

    There really isn't a better way, IMHO.  I've had to do the restore and it only restores the mail directory.  So I took the same approach:
    1.  Export or copy to another folder within mail all of the user's email.
    2.  Restore the Mail file on the server.
    3.  Reconnect the client to the Mail server.
    4.  Manage deltas using the archived messages.
    There may be another, more technical way to do this.  But if the amount of mail isn't too bad, this is a very quick way to "fix" it.

  • Mail with Exchange Server 2007

    About a week ago our company upgraded from Exchange Server 2003 to 2007. Since Mail is more or less not working anymore. As soon I send an email Mail hangs. It tries to send the mail forever. As soon Mail check for new emails, this will hang too. After that point, I can not even look at emails already downloaded to my computer. Instead of the text, I only get an icon "loading".
    Has anybody had the same experience. And even more important, maybe a fix. Working with Parallels and Outlook is a pain in the a. I don not have Entourage.
    Thanks for your input.

    Go to your Exchange accounts web access (OWA) and see if the mail in Mail matches the Mail in OWA.

  • Ever since iOS 7 was installed on my phone it keeps fetching all and any e-mail from my server and it is taking up tp as much as 2.5 GB even after I delete the messages! Now after a complete wipe and restore it is happening all over

    ever since iOS 7 was installed on my phone it keeps fetching all and any e-mail from my server and it is taking up tp as much as 2.5 GB even after I delete the messages! Now after a complete wipe and restore it is happening all over again why can't the techs at apple fix this defective program??????????????

    ever since iOS 7 was installed on my phone it keeps fetching all and any e-mail from my server and it is taking up tp as much as 2.5 GB even after I delete the messages! Now after a complete wipe and restore it is happening all over again why can't the techs at apple fix this defective program??????????????

  • Importing mail from Exchange to MS CRM

    Hello all,
    Microsoft Dynamics CRM 2013 receives all mail since it was activated, the emails were in Outlook before CRM be active not appear.
    I do not have the backup of independent Outlook but Microsof Exchange Server.
    How do I import mail from Exchange to CRM?
    Please would like response!
    Many thanks
    Best regards

    1. CRM is not a backup for Exchange. So while I get while there can be business value of old email in CRM, don't treat it like a backup system.
    2. If you use the Dynamics CRM Outlook Plugin, as a user you can just go back to your old email archive and click "Track in CRM".  This will also give you the granularity of what's relevant and what's not for storing in CRM.
    The postings on this site are solely my own and do not represent or constitute Hitachi Solutions' positions, views, strategies or opinions.

  • Sending Mail from EBP Server

    Hi,
    I am trying to send external mail from EBP server through the function module SO_NEW_DOCUMENT_ATT_SEND_API1. I have passed similar kind of values to the parameter which I have used for R/3 while using the same function module. In R/3 server the function module is working fine but not in EBP. I am new in EBP. Does this function module work fine in EBP ? If not can someone provide me any Function Module name through which I can send external mail ?
    Thanks in advance,
    Achirangshu

    Hi,
      Try the FM "SO_DOCUMENT_SEND_API1".
    BR,
    Disha.
    Pls reward points for helpful answers.

Maybe you are looking for

  • Bootcamp, running into multiple issues....

    As a little bit of backstory, I bought a MacBook (late 2009 edition with Snow Leopard) because I was having issues with my old Windows XP PC desktop, which was invaded with trojans and viruses. I had to delete everything, start up from scratch and wi

  • Clearing GL with Open Item Management

    Dear Experts.                 A liability GL (Remuneration Gl account) has been created by the client in the system without open item management. After that several entries has been posted in that GL account. Few months back they have activated Open

  • No image processor in tools menu in cc

    I have no access to image processor, contact sheet II or anything else in the tools menu in Bridge CC

  • How do I update my status only via iOS for Facebook on iPhone 5?

    I have iPhone 5s. I have account info to  my Facebook app. I know I can update my status "via iOS" with a picture. My question is: How can I update my status ONLY "via iOS" without having to upload a picture. When I had my iPhone 4s I used to do it s

  • Document Types and No. ranges

    Hi Gurus, How many types of document types should we have in a business? If we have 5 banks and client wants number ranges of bank vouchers related to one particular bank should be in continuation, so How it should be done? Please revert asap. Thank