IMessage and Read Receipts

If I delete an iMessage without actually clicking on the message and opening it, will the other person see it as "delivered" or as read with the time I deleted it?

I found a potential solution here:
https://discussions.apple.com/thread/3758068?start=0&tstart=0
If you or the recipient has Messenger for Mac, uninstall it.  I just did and the errors went away. I think what was happening was that because my Mac wasn't receiving the iMessage the error was generated for me and the other party. Odd that it suddenly started, but it seems to have worked.

Similar Messages

  • Generare e-mail status by tracking Delivery and Read Receipt?Challenge

    Hi,
    I got bit confused, How can I came to know that my e-mail has been successfully sent or not without opening my inbox.
    Am sending 50,000 mails per day by using java mail sending program, while sending I am enabled Delivery and Read receipt and I saved message-id in database and I got that receipt back to my inbox.
    Then I am reading my Inbox using another java program based on message-id concept, And also I need to parse the body of the mail to update the reason if any message failed.
    Here my Inbox received more than 1 lac mails per day as receipts. Because am sending 50,000 mails, So, I got 2 receipt mails for 1 mail, totally 50,000*2=1lac mails in Inbox. My problem is, my reading Inbox java program not able read all 1lac mails at one day. It just reading 5,000 mails per day. When my next day mail sending process started, again i am getting another 1 lac receipts.
    Since I am not able to read and delete the receipts completely, mail counts in my inbox getting accumulated. So, I got stuck, How can I do this?
    If anybody have any other ideas please share with me.
    Already I surfed on net lot, but I can`t find solution for this concept.
    Thanks in advance.

    I think the big question is why can you not read and remove the mail more quickly? What limits you to reading only 5,000 messages per day?
    Also, is this about Oracle Communications Messaging Exchange Server (formerly known as Sun Java Messaging Server)?
    If so, please include the output from the "imsimta version" command.
    If not, you probably should ask in the JavaMail forum: JavaMail

  • Notification of Delivery and Read Receipts

    Hi All,
    Does Skype offer the functionality of Delivery Receipts and Read Receipts when we send messages to our friends. I could n't locate this feature on my phone or laptop.

    Hi, Dramitgoel, and welcome to the Community,
    Please check out this new blog article!
    http://blogs.skype.com/2014/02/13/skypes-enhanced-chat-experience/
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Prohibit delivery- and read- receipts

    Does anyone know how you can prohibit Mail and Entourage from sending delivery- and read- receipts.
    I could only find answers to the question how you can request them yourself, what is not an issue for me.

    Mail doesn't send receipts for delivered nor read mail. "Read" receipts aren't supported in any Internet email client I know of, only in proprietary messaging systems such as Outlook/Exchange.
    Entourage to the best of my knowledge by default doesn't return delivery receipts either, though I might have missed it in my copy. It appears that the only way to get it to do it is by manually adding special headers.
    So if you don't want to be returning receipts, you don't need to worry.
    Regards.

  • Delivery and read receipts from mail - how do i do it?

    delivery and read receipts from mail - how do i do it? i used to do this on pc from outlook..... just new at this stuff... thanks

    Hmm, had a bit of a look round but it doesn't look like it's particularly straightforward, esp if you want to turn it on or off on a per mail basis:
    http://email.about.com/od/macosxmailtips/qt/et_request_recp.htm

  • The Sender unable to receive delivery and read receipts

    The Sender unable to receive delivery and read receipts through ironport (outbound).
    How does the delivery and read receipts works in ironport?
    However, The Sender able to receive delivery and read receipts without ironport (outbound).
    Please help!
    Alex Ling

    Hi Alex,
    At this time, the IronPort does not support positive DSNs ( read recipiects ). Refer to the following Knowledge Base article:
    http://tinyurl.com/yo78ns
    -whardison

  • How to track Delivery and Read Receipts, to update the e-mail status?

    Hi,
    I got bit confused, How can I came to know that my e-mail has been successfully sent or not without opening my inbox.
    Am sending 50,000 mails per day by using java mail sending program, while sending I am enabled Delivery and Read receipt and I saved message-id in database and I got that receipt back to my inbox.
    Then I am reading my Inbox using another java program based on message-id concept, And also I need to parse the body of the mail to update the reason if any message failed.
    Here my Inbox received more than 1 lac mails per day as receipts. Because am sending 50,000 mails, So, I got 2 receipt mails for 1 mail, totally 50,000*2=1lac mails in Inbox. My problem is, my reading Inbox java program not able read all 1lac mails at one day. It just reading 5,000 mails per day. When my next day mail sending process started, again i am getting another 1 lac receipts.
    Since I am not able to read and delete the receipts completely, mail counts in my inbox getting accumulated. So, I got stuck, How can I do this?
    If anybody have any other ideas please share with me.
    Already I surfed on net lot, but I can`t find solution for this concept.
    Thanks in advance.

    Hi EJP,
    step 2: Taking total inbox length using message.length
    The message count is available via Folder.getMessageCount*().//ok I will try this one.*
    step 3: In for loop, for(i=0; i < = n; i+){+ //--here we are getting mails one by one
    That should be i < n, not i <= n. *//here I was wrongly specified, I used i<n only.*
    step 5: In that mail body we are searching our own unique keyword(which we set for our unique mail reference)
    Searching how?
    In order to find the keyword, we are getting entire text/plain mail body using below method,
    //To get body plain/text body part start here
         public static void getTextPlainBodyPart(Part p) throws Exception {
              if (p.isMimeType("text/plain")) {
                   if (!(showStructure) && !(saveAttachments)){
                       lstr = (String)p.getContent();
              }else if (p.isMimeType("multipart/*")) {
                 Multipart mp = (Multipart)p.getContent();
                 level++;
                  int count = mp.getCount();
                  for (int i = 0; i < count; i++){
                 getTextPlainBodyPart(mp.getBodyPart(i));
                  level--;
    //To get body plain/text body part end hereAbove method will return entire body of the mail in one string variable, Eg: String mailBody;(*mailBody variable contains entire body)*
    Then using mailBody variable we are searching our own keyword(which we set for our unique mail reference while sending mail) using below technique,
    if(lstr.indexOf("!$*#*$") != -1 && lstr.lastIndexOf("$*#*$!") != -1){
    KeyWord = lstr.substring(lstr.indexOf("!$*#*$")+3,lstr.lastIndexOf("$*#*$!"));
    //to get reason alone
    if(lstr.contains("Reason:")){
         Pattern p = Pattern.compile("Reason:\\s([^\\n])*");
    Matcher m = p.matcher(lstr);
    boolean result = m.find();
         while(result) {
            reason = m.group();
             result = m.find();
    //System.out.println("Reason:>>>>"+reason);
    }else{
         reason = "";
    }After getting that keyword in KeyWord variable,
    then we are updating our database using that KeyWord,(here we are using KeyWord variable in where condition in update query)
    Note:_ KeyWord is nothing but, we were stored all our unique keyword against every mails while sending.So, If when get that keyword while reading the receipts,then we can update our table using that same keyword.
    guide how can I do this effieciently. And if you any other new concept please share with me.
    Thanks in advance..
    Edited by: EJP on 17/03/2011 16:54: added code tags. Please use them. Code is 100% illegible otherwise.

  • IMessages: the read receipt is not consistent?

    Apologies but I'm getting so much into my iPhone. And I've found this forum so helpful!
    Right: I've turned my iMessages back on, with the read receipt also on. You see I text A LOT. Now 3 contacts are telling me that  just beneath their sent message to me, blue bubble, sometimes it says 'read' and sometimes it says 'delivered'. But truly I have read all their messages, in fact I've even replied (when it just said delivered). I checked my settings, the read receipt is still on. So why is it not consistent? Many thanks.

    Hi vijay,
    2007B is in trail version only.
    if you have any proble in the live DB you have get the support from SAP TEAM.
    Please raise the issue to the SAP.
    Regards
    Chidambaram

  • Calendar issues and read receipts

    Hi all,
    About 6 months ago we upgraded Exchange from 2003 to 2007 and from 2007 to 2013.
    Server setup is Win2k12r2 with Exchange 2013 SP1.
    Clients are all Win8.1 with Office 2013 up-to-date.
    We have experience some issues from the start. But we are unable to resolve them.
    Issue 1:
    When Outlook is operating in cached mode and shared folders are downloaded too calendars shared between users are not up-to-date. This means: when a users adds an appointment to the shared calendar, it sometimes takes a lot of time before other users can
    see this. We solved this issue by disabling the download of shared folders. This way all users work online in shared calendars.
    Issues 2:
    When using the above mentioned combination of a cached mailbox with online shared folders we are unable to use the context menu (right mouse button) on an appointment to set the category that is located in a shared calendar. The solution is to disable cached
    mode in outlook, which means outlook is Online. Then the issue is resolved. But we would like to have outlook in cached mode.
    Issue 3:
    When outlook is in online mode the Read receipt function breaks down. When a user requests a read receipt (internally or externally) and presses the send button a message stating that the mail was deleted without reading is immediatly received. Putting outlook
    in cached mode solves this issue. But it seems broken anyway but it might be a setting?
    Any and all help is appreciated.

    Regarding Issue 1, multiple users working off the same calendar risks race conditions, where one person's updates overwrite another's, and that problem is severely aggravated with the use of cached mode.  Please read the following two articles for more
    information about your issues in more generality.
    http://www.networkworld.com/community/blog/exchange-outlook-calendaring-problems-lost-me
    http://www.networkworld.com/community/ExchangeCalendaringProblemSolutions
    Regarding Issue 2, see my answer to above to understand why cached mode is bad for calendars unless they're used as read-only.
    Regarding Issue 3, read receipts are unreliable.  If they work at all, consider it a little blessing.  Besides, they don't really prove the recipient read the mail, just that he opened it.  Read receipts are easily bypassed, so I recommend
    you stop worrying about them.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Read and Delivery Receipts

    My Blackberry Curve sends read and delivery receipts to the email sender and to my email. Many times I don't even open the message. In my BB email options, I have NO marked on confirm delivery, confirm read and send read receipts. Does anyone know how to make these stop sending?

    open messages icon - menu - options - email settings - make sure it shows your email beside MESSAGE SERVICE
    change CONFIRM DELIVERY and CONFIRM READ  and READ RECEIPTS to NO

  • Read receipt in snow leopard mail...

    I am relatively new to mac and mail.  can anyone please help me with delivery receipts and read receipts like one can get from those awful windows applications?

    I think, sometimes Apple should be a little less educative. Their bossy attitude "If we don't put it in, then you don't need it...“ has proven them wrong a few times. Remember "copy/paste" on the first iOS ?
    Rather then adding a lot of fancy stuff like "dialogues" in Mail, it can't be that complicated to add a little box somewhere next to signature to request a read-receipt. I just upgraded to Lion and I'm amazed that this feature (because it is a feature, never mind if receivers are confirming or not) is again missing.
    Its often good to know that your mail has reached destination, especially if you attach important documents to it - in which case the receiver will accept to confirm.
    Just for this feature, I'm once again obliged to keep Thunderbird next to Mail.

  • Delivery Confirmation & Read Receipts

    Firstly, I am very new to Mac.
    I am used to Microsoft Outlook, particularly the 'Delivery Confirmation' and 'Read Receipt' options.
    Does Mail have these or similar options? I am sure they are right in front of me and I just can't seem to find them - PC to Mac blindness...
    Any assistance would be appreciated.
    iMac 2.16 GHz Intel Core 2 Duo   Mac OS X (10.4.8)  

    Not blind, apparently
    1.8 SP G5/iMac G4 FP/PB G3 Pismo   Mac OS X (10.4.8)   XLR8 G4 Upgrade for Pismo

  • Read Receipt redirect to different address

    We are using Outlook 2010 with Exchange 2010 version 14. I am wanting to create a saved message that will be used multiple times and be sent by many different people but I want the read receipt
    to go to the "manager" instead of the original sender. I searched the entire interwebs and have found nothing of the sorts. Is this even remotely possible? Coding is not an issue
    Thanks!!

    Read receipts go to the mailbox that is listed as the sending mailbox.  You say the message is being sent from each of these users.  Have you considered having it sent from (or on behalf of) another address?  That address could be a distribution
    group that this manager is the sole member of.  This would allow you to separate the send as (or send on behalf) from the actual mailbox.  Then read receipts will only go to the manager. You could also do this with a shared mailbox as the send as
    mailbox, and give the manager access to the shared mailbox.
    I'll add that read receipts are not a great way of determining whether a message has been seen or not.  Keep in mind that the reading pane allows someone to read a message without ever marking it as read. Add to this the fact that a person can decline
    to send the read receipt, regardless of whether they're read the message, and read receipts are fair at best for checking on the status of an email that's not in your mailbox.

  • If read receipts are on, will they work on Macbook?

    If someone has read receipts turned on on their iPhone, but they read the iMessage from their Macbook, will it still send a read receipt? It seems like it doesn't. Because if this person checks the message from their phone, I see the read receipt. But if they read it from their Macbook, I don't see a read receipt, just that it was delivered. Is this correct? Or is this a bug?

    Hey ktanner5,
    Thanks for the question. If I understand correctly, you want to know if OS X has read reciepts in Messages. I would recommend that you read this article, it may be able to help the issue.
    Messages (Yosemite): Accounts preferences for iMessage
    Send read receipts
    If you enable read receipts, people who send you messages will see when you’ve read them.
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • PIN Delivery and Read confirmati​ons

    Hello,
    Is it possible to disable the delivery and read receipt features of PIN's?  I know I can do this for emails but not sure how to for PIN's.
    Thank you!

    That is not possible.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Wiki server sometimes doesn't save messages in e-mail backlog

    When you have a wiki set up with a mail-group service, it gives you a very nice and convenient backlog of the messages. However, sometimes it inexplicably only saves the title of the message and discards the body. I haven't managed to figure out why

  • Resource Ref. Mapping

    Hello, I've created a data source in the data-sources.xml, mapped it in the orion-ejb-jar.xml and i look it up under the JNDI name java:comp/env/jdbc/MyDS and it all works fine. When I put another data source and I do the mapping the same way, it loo

  • Will spry show a javascript function from an external page?

    I have two pages http://www.autosnetfree.com/clock_buttonajax.php //this page has the spry calling the external page. http://www.autosnetfree.com/clock_auction1.php //this page has a countdown clock to a future date The buttonajax page has a submit b

  • IDK for Lotus Notes/Domino

    A customer has asked us if we can build an IDK for Lotus Notes/Domino in Lotus Script. We've validated that it's technically possible and now it's time to figure out how to approach the problem from the business side, i.e. do we do it as a consulting

  • Problems with licensing my CC upgrades

    From before I have CS5, and have bought CC for creative cloud team. And I must use the Try version, because I cannot license my CC upgrades. 2 times I have asked on the Customer support Chat, and I have phoned once. But still I have to use the Try ve