Picking mails from a particular sender using mail sender adapter

Hi Everyone,
I want to create a scenario in which i want to pick mails from a particular sender and send it to XI.
I don't want all the unread mails to be sent to XI but only those belonging from a particular sender.
How should i configure the mail sender adapter to achieve the same.
Thanks and Regards
Rahul Nawale

Hi,
there are two ways to do that:
not standard:
create a java proxy which will check your maibox for mails
from only one particular sender and then send messages
to the xi
more standard:
create a new accound and redirect your mails from a particular sender from the main mailbox to this new one
and poll from this new one only...
this way you'll be able to use atandard mail adapter
with no changes at all
Regards,
michal
<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Similar Messages

  • TS3276 I have issues receiving e-mails from a particular sender. I can send e-mails to them but they can't send to me. They get "None of your e-mail accounts cold send to this recipient"

    Like stated above. I cannot receive e-mails from a particular e-mail address. I can send to them but they can't send to me.

    Have you contacted your email provider and asked if for some reason that sender or domain has been blacklisted?

  • How can I stop Mail from replicating a message & trying to send?

    A few days ago I tried to send out an email with three attachments which totaled over 53 megs. Of course it was too large for the server and I recieved bounce back that the message could not be sent. I then created two seperate messages with the attachments at appropriate sizes. I have multiple email accounts and didn't tink anything of the event other than "I should have checked before sending..."
    The next day I started getting the system warnings that there was no available space on my hard drive. The previous day I had over 5 gigs of available space.
    After researching a few options I noticed the Mail application was having trouble sending an recieveing from one of the four accounts. Then I spotted the culprit - the account was trying to send out the mail with the 53 meg attachment. It was replicating and storing the message and attachment in the "On My Mac" saved mail folders as "Recovered Mail". It had replicated 100 times - 5 gigs worth. The message was not in my Outbox or Sent mail folders.
    When accessing the newly created "Recovered Mail" folder and trying to delete the specific messages the application would crash. The work around was to delete the folder. Howver, the next day the folder re-appered and began populating the hard drive with duplicate files.
    - Have tried virus scan (Norton AntiVirus) and using Norton Firewall to lock down all drive to internet traffic (annoying with block / allow mesages).
    - Have tried deleting the account and re-creating it.
    After a few hours or a day the dreaded "Recovered Mail" file was back and hogging drive space.
    The account is accessible from my iPhone and through web browsers with no issues. I can't even find the offending message and attachment. So I suspect there is a bug / corruption in Mail.
    HELP!
    need to know how to fix it or if I have a new virus.
    Thanks!

    Is this an IMAP account?
    If so, delete the messages in Mail from all folders and quit Mail.
    Go the the website and clear the messages from all folders there.
    Reopen Mail and verify the messages have been deleted for all folders.

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

  • I can't recieve or send e-mails from my yahoo account in mail. Also, what should I do to repair the screen of my iPad 2 if I don't have any Apple warranty?

    For some unknown reason, I have been having issues when sending and recieving e-mails from my Yahoo account in mail on my iPad, but can use mail just fine on my iPhone. Why is this, and how do I fix it?
    I accidentally dropped my iPad 2 on Monday, it hit my foot, and the screen cracked. I recieved this iPad some time in August 2011, and no longer have any sort of warrany on it. Should I take it in to Apple and get a replacement, or have a third party fix it? And if so, how much would it cost, and where should I go?

    I am glad we were able to get your email working again. Please reach out anytime you need us.
    Thanks,
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • 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

  • Code for mailing from behing a proxy using Authentication

    Dear friends,
    I have found several requests regarding the mailing from behing a firewall/proxy with Authentication.. So here is the entire code for the same..
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public class MailClient extends Frame{
    static String mailHost="proxyAddress";
    public MailClient() {
    public static void main(String[] args) {
    Properties properties=new Properties();
    properties.put("mail.smtp.host",mailHost);
    properties.put("mail.smtp.auth","true");
    Session session=Session.getDefaultInstance(properties,new MyAuthentication());
    try{
    Message msg=new MimeMessage(session);
    InternetAddress address[]={new InternetAddress("toAddress1.domain.com")};
    msg.setRecipients(Message.RecipientType.TO,address);
    msg.setSubject("Test Mail");
    msg.setFrom(new InternetAddress("[email protected]"));
    msg.setContent("Please reply.. This is a java mail using Authentication
    technique..","text/plain");
    Transport transport=session.getTransport("smtp");
    transport.connect();
    transport.sendMessage(msg,msg.getAllRecipients());
    }catch(Exception e){e.printStackTrace();}
    Hope this helps..
    regards Stallon
    class MyAuthentication extends Authenticator{
    public PasswordAuthentication getPasswordAuthentication(){
    return new PasswordAuthentication("userName","password");
    }

    Hi stallon,
    Thanks for ur reply.Actually my application is at server2. I have an account in server1 and sending mail from server2. server1 requires authentication to send it to server3. Though we provide it is not accepting.There no errors while execution but mail couldn't be send.
    Please help me as soon as possible.
    Thanks in advance,
    bdurvasula
    //debug code.
    DEBUG: getProvider() returning
    javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
    Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG: SMTPTransport trying to connect to host
    "host", port 25
    DEBUG SMTP RCVD: 220 host ESMTP
    server (Netscape Messaging Server - Version 3.6)
    ready
    Thu, 21 Jun 2001 14:23:15 +0800
    DEBUG: SMTPTransport connected to host
    "host", port: 25
    DEBUG SMTP SENT: EHLO rao
    DEBUG SMTP RCVD: 250-host
    250-HELP
    250-EXPN
    250-ETRN
    250-PIPELINING
    250-DSN
    250 AUTH=LOGIN
    DEBUG SMTP SENT: MAIL FROM:<[email protected]>
    DEBUG SMTP RCVD: 250 Sender
    <[email protected]>
    Ok
    DEBUG SMTP SENT: RCPT TO:<[email protected]>
    DEBUG SMTP RCVD: 250 Recipient
    <[email protected]> Ok
    Verified Addresses
    [email protected]
    DEBUG SMTP SENT: DATA
    DEBUG SMTP RCVD: 354 Ok Send data ending with
    <CRLF>.<CRLF>
    DEBUG SMTP SENT:
    DEBUG SMTP RCVD: 250 Message received:
    7745C8DA90B.AAA27D7
    DEBUG SMTP SENT: QUIT
    //now i am sending the mail that was sent by my server
    This Message was undeliverable due to the following
    reason:
    Your message was not delivered because the
    destination
    computer
    refused to accept it. The error message generated
    by
    the server
    is reproduced below.
    Non-local addressee. We do not relay!
    Please reply to Postmaster@mailserver .if you feel
    this message to be in error.Thanks once again
    bdurvasula

  • Error: Not able send mail from OWA 2010. When I send mail, the mails go to Drafts Folder.

    Error: Not able to send mail from OWA 2010. When I send mail, the mails go to Drafts Folder. I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in Drafts folder. I tried to re-send messaged from Draft also but not able to send. 
    Screen Shot: http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/Error%20-%20Not%20Able%20to%20Send%20Mail%20from%20OWA%202010.docx
    Scenario: I have below configuration of exchange 2010 server Setup:
    1. Windows Domain Controller with Global Catalog on Windows Server 2008 which only for Windows 2008 Server Native.
    Server Name: WDC2010
    Domain: Blazex.Com
    2. Hub/Client Access Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Hub/Client Access Exchange role servers.
    Server Name: HC2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Hub and Client Access Server.
    3. Mailbox Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Mailbox Exchange role servers.
    Server Name: MBX2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Mailbox Server.
    4. 2nd  Mailbox Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Mailbox Exchange role servers.
    Server Name: 2MBX2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Mailbox Server.
    5. Client Windows 7: It is installed on Windows 7 Ultimate Workstation. As per Microsoft recommendation, I have just installed Windows 7 and then join this computer to Blazex.com.
    Workstation Name: WIN7.blazex.com
    Role: Workstation
    Error Description: I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in Drafts folder. I tried to re-send messaged from Draft also but not able to send. 
    Screen Shot (Same As Above): http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/Error%20-%20Not%20Able%20to%20Send%20Mail%20from%20OWA%202010.docx
    I don't know what I am missing but I think there is some configuration I need to do on Hub/Client Access Server (HC2010).  I tried to access the mailbox on XP Client system through OWA. I get the same problem as Win7.
    Can someone please help me on this?
    Thanks and Regards
    Shambhu

    Hi Subhash,
    I have done the troubleshooting but I didn't find any problem at server side. I will send you mail also with all EXBPA report and as well DC, HC and Mailbox servers' Application Log and System Log.
    Below are the questions's answers which was asked by you:
    1.     Please check whether you can send email via Outlook.
    I am not able to open the MS Outlook. Please check all details in this thread : http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/c491c5c7-7d6f-48ff-97fa-6bf83d94e53c
    2.     Please run EXBPA to have a health scan.
    I have run the EXBPA and didn't see any critical Problem. I have took the screen shot and report. Please have a look in below screen shot link:
    a. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/EXBPA.docx                                                                            - Final Report
    b. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.BaseLine.200906270226501077.data.xml                        - Baseline Health Check
    c. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Connectivity%20Test.200906270223318201.data.xml      - Connectivity Check
    d. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Health%20Check.200906270125477730.data.xml            - Health Check with 2 Hr. Baseline option
    e. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Permission%20Check.200906270224343377.data.xml      - Permission Report
    The error which I received in EXBPA, that allready ignored by you and told that it is bug in EXBPA. Have a look here: http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/d4bb03bb-db84-4a8b-83ba-19937d7dcacf
    3.     Please check application log, whether any error event logged there. They could come from ADAccess related error or etc.
    I didn't see any ADAccess event on the server. For this I have left my lab PC open and I will check again.
    4.     We find that if mail .que gets corrupt, then this issue will occur, please try to move the affected user to another store and then test the issue.
    I am facing this problem with all users (7 users). Anyway I moved one user from one server Mailbox Database (2mbx2010) to Other Server Mailbox Database (mbx2010). After that
    a) Rebooted the Workstation
    b) Login successfully with same user.
    c) Delete the Old MS Outlook Profile
    d) Create New profile for same user without any problem.
    e) Tried to login in MS Outlook and got the same error. : http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/c491c5c7-7d6f-48ff-97fa-6bf83d94e53c
    f) Open the OWA successfully for Same user.
    g) Tried to send mail but again mail went to Drafts Folder.
    5.     I noticed that you test the issue after you close outlook. I recommend you to reboot your pc and then access
    mailbox via OWA to test the issue.
    I tried you suggested option, but sorry it also couldn't help.
    6.  You also check your disk space.
         All Servers have Enough Disk Space. Check the EXBPA Report.
    7. You may run EXTRA to get log information for further troubleshooting.
      Need more time for this.
    8. Please save application log, system log as *.evt file, then send them with EXTRA,EXBPA report to [email protected] .
       I have sent it as your mentioned mail address OR, you can get the mentioned log from below link also:
       a) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/WDC2010%7C_APPLICATION.evtx           - DC/GC Application Log
       b) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/WDC2010%7C_SYSTEMEVENT.evtx          - DC/GC System Log
       c) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/HC2010%7C_APPLICATION.evtx              - Hub/Client Application Log
       d) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/HC2010%7C_SYSTEM.evtx                      - Hub/Client System Log
       e) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/MBX2010%7C_Application.evtx                - Mailbox Application Log
       f) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/MBX2010%7C_System.evtx                      - Mailbox System Log
    There will be some error log you will be that the system is not able to communicate with DC/DC, MBX or HC at everyday around 3 AM or some time 6 PM Evening also. These error came because I have installed VM on Windows 7 Workstation and after 45 min or one hrs. if I don't work on PC, then pc goes to sleep. so you may ignore these alerts.
    I hope my answer will give you some clue and I expect more help from your side.
    With Best Regards
    Shambhu Sharma

  • Using (Gmail) IMAP account from 2 different Macs using Mail ?

    Would it be feasible/useful to access an (Gmail) IMAP mail account from 2 different Macs using Mail on each Mac?
    My current situation:
    - My main computer is an iMac in my bedroom on which I use Mail for my Gmail IMAP account.
    - Sometimes (ex: late at night) I can't work from the bedroom and use a PowerBook and the web interface of Gmail. However, I don't like the threaded view for managing emails and therefore prefer the Apple Mail interface.
    Question:
    Would it make sense that I use Apple Mail on the PowerBook to access the Gmail account instead of using the web interface?
    What would be the inconveniences?

    Doing so is pretty easy, and standard. That is what IMAP accounts are for, and many computers can access the same account, and what email client they choose doesn't matter.
    Ernie

  • Can Mail block all incoming mail from a particular domain?

    Can Mail be configured to block all incoming mail from a particular domain? I'd rather it be sent to the bit bucket than sent to a spam folder.

    Yes, go in to your rules and set it up for a folder of your choosing.  Click on the mail menu item then select preferences and then click on rules.

  • I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp does not respond when clicked, and will not quit. help?

    I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp icon does not respond when clicked, there is no mail window opened, and will not quit. when double clicked, get new mail is not an option and I get no response with other actions.
    I am retrieving mail on my phone with no problem. this just began happening, no updates or problems with anything else.
    help?

    command-option-esc keys and force quit Mail. Then relaunch.

  • How can I prevent deleted mail from ending up in "All Mail"     and "Archives"?  To my horror, I've emptied these boxes and lost all my mail from all my boxes  (and why do I need to enter this question three times?"

    How can I prevent deleted mail from ending up in "All Mail" and "Archives"? 
    To my horror, I emptied these boxes and lost all my mail from all my boxes .
    All mail also disappeared from my iPad, I suppose because they are "synched"
    (Also, no offense, but why do I need to enter this question multiple times?)
    Thanks for any thoughts.

    I'm having a similar but slightly different problem. My company just migrated to Gmail, and it's saving mail drafts every 30 seconds into my Trash folder.
    I unchecked the "Show in IMAP" preference in the Gmail settings, but my Drafts folder completely disappeared. I went back and checked it and the folder reappeared (with my drafts still in there).
    I like the idea if starting an email on my laptop and having the option of finishing it on my iPhone or iPad, so only saving Drafts locally would not be ideal.

  • How to download ALL MAIL from the server in a Mail app ?

    How to download ALL MAIL from the server in a Mail app ? I want all the mail messages, sent, received ON my computer... Thanks much !!!!!!!

    In Mail's Accounts/Mailbox Behavior preference pane make sure these 4 checkboxes are NOT checked:
    OT

  • 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

  • Not Receiving E-mails from a particular sender

    I belong to a mom's group that uses yahoo group's e-mail to communicate to each other.  If you want to send an e-mail to the mom's club, you just type in the yahoo group address and it goes out to all the members.  For some unknown reason I stopped receiving the e-mails from this address yesterday.  Has anyone ever had a problem like this?  I can send e-mails no problem and receive e-mails from everyone else.  I called Verizon's tech support and they played around with my settings and then said everything looked fine and nothing was blocking the sender so it must be on Yahoo's end.  I have had this happen before, but it has never lasted this long.  I am going on over 24 hours without getting a single e-mail from the yahoo group.  I know it is not on yahoo's end because I had the admin. of the group add my hotmail account to the e-mail loop and as soon as she did, I started getting the e-mails at that address but still  nothing at my verizon.net account.  Any ideas?  Any advice would be appreciated.  Michele

    mjaeb wrote:
    I belong to a mom's group that uses yahoo group's e-mail to communicate to each other.  If you want to send an e-mail to the mom's club, you just type in the yahoo group address and it goes out to all the members.  For some unknown reason I stopped receiving the e-mails from this address yesterday.  Has anyone ever had a problem like this?  I can send e-mails no problem and receive e-mails from everyone else.  I called Verizon's tech support and they played around with my settings and then said everything looked fine and nothing was blocking the sender so it must be on Yahoo's end.  I have had this happen before, but it has never lasted this long.  I am going on over 24 hours without getting a single e-mail from the yahoo group.  I know it is not on yahoo's end because I had the admin. of the group add my hotmail account to the e-mail loop and as soon as she did, I started getting the e-mails at that address but still  nothing at my verizon.net account.  Any ideas?  Any advice would be appreciated.  Michele
    could be a couple of things but the most likely reason is that that email address made it onto your block senders list, even though they said no. First, is your email address a verizon email? Second are you using web mail or an email program?
    ====================================================================================
    Error exists between keyboard and chair.

Maybe you are looking for