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

System email accounts

EricVis

Basic Pleskian
1) where do I check in Plesk 11 that all system mailboxes are redirected to root@domain and root mailbox is forwarded to plesk administrator email?
2) where do I find list of all system mailboxes
 
It depends on MTA.

For Postfix
postmap -s /var/spool/postfix/plesk/virtual

For Qmail
find /var/qmail/alias/ -name ".qmail-*" -exec sh -c "echo -n {}' '; cat {}; echo" \;

If you haven't mailbox like root@domain of postmaster@domain default address will be used. Usually you can find it in /etc/aliases

Actually there is 3 layers:

1. Low level - /etc/aliases All system mailboxes forwarded to root;
2. Middle level - defaults for each MTA. How to find them - described above;
3. High level - mailboxes for domain with names of system mailboxes which were added by user.

Priority is 3>2>1 If you can't find it in 3, go to 2 and then to 1
 
Back
Top