Based on the Microsoft blog post below, I started using Named Properties to tag outgoing emails with a Key,Value pair when using EWS. This approach is used to find back the email that was just sent on the server so you can get the identifier of the mail needed for post processing (like moving the email).
What the article didn't say is that there is a hard limit on the number of named properties you can create in the database (property name and guid pairs).
- https://technet.microsoft.com/en-us/library/bb851495(v=exchg.80).aspx
- https://blogs.technet.microsoft.com/exchange/2010/07/29/confused-about-named-properties-quotas-in-exchange-2003-and-exchange-2007-join-the-club/
I used properties to solve the exact problem the blog post was solving. Why wouldn't they mention a limitation like this? I feel I missed something that should have been obvious.
Questions:
Is there a way to use these properties so that they don't get exhausted? Some technique the blog post doesn't describe?
Is there an alternative approach I can use to solve the same problem?