If you don’t want Return Receipt

  • 30 Dec, 2009

Notes does not have the feature to deny Return Receipt. If you don’t like it you can disable it on the server

In the Configuration Settings > MIME tab > Conversion Options  tab > General tab, set “Return receipts” as Enabled or Disabled to affect how return receipts go to and from the Internet.  For more information, refer to the Domino Administrator Information Center topic “Enabling Domino to process return receipts for SMTP messages.”

If you want to send but control Return Receipt on the Notes Client put the code on the QueryOpen event of the memo form:

Dim answer As Integer
       If( Not Source.Document Is Nothing ) Then
               If( Source.Document.HasItem( “ReturnReceipt” ) ) Then
                       If( Source.Document.ReturnReceipt(0) = “1” ) Then
                               answer% = Messagebox(“Deseja enviar aviso de recebimento solicitado por”& Chr$(10) & Chr$(13) & Chr$(13)_
                               &Source.Document.GetItemValue(“From”)(0), 36, _
                               “Aviso de Recebimento”)
                               If (answer%=7) Then
                                       Source.Document.ReturnReceipt = “0”
                                       Source.Document.Save True, False
                               End If
                       End If
               End If
       End If

Related Posts

Migrating messages from Domino to Google using IMAP

  • 20 Feb, 2022

It's only for messages. No calendar migration Imapsync command is a tool allowing incremental and recursive imap transfers from one mailbox to another. If you don't understand the previous sentence,

Migrating messages from Domino to Google using IMAPRead More

Domino V12 and Verse 2.1 How to add a Photo URL

  • 08 Jun, 2021

Today i setup a Domino V12 server just for test some new features. A customer ask to use photos on Verse hosting photos on Domino. Domino V12 comes with Verse 2.0. I just download the version 2.1 of

Domino V12 and Verse 2.1 How to add a Photo URLRead More

Notes / Domino is forever

  • 04 Feb, 2021

Yesterday it seemed like it would be an ordinary working day but a client called me informing about the expiration of a certifier. It would be normal to resolve the problem with the re-certification p

Notes / Domino is foreverRead More