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

maillog rotate

J

jeykalu

Guest
I try to rotate the /usr/local/psa/var/log/maillog file. The problem is that it rotates but after the maillog doesn't work. Here my logrotate.conf code, I think I have to add something in postrotate... What do you think ?

/usr/local/psa/var/log/maillog {
size=1024k
rotate 10
compress
missingok
}

Thanks.
 
Have you tried putting the 'copytruncate' option? That way the original maillog file stays in place, but upon successful copy to the backup file, the original is then modified truncated 'in place', so no worries about ownership/perms/starting and stopping the service...

For example, Plesk does this to rotate all the logs in /usr/local/psa/admin/logs :

/usr/local/psa/admin/logs/*_log {
weekly
rotate 12
missingok
notifempty
copytruncate
compress
 
I had the same response on another forum. It is the good solution. Now it works. Thank you.
 
Back
Top