Reading Mail from Yahoo/Gmail

Dear All,
using SAP XI/PI is it possible to read a mail sent to my Yahoo or Gmail ID?
(it's not a Project requirement)
Thanks and regards
Bhasker

Hello!
This has been also discussed in the thread
Re: GMail account in Mail Receiver Adapter
and the opener was able to successfully connect and exchange messages with the GMAIL server.
The blog below might also be helpful:
/people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
Regards,
Lucas

Similar Messages

  • Accessing Outlook Mail Which Receives Push Mail From Yahoo

    I have Outlook 2007 on a PC that I use for work. I do not use an exchange server. Rather, I receive my mail from Yahoo via push to Outlook 2007 on my PC. I have my iPhone set up using Yahoo. After I read my mail and delete the messages on my iPhone, I find that when I connect to my PC to sync, all the emails I deleted on my iPhone appear again on it. I can only assume that they are being brought back because the iPhone is getting them from Outlook 2007. I need to keep the emails on my PC in Outlook 2007 for future reference, but not on the iPhone. Is there any way I can still keep syncing my contacts and calendar with Outllook 2007 but keep the deleted email from appearing on my iPhone again?
    Thank you!
    PC   Windows XP   Outlook 2007

    Turning off SSL will help for incoming mail, but it will disable your ability to send email. At least, that is what happened to my sbcglobal.net account. SSL is required for outgoing mail. And for incoming mail, when I turned SSL off, I got a nasty email from AT&T that not using SSL was a big no-no. I have scoured the forums and all of the online sources I could find, and there does not appear to be a good fix. Has anyone called Apple Tech Support or AT&T about this issue? I assume that people have, and that Apple and AT&T have not provided a viable solution. Hopefully there will be a fix in a future update to Leopard. 10.5.2 didn't seem to fix the problem.

  • Why won't my ipod let me get mail from yahoo?

    My iPod won't let me get mail from yahoo...

    iOS: Unable to send or receive email
    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?
    Many users report problems with Yahoo mail.

  • My 3GS will not send e-mails from yahoo. Keeps saying the username or password is invalid. How can I fix this?

    Any idea how I get fix my iphone so it will send e-mails from yahoo? It keeps saying username or password invalid. I can receive e-mails without any problem. I have tried deleting the account and reinstalling it, chek the username and password and they are correct. Went under outgoing server but it is grayed out and won't allow me to edit and add the optional username or password or anything in that section. Please help.

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    Finally, if the Restore doesn't work, let the battery drain completely.  Then recharge for at least an hour and Restore again.

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

  • We use the Apple mail server to get e-mails from our gmail and comcast mail accounts. Recently we have been getting spam that claims to be sent to a gmail address, but when I check that address directly, there is no such e-mail. ???

    We use the Apple mail server to get e-mails from our gmail and comcast mail accounts. Recently we have been getting spam that claims to be sent to a gmail address, but when I check that address directly, there is no such e-mail, either in the inbox or in the spam folder. Is it possible to bypass the gmail account and send directly to the Apple mail server, spoofing the gmail address?

    Maybe some info here for you about spoofing. (and much additional info)
    http://www.thesafemac.com
    Hope this helps

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

  • 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

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

  • Getting all mail from a gmail account

    I am trying to download all my old emails from an gmail account via thunderbird. The main reason is for backup. The problem is that each time I push on GET MESSAGES it only downloads a few mails. I need to wait till it ends and then click again and so on. It will take a lot of time from my work. Is it any way to download all at a time or at least a huge amount each time???
    I am using a MacBook Pro, running MAC OS X 10.9.5 and thunderbird 31.2.0.
    Thanks in forehand

    see http://gmailblog.blogspot.com.au/2013/12/download-copy-of-your-gmail-and-google.html
    Note the google backup file is mbox format, that is Thunderbird mail format, so use this add-on to import to Thunderbird if you want to https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/

  • Delete Mail From Server Gmail-Imap-Account

    Hi,
    My problem is that when I delete email from the z10 it Doesnt delete it from the server
    1. I am use to read my mails from some devices (web,macbook,mobile)
    2. had an ios device before and use to have mails automaticly deletes from the server as well
    3. If its not possible I beleive it will be available on the next release (10.1.2 ?)
    4. If someone know how to solve this issue it will be nice (not a fan of pop3 )
    Thanks 
    Solved!
    Go to Solution.

    hollywoodhenry wrote:
    Hello,
    Has there been a solotion to this?? 
    My blackberry 9900 would allow me to delete an email on my phone and it would also be deleted on GMAIL. 
    Now with the new Blackberry OS,  I delete an email on my phone and the only action it does on GMAIL is removing it from the inbox, but it still appears in ALL MAIL, so after weeeks of this, there are litreally hundres of emails still in ALL EMAIL that i thought I had deleted already. 
    It's a matter of tweaking your Gmail settings to have the email go to Gmail Trash instead of All Mail.  The article at this link has the clearest desription I've seen..  This is working for me.
    http://crackberry.com/how-get-gmail-delete-hub-without-archiving

  • I can no longer send mail from my gmail account on my iPad.

    I can send mail from my iPhone just fine so it isn't gmail. I deleted the gmail app and reinstalled it; restarted my iPad; and checked the settings. My wifi is working as is evidenced by the fact that I wrote and posted this from my iPad with no problems. Anyone have an idea of how to fix this?

    Is your printer selected?
    Or are you printing to XLS?

  • Is there a way to disable push mail from Yahoo? It's draining my battery

    I'm on the prepaid plan and every 10-15 minutes my iphone turns on with a "The last transaction cost $0.00" message. I don't mind the message (although it is a bit annoying) but my problem is that this turns the LCD on for about 2 minutes at a time.
    I charged my battery to 100% last night, haven't used it at all today and after just turning it on a few minutes ago I had the "Your battery life is at 10%" message followed by a 5% remaining message a few minutes later.
    I've heard that it's the yahoo push mail service thats causing the phone to give the message (since it connects to the internet). My Yahoo account is my main one and I'd hate to have to login to yahoo's site each time to check it (the email functionality was a big selling point for me with the iphone). ATT/Apple don't seem to want to disable this message/"Feature", so I'm guessing I would need to step in and do something on my end.
    Is there any way to disable yahoo mail from "pushing" messages to my phone? I can hit the Check Mail button if I have to.

    Hi Everyone,
    To give an update on the situation: I disabled the Yahoo account and it seems to make a VERY NOTICEABLE difference in battery life - prior to this my battery would drain quite rapidly but since disabling it it's only lost about 15-20% over the past 24 hours (and thats with using the video/music/internet functions for about an hour and a half).. Prior to this it would have been close to drained under the same circumstances.
    Also, to confirm, the "Your last transaction cost 0.00" messages only appear when accessing the internet manually now. before they appeared every 10-15 minutes with no interaction from myself at all (while it was sitting idle, while watching videos, while charging, while in my pocket, etc..)
    I do have it set to only check Manually but Yahoo would seem to check on it's own even though this setting is checked (I'm guessing it has to do with the Push setting). Aside from draining the battery, it was quite annoying having 30 or so "Your transaction cost $0.00" messages to click through whenever I turned on the phone.
    I did have the screen set to shut off after 1 min, but the 'your transaction cost..' messages would first wake the iphone up, the screen would stay bright for about 30 seconds, dim for about 30 seconds, then turn on bright again for 1 minute until it shut off. I'm guessing the screen (being on for about 10-15 minutes per hour due to this) and the fact that yahoo accesses the internet on such a frequent basis are what cut the battery life down.
    I really wish I could make Yahoo work more like Gmail and have it manually search for new mail

  • Why Can't My iMac Retrieve E-Mail from Yahoo?

    I am having persistent difficulties consistently connecting to Yahoo! in order to send and retrieve e-mail.  Nothing has been changed except the password, which I've updated.  I can retrieve e-mail from my Yahoo account via Safari, but for some reason my iMac's mail application cannot.
    Does anyone have any ideas?
    Fred

    Have opened Mail, under Mail select Preferences, select the Yahoo account and delete the password and the renter it?  Some times it is necessary to delete the account then reestablish the account info to clear problems.

  • How do I send mail from my gmail alias?

    I have a gmail account ([email protected])  that forwards to another gmail account ([email protected]). How do I respond to email in iPad mail from the forwarded account (1@gmail)? Right now, only [email protected] can send email.  This is possible in gmail in a browser but not in the Mail app. thank you!

    kgaddy: "Also, for anyone looking to send email using a gmail alias from your lap/desktop/OSX (I'm using Lion/Apple Mail)... just include both addresses in the email field in your account settings.  Seperate them with a comma (e.g. > [email protected],[email protected]), and whichever address is listed first becomes the default email address used for sending email."
    Fantastic tip!
    I've been trying to set up additional accounts for the alias with no luck but this worked great.
    Thanks very much for this, it's much appreciated.
    Cheers.

Maybe you are looking for