• 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.

Issue API "remove email" call breaks Webmail

pge

New Pleskian
Hi all,

General Infos first:

Code:
Product version: Plesk Obsidian 18.0.20.2
     OS version: Ubuntu 18.04 x86_64
     Build date: 2019/11/01 13:00
       Revision: 8990d615e1ba3c129f3e9a49ad9a3ff28d99aa08

i have created a site and added access to the api via panel.ini.

Now i create a mailaccount using

Code:
<?xml version="1.0" encoding="UTF-8"?>
<packet>
<mail>
<create>
   <filter>
      <site-id>3</site-id>
      <mailname>
          <name>testaccount7</name>
          <mailbox>
                <enabled>true</enabled>
                <quota>1024000</quota>
          </mailbox>
          <password>
                <value>pvL2o7pjc</value>
                <type>crypt</type>
          </password>
      </mailname>
   </filter>
</create>
</mail>
</packet>

Verify it has been created and also try webmail login. Everything cool.

Now i try to delete said account with

Code:
<?xml version="1.0" encoding="UTF-8"?>
<packet>
<mail>
<update>
  <remove>
   <filter>
      <site-id>3</site-id>
      <mailname>
          <name>testaccount7</name>
      </mailname>
   </filter>
  </remove>
</update>
</mail>
</packet>

I get a

Code:
<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.9.1">
  <mail>
    <update>
      <remove>
        <result>
          <status>ok</status>
          <mailname>
            <name>testaccount7</name>
          </mailname>
        </result>
      </remove>
    </update>
  </mail>
</packet>

But the account still is there on the plesk frontend, but all of the sudden the webmail. URL shows "connection refused".
 
No Feedback at all?
This must be a common issue and someone else must have experienced this?
 
Back
Top