<?xml version="1.0" encoding="UTF-8"?><policy>
	<rule>
		<description>Assign Manager template if Title contains "Manager"</description>
		<conditions>
			<and>
				<if-class-name op="equal">User</if-class-name>
				<if-op-attr name="Title" op="available"/>
				<if-op-attr mode="regex" name="Title" op="equal">.*manager.*</if-op-attr>
			</and>
		</conditions>
		<actions>
			<do-set-op-template-dn>
				<arg-dn>
					<token-text xml:space="preserve">Users\ManagerTemplate</token-text>
				</arg-dn>
			</do-set-op-template-dn>
		</actions>
	</rule>
	<rule>
		<description>Assign Employee template if Title does not contain "Manager"</description>
		<conditions>
			<and>
				<if-class-name op="equal">User</if-class-name>
				<if-op-attr name="Title" op="available"/>
				<if-op-attr mode="regex" name="Title" op="not-equal">.*manager.*</if-op-attr>
			</and>
		</conditions>
		<actions>
			<do-set-op-template-dn>
				<arg-dn>
					<token-text xml:space="preserve">Users\EmployeeTemplate</token-text>
				</arg-dn>
			</do-set-op-template-dn>
		</actions>
	</rule>
</policy>
