• 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Getting a list of all email accounts via RPC API

R

rootusertom

Guest
I need a solution to get a list of ALL email accounts on a Plesk Server via the RPC API.
Why is it not possible to request multiple email accounts like this:

<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.4">
<mail>
<get_info>
<filter>
<site-id>1</site-id>
<site-id>3</site-id>
<site-id>6</site-id>
</filter>
<mailbox/>
</get_info>
</mail>
</packet>


It WOULD be possible to give multiple account names with the <name> tag, but that does not make sense, because I do not have the account names unless I request the email accounts of a certain site-id.

If i request the email accounts of all domains each at a time, it will take bloody ages.
Any hints or solutions?

regards, Tom
 
Why you use site-id but not domain_id? What about something like:

<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.0.2">
<mail>
<get_info>
<filter>
<domain_id>1</domain_id>
</filter>
<cp_access/>
<mailbox/>
<aliases/>
<permissions/>
</get_info>
</mail>
</packet>
 
LOL, this is a good one.

I don't use it because:
1) it is not in the manual
2) it does not work:
with
<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.4">
<mail>
<get_info>
<filter>
<domain-id>1</domain-id>
</filter>
<mailbox/>
</get_info>
</mail>
</packet>


I get the following answer:
(1014) Parser error: Request is invalid. Error in line 6: Element 'domain-id': This element is not expected. Expected is ( site-id ).

Your turn.
 
Back
Top