Guest User

Untitled

a guest
May 26th, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.50 KB | None | 0 0
  1. <service.configuration>
  2.     <exchange uri="https://outlook.office365.com/EWS/Exchange.asmx"
  3.         username="" password="" folder="Inbox">
  4.         <rule>
  5.             <conditions>
  6.                 <regex property="Body" pattern="\s+Group\sName:\s(.*)" />
  7.             </conditions>
  8.             <actions>
  9.                 <forward-message to="abc@company.com">
  10.                     <rewrite-property property="Subject">
  11.                         {?} {$1}
  12.                     </rewrite-property>
  13.                 </forward-message>
  14.                 <move-message folder="Processed" />
  15.             </actions>
  16.         </rule>
  17.     </exchange>
  18. </service.configuration>
Add Comment
Please, Sign In to add comment