2016-03-02 46 views
0

用戶想要發送帶有所有外部電子郵件的閱讀回執。我已經設置了在Outlook郵箱規則來執行以下操作:停止內部閱讀回執(Outlook 2013)

Apply this rule after I send the message 
notify me when it is read 
except if sent to *Bristol* //Dynamic group for office contacts 
or except with @"domainname" in the recipient's address 

停止讀取內部電子郵件收據,我通過「郵件流」設定ECP規則>規則:

IF 
the message type is *Read receipt* 
AND 
The sender is located *Inside the organization* 
AND 
The recipient is located *Inside the organization* 
THEN 
Delete the message without notifying anyone 

但它仍在請求內部聯繫人的閱讀回執。

Outlook和Exchange 2013

回答

0

您的規則將只停止讀取收件人不提示這是由消息本身內的屬性控制的交付。

您可以編寫一個傳輸代理https://msdn.microsoft.com/en-us/library/office/dd877026(v=exchg.150).aspx,它可以通過使用TNEF解析器基本上處理通過Hub(或集線器服務器)的每條消息,找到PidTagReadReceiptRequested並將其設置爲對於這些內部收件人爲false。 Probalby這種類型的最好的樣品將是http://blogs.msdn.com/b/mstehle/archive/2009/01/13/howto-sample-transport-agent-add-headers-categories-mapi-props-even-uses-a-fork.aspx

另一種可行的方法是使用tagAction http://www.dimastr.com/redemption/rdoruleaction.htm#RDORuleActionTag以編程方式設置規則。從理論上講,你應該可以用這個動作來修改MAPI屬性,但是周圍有複雜的東西,我從來沒有使用它。

乾杯 格倫

+0

我上面的技能有一點,但感謝的指南。 – Kelewan