TS3899 Mail not getting messages from specific address

I am consistently not receiving emails from a specific address in my Apple Mail inbox, but I have no filters enabled and the emails are not showing up in my spam and trash folders. If I follow directions for retrieving an email header in Gmail, I am able to see the email, but this doesn't correct the problem! This problem seems to have surfaced spontaneously. What is going on?

HI ,
have at look at this link :
https://www.sdn.sap.com/irj/scn/wiki?path=/display/xi/step%252bby%252bstep%252bmail%252bto%252bfile%252bscenario
It contains the scenarios with  "Mail to File Scenario using the Transport Protocol as IMP4 " as well as "Mail to File Scenario using the Transport Protocol as POP3".
Have a look at them.
Thanks,
Pooja

Similar Messages

  • What do I do if I Switched to an android phone but Im not getting messages from apple users because of the I messages. I have already turned off my I messages on my old phone.

    I Switched to an android phone but Im not getting messages from people with I phones because of the I messages. I have already turned off my I messages on my old phone.

    http://support.apple.com/kb/ts5185

  • Mails not getting sent from Receiver Mail Channel

    Hi ALL
    I have a File to mail scenario , I see chakred flag in SXMB_MONI ..but mail are not getting triggred from the Receiver mail adapter..
    I gave the URL like this smtp://sxd123.abc.com
    and the respective E-mail ID's
    I dont see any message in the communication channel monitering also ..wht could be the reson.. ?
    Thanks
    Souz

    Hi Dominic,
    Since you are not seeing any entry in the communication channel (receiver), I think there is a problem with your configuration. Check whether you have used the correct channel (of type MAIL) in the receiver agreement.
    Regards
    Suraj

  • Apple mail not uploading messages from server

    i've got a weird problem - about a week ago, my apple mail program stopped uploading messages to one of my emails accounts. i've been getting messages to that account, and when i right click on the account, apple mail shows me that i have like 100 + unread messages on my pop server, but for some reason, it isn't uploading the messages so that i can access them.
    i've spent nearly 2 hours troubleshooting. i even deleted the whole account and made it again, and it did the same thing. this makes me think there is something with my email host or something.
    any ideas?

    When you say “uploading” you actually mean “downloading”, right?
    Sometimes messages left on the server clog up the account there, or Mail chokes on a message it cannot download and that prevents it from downloading the rest as well. Solving this problem will probably require deleting one or more messages from the server. What are your Preferences > Accounts > Advanced > Remove copy from server settings for this account?
    You may tell Mail to remove from the server all the messages that have already been downloaded doing Preferences > Accounts > Advanced > Remove now. Alternatively, you may use the Account Info window to remove specific messages from the server. And if the account allows web access, you may also remove messages from the server that way.
    Try first removing from the server messages that have already been downloaded. If that doesn’t work, you’ll probably have to delete the first message not downloaded yet. You may want to try to download those messages with another mail client such as Thunderbird first, to avoid losing them -- and use Eudora Mailbox Cleaner to import them back into Mail afterwards if you wish.

  • Chat user is not getting message from the other users

    In my application when user [A] initiate the chat with user[B]  , I am facing following issues
    -          User[B] is not getting initiation notification so that I am unable to open chat pod for user [A] on user[B] application
    -          Due to above problem , User[B] not getting any message sent by the User[A]
    -          User[A] can send only one message and it is displayed on simple chat pod
    when User[A]tries to send more then one message it is not displayed on simple chat pod but on the console I can see the messages
    following is sample code
     public function connectChat() :void {
    _collectionNode =
    new CollectionNode();_collectionNode.sharedID = NOTIFICATION_COLLECTION_NODE;
    _collectionNode.connectSession =
    this.connectSession;_collectionNode.addEventListener(CollectionNodeEvent.SYNCHRONIZATION_CHANGE, onSynchronizationChange,
    false, 0, true);_collectionNode.addEventListener(CollectionNodeEvent.ITEM_RECEIVE, onItemReceive,
    false, 0, true);_collectionNode.subscribe();
    /*** @private
    * Handles the creation of a collection node if it does not already exist
     protected function onSynchronizationChange(event:CollectionNodeEvent):void { 
    if (_collectionNode.isSynchronized) { 
    if (!_collectionNode.isNodeDefined(START_CHAT_LIST) && _collectionNode.canUserConfigure(connectSession.userManager.myUserID)) {_collectionNode.createNode(START_CHAT_LIST,
    new NodeConfiguration(UserRoles.VIEWER, UserRoles.VIEWER, true, false, true,false, NodeConfiguration.STORAGE_SCHEME_QUEUE));}
     public function connectChat() :void{
    trace('connectChat');_collectionNode =
    new CollectionNode();_collectionNode.sharedID = NOTIFICATION_COLLECTION_NODE;
    _collectionNode.connectSession =
    this.connectSession;_collectionNode.addEventListener(CollectionNodeEvent.SYNCHRONIZATION_CHANGE, onSynchronizationChange,
    false, 0, true);_collectionNode.addEventListener(CollectionNodeEvent.ITEM_RECEIVE, onItemReceive,
    false, 0, true);_collectionNode.subscribe();
    /*** @private
    * Handles the creation of a collection node if it does not already exist
     protected function onSynchronizationChange(event:CollectionNodeEvent):void { 
    if (_collectionNode.isSynchronized) { 
    //Creates the nodes if they don't exist 
    if (!_collectionNode.isNodeDefined(START_CHAT_LIST) && _collectionNode.canUserConfigure(connectSession.userManager.myUserID)) {_collectionNode.createNode(START_CHAT_LIST,
    new NodeConfiguration(UserRoles.VIEWER, UserRoles.VIEWER, true, false, true,false, NodeConfiguration.STORAGE_SCHEME_QUEUE));}
    /*** Checks if a chat is going to be started with this specific user
     protected function onItemReceive(event:CollectionNodeEvent):void { 
    var item:MessageItem = event.item; 
    var openChatEvent:OpenChatEvent = OpenChatEvent.ToOpenChatEvent( item.body, OpenChatEvent.OPEN_CHAT ); 
    switch (item.nodeName) { 
    case START_CHAT_LIST: 
    trace("Starting Chat Notified");  
    if( openChatEvent.userId && openChatEvent.userId == this.connectSession.userManager.myUserID ){
    this.dispatchEvent( openChatEvent ); 
    if( this._collectionNode.isSynchronized ) 
    this._collectionNode.retractItem( START_CHAT_LIST, openChatEvent.roomId );}
    break;}
    /*** Publishes a request for someone to join a chat
     public function publishChatRequest(notificationEvent : NotificationEvent) :void { 
    if( this.connectSession.userManager.getUserDescriptor( notificationEvent.userID ) ){
    var openChatEvent:OpenChatEvent = new OpenChatEvent( OpenChatEvent.PUBLISH_CHAT,null,notificationEvent.sharedID, notificationEvent.userNotificationList, null, notificationEvent.userID ); 
    if( this.presenceUsers )openChatEvent.descriptors =
    this.presenceUsers; _collectionNode.publishItem(
    new MessageItem( START_CHAT_LIST, openChatEvent, openChatEvent.roomId ) );}
    else{
    Alert.show(
    "User "+ notificationEvent.userID + " is not logged in.", "Publish Error" );}

    A) are these methods copied twice in the code here on purpose?
       connectChat() and onSynchronizationChange is repeated in code due copy paste mistake
    B) are both users subscribing to _collectionNode right away? Do each of them
    get to onSynchronizationChange?
       Yes , each of them get to onSynchronizationChange
    C) If you put a breakpoint in onSynchronizationChange, do you see the node
    get created? Do you see it in the dev console?
    Yes , it is creating a node
    D) Is user B receiving an onItemReceive at all? Is user A?
    Yes , it is creating a node
    Now both the user getting chat message, have following issue
    When user A initiate the chat with user B this action is not opening chat pod / window on user B end which shows user A has initiated chat with user B
    But when user B click on user A name to initiate the chat, this action opens a chat window and user B can see message send by user A
    Above scenario is not normal chat behavior in which other user gets the notification of chat . what could be the problem

  • Possible solution for Mail not downloading messages from IMAP

    People have, including me, experienced a rather strange behavior of Mail.app.
    On our iMac, Mail would stop retrieving messages from an IMAP account after a while, even though it's set to check every minute and "synchronize automatically" is enabled. Hitting the "get mail" button, doesn't make a difference. I know there were new messages, since they showed up on my own PB, which is connected to the same IMAP account. Once Mail is restarted on the iMac, a dozen new messages are coming in and everything's working fine for the next few hours. Reinstalling the account on the iMac didn't have any effect.
    So my theory is:
    I've set the iMac energy settings to "allow the hard drive to sleep when possible". I guess Mail isn't capable of spinning it up again and freezes to a certain degree, requiring a restart in order check for new emails.
    I'm just testing this with the energy options disabled.

    Hey - I'm having somewhat similar problems. The settings are all correct, but most of the time the mail simply fails to download: http://discussions.apple.com/thread.jspa?threadID=1762675&tstart=0

  • My friend with iphone 4s is not getting messages from my iphone 3gs even tho we both have the new software. everyone else gets our txts but we don't get each others. Help???

    does anyone know how to fix this? it's driving me insane idk what to do!!!
    It hasn't been working for three days now, and i really need it to!
    I also tried taking off my iMessage but nothing changed.
    HELP!!

    My mistake, I read your post too quickly.  I thought you said that you were both getting the same messsages.  Is your friend not getting just your messages or does she not get anyone's messages?  If she's not getting just your messages you might want to try deleting her contact on your phone and creating it again.  Sometimes that will clear things up.  Also, obviously the contact must match the number she receives messages at.

  • Mail not displaying messages from self as Unread

    Mails that I send to myself have suddenly stopped showing up as automatically unread in the inbox. Neither does the dock icon for Mail show the red circle indicating a new mail. Similarly with Ical mails alerts to me. Any clue which setting has got messed up?

    Once upon a time, with POP access at least, addressing a Gmail message to self would not be presented for download, and only available on the server view via browser. I can't remember when or if I tested IMAP access.
    Just now I sent a test, and on my two Macs it is presented as Read on both.
    Gmail is neither pure IMAP nor pure POP, and it can be weird.
    Ernie
    Message was edited by: Ernie Stamper

  • E-mail not getting messages on phone

    I have 2 email accts and one (the one used the most) stopped receiving messages on Mon the 17th of Feb.. This account is with my current carrier AT&T while the other is with Verizon. Any suggestions?

    Delete the account from your phone then add it once again. If you still have issues receiving mail to it, type www.blackberry.com/integrate in your phone's browser and try to set it up that way. If it works, great. If it doesn't work, call AT&T and see what they have to say.
    Once they've sorted things out and before you hang up the phone with them, ask them for help in getting access to their self-serve BIS (BlackBerry Internet Service) site at http://att.blackberry.com . From this site, you can edit the accounts you carry on your phone without the assistance of AT&T. It's a great resource to which you should get access.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Mail not getting triggerred from Alerts in PI 7.1

    Dear Freinds,
    We have created alert categories and based on that created numbers of alert rules. Alerts are getting triggered and we recieve them in the Alert Inbox. We have also maintained user id's in Fixed Reciepents. But we want the same to go to email based on the user profile.
    Please let us know what has to be done in order to recieve email as soon as alerts are getting triggered.
    Thanks & Regards
    John

    Hi Kroninjer,
    To send an EMAIL, assign an EMAIL ID to the corresponding user in the transaction SU01 and then set up SCOT and you can send emails when the ALERT is triggered..
    Once you have configure Alerts, you will get the Alerts into ALERT INBOX in RWB of the user. To also get the email, the following needs to be done,
    1. In SU01 -- Assign the Email ID for the Recipient of the ALERT.
    2. In , RWB>ALERT INBOX> PERSONALIZATION--> Time Independent Delivery and Email are selected.
    3. Finally, SCOT needs to be set up to send Emails. Check this for the same. You can ask your BASIS team to do this step.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/1edf098ea211d2b47300609419ed29/frameset.htm
    Also, In ALRTCATDEF, go to SETTINGS--> CONFIGURATION. By default, the option selected is INTERNAL PROCESSING. Select the option SMTP FORWARDING AS XML and give the email id. This will enable you to send an email alert whenever an error occurs in XI.
    4) Notes:
    750287 XI 3.0 Runtime Workbench: Alert configuration does not start
    768456 Troubleshooting Runtime Workbench XI 3.0
    813703 XI RWB alert configuration is incompletely displayed
    840849 XI 3.0 Runtime Workbench: SSO2 is not active in this system
    824039 XI30 Runtime Workbench: Display of XI alerts in CCMS
    0000906044 XI30 Alerting: Wrong hostname in the URL of the XI Alert
    0000905896 XI30 Alerting: Message without recipient creates no alert
    0000904825 Synchronous message processing: Error in CCMS connection
    0000902022 XI30 Alertrule insensitive to Receiver Interface
    0000882215 XI 3.0 Runtime Wkbnch: Java Adaptr does not generate alerts
    0000876546 XI 3.0 Runtime Workbench: Missing alerts
    0000870232 XI 3.0 Runtime Workbench: New Alerting functionality
    But start with this one!!!
    913858 XI3.0 Alerting: Troubleshooting
    Hope all these will help you.....Though assuming that you have configured alerts correctly it should work as it worked for me :-).
    Regards,

  • Mail not send messages from contacts groups

    I have two contacts groups but when i send a email to one of them I receive the seme message for all addreses:
    Unable to send the message through the X server The server "smtp.gmail.com" did not recognize the following recipients:
    The smtp configuration it's ok because the other group could be sending without problems.
    Thanks

    Having the same problem, but in addition, I also get a warning message next to the account in the list of accounts under Inbox (I have several; the icon is a triangle inside a circle).
    Out of 10 emails accounts checking, a bunch will randomly be unable to connect to the server. I have a solid internet connection, so thats not the problem.
    Gotta get back to webmail to see what I'm missing...

  • TS3899 Mail not actually sent from iPhone 5

    I have an iPhone 5 running up-to-date software (iOS 7.0.4)and twice in the past 2 months, it has stopped sending emails out. The sending mail sound happens, and the status bar shows up, making it look like the email has sent, but it isn't received and it isn't in my sent mail. This happens about once a month and the only fix that's working is restarting the phone. I've tried deleting and adding the two email accounts, but that hasn't worked. I have gmail and Outlook accounts on the phone and it happens with both of them.  Is there a more permanent fix than a monthly reboot? I always lose a bunch of work before I realize that my emails aren't going out, and since they aren't in my sent folder, there's no way to retrieve and re-send the messages. It's very frustrating.

    What you are describing along with the fix that works sounds like a memory issue.  I tell all of our users that mobile devices in general work better with a weekly stop of all running apps and reset.  It is not an elegant solution but as a practical matter it makes things work way better.  I'd guess that 10-15% of the  posts placed on these forums are solved by a reset such as described in these articles.. 
    http://support.apple.com/kb/HT1430
    https://discussions.apple.com/message/19521062#19521062

  • Not receiving emails from specific address

    I'm having problems receiving emails from a friend of mine. They can receive my emails from my btinternet.com account ok but all replies to me are never arriving. They can send ok to another of my email addresses. They do not even receive any kind of error notification. How do I resolve this please?

    cirbb wrote:
    Thanks. I asked them to send the last reply to both my email addresses. I can see from the email that they are using the correct address so it can't be that. Their ISP is fasthosts. Maybe they've been blacklisted? How can I tell?
    Hi.
    Do you have a gmail or hotmail account they can send to ?
    Have you checked the spam folder, in case they have ended up there ?
    If I may be as bold to say, Fasthosts are not exactly clean in removing spammers. I have reported many to them over the years, and they ignore everything. They don't even reply. I'm afraid it's been noticed :-
    http://www.pcadvisor.co.uk/news/internet/3298563/f​asthosts-sees-88-increase-in-complaints-about-spam​...
    The report doesn't say that spamming in the UK is against the law.
    Note that I am not saying this is the reason for any emails not being received, but there is a possibility.
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • How do I force Mail to show messages from me addressed last name, first?

    I'm relatively new to Mac and to Mail. I'm finding that when colleagues send mail, their names are listed in the "from" column as Last Name, First. However, my name appears to others as First Name Last (no comma). How do I correct this?
    I send mail through an exchange server, if that helps.

    Have you tried Mail Preferences?
    Go to Preferences (under Mail menu) and select accounts. Then click on the account in question. Enter your name as you wish it to appear at the "Full Name" label.

  • Mail not Receiving Emails from Hotmail

    Dear all,
    I am using MacBook Pro, Intel Core i5, 4GB, OSX Yosemite 10.10.1 and my Mail Version is 8.1.
    I am trying to import mail from my Hotmail account but it is not working properly. I have setup Mail to Pop (pop3.live.com) , removing the messages from the server after receiving mail.
    However, after a few days using this configuration, there are still 39.000 messages left in the Hotmail server and the newest messages on my Mail software are dated on 25/09/2013, which means it is not getting messages from the Hotmail server as it should.
    What could be happening here?
    Thank you,
    Eduardo

    Uninstall the hotmail account and install it again.
    If I help you with any inquire, thank you for click kudos in my post.
    If your issue has been solved, please mark the post was solved.

Maybe you are looking for

  • Calling portal screen from workflow and required two level approvals to approve in portal

    Hello Experts, I have a requirement that, I would trigger a process order approval workflow from SRM SUS portal. Agent when he clicks the link in the attached mail, it has to take him to the portal screen to approve and it has to go to next level man

  • Sales order line item as cost object

    Hi all, I am looking for a document on configuring sales order line item as a cost object. Also by doing this, does this mean it is unnecessary to specify a cost center/profit center in the SO line item, since the costs/profits will be captured in th

  • Several curves with several scales on the same graph

    Hello, I am currently working on a project which include a data acquisition VI. I would like to display two curves with two different scales (0 to 1 and 0 to 200) on the same graph. I have been trying nearly all the options in the properties menu, I

  • (Error: BOMGR 0060) IDispatch error # 109 Connection or SQL sentence error

    Hi all members BO version: BO 6.5 My client is facing following error in Infoview all of sudden for last 2 weeks while viewing the published reports in an Infoview. BusinessObjects server process raised an automation exception. (Error: BOMGR 0060) ID

  • Some non-Apple applications suddenly won't start.

    I have a user who, after an update install for MS Office 2004, now has a number of non-Apple applications that won't start. I did some poking around, and found the following in the console log: Sep 24 10:07:57 Laszlo-iMacs-Computer kernel[0]: shared_