Reading mails from Zimbra inbox.

Hi,
I have a basic program to read the inbox of a zimbra mail user.
i have supplied the necessary information like username passwd,
Can someone please tell me what is the pop server required for the Zimbra mail client.
i know it is somethign do with the LDAP. but how do i find tht out?

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.

Similar Messages

  • How to read a mail from sap inbox thru abap code?

    how to read a mail from sap INBOX thru abap code? can anyone tell me the technical approach? I NEED TO READ A MAIL and then need to pass the parameters to a bapi.
    Message was edited by:
            shahid mohammed syed

    Hi SSM,
    Did you manage to have your program working? I also have same requirement. I tried standard FM and BAPI but I always encounter authorization error when I tried accessing other user's mail. Thanks.
    Regards,
    Ryan

  • Problem-Solution: Help! Whenever I Archive a read e-mail from my Inbox, it shows up in Archive as Unread.

    Problem: Help! Whenever I Archive an already read e-mail from my Inbox, it shows up in Archive as Unread.
    Solution:
    Open Mail.app >
    If your vertial mailbox list on the right is already showing, then skip the next step.
    Click [View] then [Show Mailbox List] >
    Delete the Smart Mailbox "Today" from the list. >
    Quit Mail, then re-open it.
    Why is this happening?
    I've seen this since Mavericks 10.9 launched but it's likely to have existed earlier than this. My conjectural opinion is that using a Smart Mailbox like "Today" (turned on by default) seem to exacerbate this behavior. I've noticed it happens a lot more often than not with a Gmail account as well, even running 10.9.1.

    Update to above question:
    Hello All,
    To anyone with the same problem described above, on THEIR iPad (if it is running iOS 7.0.2):
    Go to Settings; Mail, Contacts, Calendars; DELETE your *******@btinternet.com e-mail account, that you originally set up either using 'Other', or the 'BT' option which I am sure was in the list previous to the iOS 7 update.
    Then ADD a NEW account choosing YAHOO from the list of options. DO NOT USE 'OTHER'.
    Enter the correct details just as you (almost certainly) had already done in your previous attempts using 'other'.
    When you see the 'verifying......' and 'the blue ticks' you should be able to exit settings and open your mail app and then receive all your 'old' e-mails again, AND be able to SEND as well.
    All my 'old' e-mails, were NOT found in the 'old e-mail' folder though. THEY are still in my inbox.
    So this fix worked for me.
    After I deleted my account from 'OTHER' and put it in Yahoo, I like other people also ended up with more folders.
    I hope this works for you on YOUR Apple devices.
    Bob

  • I cannot delete mail from my inbox and get a message saying (msg) could not be moved to the mailbox trash-POP account".

    I suddenly cannot delete mail from my inbox and get a message saying " (msg) could not be moved to the mailbox trash-POP account".  It does not matter if I am trying to delete a single message or mulitiple messages.  Can anyone help?

    If you're running Leopard, as your profile says, then you need to post your question in that forum, not the Snow Leopard forums. So if you're really running Snow Leopard, you need to update your profile to show that, as well as give more details about what kind of mail accounts you have, and who your email provider is.

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

  • Sending mail from sap Inbox to outlook

    Hi All,
    Iam new to SAP workflow. Here I need to send the mail from SAP Inbox to Outlook for high priority keeping red flag as icon.
    can anyone tell me how to set up this and go ahead to start.
    Thanks
    Kumar

    IF I understand you correctly, you want to send a mail to Outlook (external email address) as a step in Workflow.
    If you are on Release 6.20 or above the following solution will work. I do not remember what is available in earlier releases.
    1) Define a multiline element based on SOXNA-FULLNAME to hold the email addresses. How you populate this element with the addresses depends on your requirements.
    2) Insert a Send Mail step in the workflow.
    3) In the Mail Tab, Select 'U' as Recipient Type.
    Assign the Multi Line element defined in Step 1 to E-Mail Address.
    4) Define the Subject and the body as needed.
    Please note that you should have External mail sending from SAP enabled and a batch job that runs periodically to push the mail.
    Cheers,
    Ramki Maley.

  • Mail issue: received mail is being replaced by older mail from my inbox

    Some of my inbox received mail content is being replaced by older mail from my inbox.  Since I receive mail from my gmail account, I have to go there to check the mail which is not replaced.  An ideas/suggestions?

    Did it work correctly before now?
    Not certain, but this can fix myriad Mail problems...
    Safe Boot from the HD, (holding Shift key down at bootup),  it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move this folder & file to the Desktop.
    Move this Folder to the Desktop...
    /Users/YourUserName/Library/Caches/Mail/
    Move this file to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    Reboot.
    If that doesn't do it and you can afford to redo all your Rules, try these & reboot...
    /Users/YourUserName/Library/Mail/MessageRules.plist
    /Users/YourUserName/Library/Mail/MessageRules.plist.backup
    Note, in 10.5 & up /Users/YourUserName/Library/Caches/Mail/ may or may not exist.
    In Mail's Window Menu, choose Connection Doctor, any red dots for status, if so what is the message?
    Then click the Show Details button & Check again.

  • Read E-Mail Actionblock -Unable to read mail from Mailserver

    Hi,
    As a part of business requirement I need to write a transaction which picks the attachment from a particular mail on a server on a scheduled basis.
    I am getting the below error while trying to connect to the server
    [INFO ]: ReadMail: Connecting To: xxxx.yyyy.mycompany.com
    [ERROR]: ReadMail error: Connect failed; nested exception is: java.net.ConnectException: Connection refused: connect+
    [ERROR]: ACTION FAILED: End Action ReadMail_0 :
    But with the same credentials I am able to send mail from xMII using the Send mail action block.So this signifies that I am using the right MailServer name.
    Is this the problem with the firewall with the server ? or
    Will there be different MailServer name for receiving and reading mails?
    How to know which port number to be used?
    Did any one faced this problem before?
    Appreciate your help
    thanks
    Raj

    Hi,
    Im also having problems with reading mails from mailserver.
    When I execute the transaction the action block Read Mail return me the following error:
    [ERROR] [ReadMail]Unable to read mail Exception: [unicode-1-1-utf-7]
    Could anybody help me?
    P.S.: Im using the imap4 protocol.
    Thank you!
    Edited by: Thiago Barros on Jul 29, 2010 5:15 PM

  • How can i autoforward that mail from SAP INBOX to the outlook

    Hi ,
    My Requirement is that,
    I have to send an email to outlook, whenever PO Created in SRM System
    I have created  custom workflow, i have added a sendmailtask step, i given the SAP userid to send SAP Mail to the user.
    It is sending SAP Mail to the User to his inbox perfectly.
    Now, how can i autoforward that mail from SAP INBOX to the outlook. This is has to work for all users.
    Please give some suggestions. ot it can be achived any other way.
    Note: This is Email Message not a workitem.
    I have doubt that RSWW program will work only for workitems.*
    Thanks & Regards,
    Suresh.

    Hi ST,
    what I understand from your requirement is that you are able to send messages using SendMail Step to SAP Inbox and now you want it to be sent to users Outlook.
    Here you need to create a container which would store users email address of Outlook (which would be stored in SU01 or in a ztable), use this container in your Send Mail step and in the Recepient Type as email.
    Hope it helps.
    Aditya

  • Is it possible to delete multiple e-mails from the inbox in the Mail app? If so, how do you do it?

    Is it possible to delete multiple e-mails from the inbox in the Mail app? If so, how do you do it?

    Yes, it is possible. When you are in the relevant inbox, tap the 'edit' button on right hand top corner. now select the mails you want to delete by tapping in the small circle next to the mail. keep selecting and in the end tap the red delete button that will show you how many are being deleted

  • IPad Air - swipe to read mail from lock screen doesn't work

    Bought an iPad Air and have a small problem. When I try to swipe to read mail from lock screen, it won't go directly to the mail app itself.  Can anyone help or tell me what the problem is??

    Rather than post a reply to a thread which has been dormant for well over a year please start a new thread detailing your problem and any troublehooting steps you have taken.

  • Error while reading mail from inbox

    hi,
    i have created a mail program which downloads mails from the ISP. In this program i am storing the message object in a List object and send it to another class for it to continue the download process. but i am getting this error.
    javax.mail.MessagingException: Open failed;
    nested exception is:
         java.io.EOFException: Unable to lock mailbox
    i am giving the code below.
    Message mNew[]=null;
    Message m=null;
    Store store=null;
    Folder folder=null;
    do
          // this loop checks if the email connection is available
          // if not it tries to get the email connection by calling
          // the getEmailConnection
          if(!isEmailConnected)
            isEmailConnected=ecm.getEmailConnection(hostname,username,password);
          else if(isEmailConnected)
            this.store=ecm.store;
            try
              folder = store.getFolder("INBOX");
              folder.open(Folder.READ_WRITE);
              m=folder.getMessages();
                for(int i=0;i<m.length;i++)
    //              This checks if the inbox folder
    //                is of POP3 type. if it is of POP3
    //                type we get all the messages Unique Identifiers
                  if(folder instanceof com.sun.mail.pop3.POP3Folder)
                    com.sun.mail.pop3.POP3Folder pop3=(com.sun.mail.pop3.POP3Folder)folder;
                    uid=pop3.getUID(m);
    // if the list contains the unique identifier
    // then no process is executed otherwise
    // the unique ids are maintained in the list
    // called pop3List.
    if(pop3List.contains(uid))
    else
    mNew[newCount]=m[i];
    pop3List.add(uid);
    newCount++;
    * This adds the new incoming email List of addresses to the method newEmailRecieved
    * which is iin another class.
    listener.newEmailRecieved(m);
    folder.close(true);
    catch(Exception ex){System.out.println("Error Occured"+ex);}
    while(true);

    hi,
    to continue with my post, i am using POP3 provider to get the messages. any help is appreciated
    regards
    Kiran

  • I received a "Ghost e-mail" (duplicate of another e-mail. I could delete the original, but can not get rid of the "Ghost" e-mail from my inbox?

    I received a ghost, or duplicate e-mail on my Mac and am unable to delete the duplicate from my inbox.  There is no message when you open it, The message came from Gacebook.  What can I do to get this deleted?

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox
    Comcast online email is considered '''web mail''' so you need to scroll down that support page to the web mail section.

  • I am loosing several e mails from my inbox and sent trays.   What is going on and how do I solve the problem

    I am loosing several emails from my inbox and from my sent tray on both my imac and my mac book but not from the same accounts on a Windows PC.  What is going on here?  How can I cure the problem?

    What version of OSX?
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If 10.7.0 or later...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk.
    Then in Mail, select each Mailbox & Rebuild from the Mailbox menu.
    Is this a MobileMe or dot mac account?

  • Reading mails from outlook express

    hi..
    i m doin a project on Bayesian Filters to detect spam mails.I need to extract mails from microsoft outlook express that are in the .dbx format as text files.Can someone jus help me out with this.. Its urgent!!!
    it should b usin java.I have heard of mbox but dunno how to use that.So please help me out with this
    regards

    i m doin a project on Bayesian Filters to detect spam
    mails.I need to extract mails from microsoft outlook
    express that are in the .dbx format as text files.Can
    someone jus help me out with this.. I bet Microsoft can.
    Its urgent!!!Not to me.
    it should b usin java.Why? I'd say it should be in VB or something.

Maybe you are looking for

  • Troubles with the admin console

    I'm using SunOne Message Queue 3.0.1 on Windows (sorry...). I had been using both the broker and the graphical admin console for months, when, apparently for no reason, the console stopped working, that is, when I launch imqadmin.exe nothing happens

  • Error synchronizing Sharepoint with Outlook

      I try to connect one document library in Outlook. The configuration connection, work fine, I see in Outlook (under SharePoint list in Outlook) the correct folder (named as Document library) but: Don't see the documents and the outlook synchronizati

  • Face time error verification email

    Hello    I have an issue with Face time the soft didn't work so I decided to upgrade my OS from snow leopard to maverick So I tried to log in on face time First time I filled my idenfiant Apple and my password ... ok It began to check my email never

  • BLACK screen Acer Aspire E5-511 Windows 8.1

    Hi guys. I'm at my wits end here. I want to throw the computer out the window. Here is what is going on. First, it's my Mom's computer, all she uses it for is facebook. She got it at Christmas, but didn't start using it right away, has really only us

  • Sequence of Migration activities

    Hi, Is there a sequence that must be followed while migrating BI objects. i.e. let us say if I Migrate queries before dataflow does it make a difference. Also kindly let me know the system requirement in terms of SP level, Java Stack or ABAP Stack re