| The only way to do this is with a script that reacts to the
event triggers that were introduced in Poco 2.61.
The script code would be:
ReadEMail $id
AddHeader %message "Disposition-Notification-To:" $id
To implement this follow the steps outlined below:
 |
- Copy the above code and paste it into a new script.
Save the script as "RequestReceipt".
- Open the events form (Ctrl+F9) and configure the script to run as an application wide event in response to the
following events:
- OnCompose
- OnForwardAttEdit
- OnForwardEdit
- OnReplyAllEdit
- OnReplyEdit
|
|
 |
- Copy the above code and paste it into a new script.
Save the script as "RequestReceipt".
- Shutdown Poco and configure the script to run in response to the appropriate events.
I would advise making this an application wide event. The events you will want to use are:
- OnCompose
- OnForwardAttEdit
- OnForwardEdit
- OnReplyAllEdit
- OnReplyEdit
To do this you will need to add the following lines to the bottom of your poco.ini file. Open the file
in notepad, move to the bottom and paste the lines:
[Events]
OnCompose_Scripts=RequestReceipt
OnForwardAttEdit_Scripts=RequestReceipt
OnForwardEdit_Scripts=RequestReceipt
OnReplyAllEdit_Scripts=RequestReceipt
OnReplyEdit_Scripts=RequestReceipt
|
|