Re: After logrotation Dovecot still writes to old log file

2018-06-14 Thread Michael Heuberger
Yes and no difference. Same problem. I think it's this bug https://www.dovecot.org/pipermail/dovecot/2017-November/109971.html But cant upgrade when on Ubuntu ... that is still not out. On 15/06/18 17:10, Sami Ketola wrote: On 15 Jun 2018, at 5.17, Michael Heuberger

Re: After logrotation Dovecot still writes to old log file

2018-06-14 Thread Sami Ketola
> On 15 Jun 2018, at 5.17, Michael Heuberger > wrote: > > Thanks man > > You suggesting the same as https://wiki2.dovecot.org/Logging > says? > > postrotate > kill -s 0 `cat /var/run/dovecot/master.pid` || kill -s USR1 `cat > /var/run/dovecot/master.pid

Re: After logrotation Dovecot still writes to old log file

2018-06-14 Thread Michael Heuberger
Thanks man You suggesting the same as https://wiki2.dovecot.org/Logging says? postrotate kill -s 0 `cat /var/run/dovecot/master.pid` || kill -s USR1 `cat /var/run/dovecot/master.pid` endscript Well, I already tried that and didn't work. Hence my guess that it's something else. On 15/06/18

Re: After logrotation Dovecot still writes to old log file

2018-06-14 Thread Stephen Satchell
>From the manpage: SIGNALS Dovecot handles the following signals as described: USR1 Force dovecot to reopen all configured log files (log_path, info_log_path and debug_log_path). So, you need to add kill -s USR1 `cat /var/run/dovecot/master.pod` (or wherever your di