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

Question can i see who deleted mails?

pauls1919

New Pleskian
Server operating system version
CloudLinux 8.4 x86_64
Plesk version and microupdate number
Plesk Obsidian 18.0.44.3
My client is complaining about mails being deleted after 14 days. Can i see on some logs what ip or device deletes mails?
 
Most likely, your client is using POP3 to fetch the mails, and in the email client, there is a POP3 setting to delete mails after 14 days.
 
Most likely, your client is using POP3 to fetch the mails, and in the email client, there is a POP3 setting to delete mails after 14 days.
i thought about it but on what log is mentioned from what ip mails were deleted? so i can show customer that he deleted them.
 
By default, Dovecot does not log mail operations (move, delete etc.).
But it is possible to log those things using the mail logger plugin of Dovecot:

You can create your custom Dovecot configuration as explained here:
Customized Dovecot configuration file /etc/dovecot/dovecot.conf is overwritten after Plesk updates - Support Cases from Plesk Knowledge Base

Example file: /etc/dovecot/conf.d/99-custom-logging.conf:
Code:
# Enable the plugin globally for all services
mail_plugins = $mail_plugins notify mail_log

plugin {
  mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
  mail_log_fields = uid box msgid size from
}

Then restart or reload dovecot.

Disclaimer: Do this at your own risk!
 
Back
Top