• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.

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