• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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