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!

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

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

  • 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

  • Difference between inbound delivery and Goods Receipt

    Can any one explain difference between inbound delivery and goods Receipt??

    Hi dear,
    Inbound delivery is one confirmation used to indicate the expected goods receipts in advance, so that the related process partners like warehouse personnel , planning personnel can utilise this data for initiation of actions and planning. Also , we can make this confirmation relevant to Planning in the customisation, to enhance the performance.
    In general , we need confirmations only as a kind of assurance/information , in absence of the goods.
    But if the goods are received physically , obviously we do not need any confirmations , we would perform the goods receipt .
    When working with Inbound delivery , the goods receipt is done with respect to specific inbound delivery( though not compulsary to do so) , so that the integration done in the system works to the advantage of the users.

  • 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

  • I use Mac Mail. How do I set up an email to get a delivery or read receipt?

    I use Mac Mail. How do I set up an email to get a delivery or read receipt? In other words, I want to receive automated confirmation that the email was either delivered, opened, or both -- which you can do in Outlook. I was not able to find this option in the Mail menu.

    Unfortunately OS X Mail does not offer this feature as far as I know. With Apple failing to offer that feature up until now I highly doubt it'll happen in the future :/

  • Delivery and Goods Receipt without goods value

    Hi!
    this is my first post in this forum, hi everybody
    Now the question:
    My goal: warehouse manager shouldn't see goods value (prices) of purchased material and final products (sold goods).
    That means I would like to remove all value data (Unit Price, Discount%, Total etc.) from the documents Delivery and Goods Receipt. Is it possible? The values should be then added by accountancy (any kind of connection between warehouse documents and journal entry?).
    Is it possible to split the value data from quantity data (SAP BO 2007A)?
    Thank you for any suggestion!
    Aleksandra

    You may try form setting to hide all those columns for this user.
    Thanks,
    Gordon

  • Delivery confirmation & read-receipt in Mail?

    Is it possible to obtain a delivery confirmation & read-receipt in Mail?

    No, it is not.  The OS X Mail application does not offer this functionality.

  • Schedule for del stock display even after delivery and goods receipt

    Hi, Please suggest me for below scenario...
    I have a scenario where we does STO and then delivery against outbound and performs goods receipt. in MMBE the stock is still displaying under schedule for delivery and also in MD04 even the stock is deducted from supplying plant and performed goods receipt at receiving plant..also stock is displaying at receiving plant..why the stock is still displaying in stock for del at sending plant..in general what happens when we does goods receipt against outbound delivery or when we does against STO?

    ok sir ;
    No i don't talke abouat STP i don't have any transit stock it's a simpl sales based on global purchas
    -first with me21n i created global purchas order
    -the sales will be picked from this purchas .
    -delivery is assigned automatically to this purchas order  with user exit.
    -with vl02n in goods issue steps there is tow operations ( stock mvt 101 in purchas assignement and a normal 601 for delivery )

  • Blocking or Filtering Delivery Reports / Read Receipts

    Using Mail, Is there any way to filter or block my Mac (and iPhone) from sending delivery reports or read receipts to senders that imbed this request into their emails that are sent to me?
    If not available within Mail or OSX , are there 3rd party filters/pgms available to give me this capability?
    Thx!

    I have used my Online Web Access to my work Outlook account to send an e-mail to my Mac to be read by the Mac's Mail program. I've sent an HTML message with a request for a Read Recipt and a Delivery Receipt. Outlook got replies for both. I then sent a plaintext message and requested a Read Receipt and a Delivery Receipt. Outlook again got replies from both.
    This started because a person that had emailed my wife said they receieved a read request. I told her that the Mac Mail program does not respond to those. We decided to test and I was shocked that I received the receipts. I then tested with my own Mac and was again shocked to receive both receipts.
    My test used her work account and her .mac account. I then further tested using my .mac account as the recipient.
    So while I believed as you said that the Mac Mail program does not respond to those, it clearly is.
    Both Macs are running the latest operating system. My mac was just purchased last June.
    Any ideas on how to stop the Mac Mail program from responding to Read Receipts and Delivery Receipts?

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

Maybe you are looking for

  • I cannot update IPhoto or IMovie- Error message from App Store

    Hi there- I cannot update IPhoto or IMovie. I have the latest OS. I cannot use these Apps either- they both ask me to update to the newest version, but when I try to I get an error message saying that the App store could not complete my request and t

  • Any Apps for HP Deskjet 3520 e-all-in-o​ne

    are there any apps on the eprint center that will work on my HP Deskjet 3520 e-all-in-one This question was solved. View Solution.

  • Getting my purchased tv shows

    hi i purchased a season of surface. it takes me forever to get them downloaded to itunes ie.. out of 11 episodes and two weeks i have only gotten 3 to itunes and to my ipod. it takes a whole day to get one. my computer is more than capable i'm on dir

  • Hyper V VMMS Event ID 10172 server 2012 R2

    Hi, Recently setup a brand new 2012 R2 server, using hyper v to host 3 VM's, backing up with backup exec 2014.The backups are failing, backup exec stating... V-79-40960-38521 - Snapshot Technology: Initialization failure on: "VRTSRV::\\UKBNHV01.ProCa

  • How to avoid minority interest dividend calculation

    Hi, I have a requirement to avoid dividend postings to minority interest share portion. We want to post 100% of the dividends to the group company. However the current group shareholding is only 75% hence the system is posting 25% of the dividends to