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");
}