Microsoft Exchange Server: Difference between revisions

From Starfish ETL
Jump to navigation Jump to search
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Exchange Origin=
=Exchange Origin=
==Sample Contact Origin Filters==
*Mailboxes
**This is used if you want to read from another mailbox other than your own. You enter here a comma-seperated list of mailboxes to read from. If this feature is not being used it can be left blank. You must be granted Read permissions by the other users for this to work correctly.
*Query String
**The Query String accepts a date, and is only used to filter for records greater than or equal to the date you supply. So just put a date in there “1/1/2017” and it should just bring back messages newer than that.
 
==Sample Origin Filters==
Query strings in the EWS Managed API and EWS are interpreted as a subset of AQS syntax. AQS strings are composed of either values or keyword/value pairs, separated by a colon (:).
Query strings in the EWS Managed API and EWS are interpreted as a subset of AQS syntax. AQS strings are composed of either values or keyword/value pairs, separated by a colon (:).
<source lang="xml">
<source lang="xml">
Line 6: Line 11:
</source>
</source>
When a value is specified without a keyword, all indexed properties are searched for the value. If a keyword is paired with a value, the keyword specifies a property to search for the corresponding value.  See: https://msdn.microsoft.com/en-us/library/office/dn579420(v=exchg.150).aspx
When a value is specified without a keyword, all indexed properties are searched for the value. If a keyword is paired with a value, the keyword specifies a property to search for the corresponding value.  See: https://msdn.microsoft.com/en-us/library/office/dn579420(v=exchg.150).aspx
I'm not sure if this criteria is the same for other Exchange folders or not.

Latest revision as of 13:58, 5 April 2017

Exchange Origin

  • Mailboxes
    • This is used if you want to read from another mailbox other than your own. You enter here a comma-seperated list of mailboxes to read from. If this feature is not being used it can be left blank. You must be granted Read permissions by the other users for this to work correctly.
  • Query String
    • The Query String accepts a date, and is only used to filter for records greater than or equal to the date you supply. So just put a date in there “1/1/2017” and it should just bring back messages newer than that.

Sample Origin Filters

Query strings in the EWS Managed API and EWS are interpreted as a subset of AQS syntax. AQS strings are composed of either values or keyword/value pairs, separated by a colon (:).

keyword:value

When a value is specified without a keyword, all indexed properties are searched for the value. If a keyword is paired with a value, the keyword specifies a property to search for the corresponding value. See: https://msdn.microsoft.com/en-us/library/office/dn579420(v=exchg.150).aspx