Enabling a Webmail Service

The enable operation is used to make a webmail services available for selection in hosting plan settings.

In this chapter:

Request Packet Structure

Response Packet Structure

Samples

 

Request Packet Structure

A request XML packet making a webmail services available for selection in hosting plan settings includes the enable operation node:

<packet version="1.6.3.1">
<webmail>
   <enable>
   ...
   </enable>
</webmail>
</packet>

The enable node is presented by type UnRegisterInputType (webmail.xsd). Its graphical representation is as follows:

enableInput

 

Response Packet Structure

The enable node of the output XML packet is structured as follows:

registerOutput

 

Samples

This packet enables an external webmail service Horde:

<packet>
<webmail>
   <enable>
      <filter>
         <name>Horde</name>
      </filter>
   </enable>
</webmail>
</packet>

Response:

<packet>
<webmail>
   <enable>
      <result>
         <status>ok</status>
         <webmail>
            <name>Horde</name>
            <status>true</status>
            <url>http://example.com</url>
         </webmail>
      </result>
   </enable>
</webmail>
</packet>