Hi all,
We updated our Domino 6.5.4 to 8.0.2 and then we faced this problem. We have some agents for sending e-mails to clients and we have to check delivery of e-mails to target mail servers. We do this with following code line in agents :
MemoDoc.DeliveryReport=“C”
This line is not working at updated Domino Server. We know that it is working newly installed Domino 8.0.2 so we think that the problem come with previous versions and updating process. If can not solve this we will start newly installation step by step but it is a huge work that we avoid. I hope somebody can help us.
More information:
When we create an agent with @MailSend formula it creates two e-mail, one for e-mail and one for delivery report request and we receive confirmation.
We receive confirmations when we send e-mail from old or newly created user’s inboxes with standart Delivery Options - Confirm Delivery option. We see from logs two message was created as above one for e-mail and one for delivery report request.
When we run following agent we see that only one message was created so it is normal that we don’t get confirmation. Since the server does not create a delivery report request with MemoDoc.DeliveryReport=“C” line. Why???
We tried this agent in old and newly created database with 8.0.2. Nothing changed.
Does this can be related to agent type or rights of to run agents? What should we check?
thnks.
Elif
Code:
Sub Initialize
Dim MemoDoc As NotesDocument
Dim dbTarget As NotesDatabase
Dim Sess As NotesSession
Set Sess = New NotesSession
Set dbTarget = Sess.Currentdatabase
Set MemoDoc = dbTarget.CreateDocument
MemoDoc.SendTo = "user@yahoo.com"
MemoDoc.DeliveryReport="C"
MemoDoc.Body="deneme"
MemoDoc.Subject="asasasasas " + Now()
Call MemoDoc.Send(False)
End Sub