K_K
K_K

Reputation: 23

Outlook web add-in activation rules in manifest

I am having trouble activating my add-in when a message is encrypted or signed. It works fine on regular messages, but with encrypted or signed messages the button is just grayed out.

I have tried this without any luck:

<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" ItemClass="IPM.Note.Secure" IncludeSubClasses="true" />
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" ItemClass="IPM.Note.Secure.Sign" IncludeSubClasses="true" />

Upvotes: 0

Views: 308

Answers (2)

user7823505
user7823505

Reputation:

Add-ins in Outlook are currently not supported on SMIME encrypted or signed messages. For support, please request this feature in UserVoice

Upvotes: 2

Marc LaFleur
Marc LaFleur

Reputation: 33094

From the documentation:

Outlook doesn't activate add-ins in read form for certain types of messages, including items that are attachments to another message, items in the Outlook Drafts folder, or items that are encrypted or protected in other ways.

Upvotes: 3

Related Questions