Modifying a mailbox by using XML

Use the ModifyMailbox procedure of the Managed Exchange namespace to modify properties of an Exchange 2000 Server mailbox.

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 ModifyMailbox procedure

<request>
  <procedure>
	<execute namespace="Managed Exchange" procedure="ModifyMailbox">
	<executeData>
		<path>LDAP://cn=user1,ou=contosoOrg,cn=Hosting,dn=contoso,dn=com</path>
		<mail>
		<size>100</size>
		<disablePOP>1</disablePOP>
		<disableIMAP>1</disableIMAP>
		</mail>
	</executeData>
	</execute>
  </procedure>
</request>

Input for ModifyMailbox

The following input is valid for this request:

Typical response for ModifyMailbox

The response to this procedure does not contain significant data.

Important