cancel
Showing results for 
Search instead for 
Did you mean: 

Email Notification

stewball
Champ in-the-making
Champ in-the-making
Hello,

Ours client received email from userB@alfresco.fr with the following text:

Your message has been deleted without being read…  Smiley Surprisedops:  How can I change that?

For example:
An email is send from a client to user A (userA@company.com)
User A, move the email into alfresco using outlook drag and drop.
Sometimes, the client received an email from userB@alfresco.fr saying that the message has been deleted.

First of all, addresses with @alfresco.fr exist only into outlook.
And user B has never read theses emails. In some cases the email are store in a space that user B cannot see. :shock:
User B (me) is not into email_contributor group.

I don’t understand what’s happened?  Thanks.


Stewball


Conf:
Outlook 2007
Alfresco 3.4c on Windows Server
1 REPLY 1

stewball
Champ in-the-making
Champ in-the-making
The problem was due to read reciepe notification in outlook. In order to delete the read and reciepe notification, i have done the following script:

       var email=document.content;
        var pos=0;
      

pos=email.indexOf("Disposition-Notification-To:");

if (pos!=-1)
    {

   document.addAspect("cm:versionable");   

   var workingCopy = document.checkout();

   workingCopy.content=email.substring(0,pos);
   pos+=28;
   workingCopy.content+=email.substr(pos);

   workingCopy.checkin("Suppression de l'accusé de lecture");
    }