Enabling mail for a group by using XML

Use the MailEnableGroup procedure of the Managed Exchange namespace to enable a group for mail. This procedure enables an Active Directory group to receive mail. This group functions as a distribution list.

This procedure performs explicit internal permissions testing. Only members of admins@organization and domain administrators can call this procedure.

Example of a request that calls the MailEnableGroup procedure

<request>
  <procedure>
	<execute namespace="Managed Exchange" procedure="MailEnableGroup">
	<executeData>
		<path>LDAP://ou=contosoOrg,ou=Hosting,dc=contoso,dc=com</path>
		<cn>DL1</cn>
		<proxyAddress>dl1@contosoOrg.com</proxyAddress>
	</executeData>
	</execute>
  </procedure>
</request>

Input for MailEnableGroup

The following input is valid for this request:

Typical response for MailEnableGroup

The response to this procedure does not contain significant data.

Important