File: mailman3.logrotate

package info (click to toggle)
mailman3 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,808 kB
  • sloc: python: 39,280; sh: 279; makefile: 24
file content (14 lines) | stat: -rw-r--r-- 246 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/var/log/mailman3/mailman.log {
	daily
	rotate 5
	compress
	delaycompress
	missingok
	notifempty
	create 640 list list
	postrotate
		if /etc/init.d/mailman3 status >/dev/null; then \
		    /usr/bin/mailman reopen >/dev/null; \
		fi;
	endscript
}