• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Plesk 11.5.30 - Trouble creating Mailbox vin cp-acces via RPC API

Steffen_K

New Pleskian
Plesk 11.5.30 - Trouble creating Mailbox with cp-access via RPC API

Hello,

im using Plesk 11.5.30 and tring to create a mailbox via RPC API, which has cp-access.

In the online-documentation you can read you to do this with the optional parameter
<cp-access> (type boolean), which have to stand between <name> and <mailbox>.
I've tried, but won't work.

Next step:
In plesk_mailname.xsd is mentioned an element <cp_access> (also between <name>
and <mailbox>), but this is a complexType and not a simple boolean.

--- snip ---
<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.5">'
<mail>
<create>
<filter>
<site-id>$DomID</site-id>
<mailname>
<name>$user</name>
<cp_access>
<enabled>true</enabled>
<access>
<locale>de-DE</locale>
</access>
</cp_access>
<mailbox>
<enabled>$enable</enabled>
<quota>$quota</quota>
</mailbox>
<password>
<value>$passwd</value>
<type>crypt</type>
</password>
<antivir>$antivir</antivir>
</mailname>
</filter>
</create>
</mail>
</packet>
--- snip ---

Returns:
--- snip ---
<status>error</status>
<errcode>1014</errcode>
<errtext>Parser error: Request is invalid. Error in line 9: Element 'cp-access': This element is not expected. Expected is one of ( mailbox, forwarding, alias, autoresponder, password, antivir ).</errtext>
--- snip ---
 
Last edited:
Hi,

i've got answer from paralles support - cp-access need api-version 1.6.5.0 - then it is also a boolean and not a complex datatype
 
Back
Top