Creating a mailbox by using XML

Use the CreateMailbox procedure of the Managed Exchange namespace to create a mailbox for a user. This procedure gives the user access to basic messaging and calendar services through Exchange 2000 Server.

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

<request>
  <procedure>
	<execute namespace="Managed Exchange" procedure="CreateMailbox">
	<executeData>
		<path>LDAP://cn=user1,ou=contosoOrg,ou=Hosting,dc=contoso,dc=com</path>
		<alias>user1</alias>
		<proxyAddresses>
		<value>user1@contosoOrg.com</value>
		<value>user1@contoso.com</value>
		</proxyAddresses>
		<mail>
		<size>100</size>
		<disablePOP>1</disablePOP>
		<disableIMAP>1</disableIMAP>
		</mail>
	</executeData>
	</execute>
  </procedure>
</request>

Input for CreateMailbox

The following input is valid for this request:

Typical response for CreateMailbox

The response to this procedure does not contain significant data.

Important