• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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