mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
117 lines
3.4 KiB
Plaintext
117 lines
3.4 KiB
Plaintext
|
# each program entry below is a separate terminal command.
|
||
|
# Each command MUST run in the foreground and stay running.
|
||
|
# If the command ever exits, the supervisor daemon will automatically run it again.
|
||
|
# Programs can be controlled like this: 'supervisorctl start fail2ban' 'supervisorctl stop fail2ban'
|
||
|
# supervisor writes program statuses in /var/log/supervisor
|
||
|
|
||
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
|
||
|
[program:mailserver]
|
||
|
startsecs=0
|
||
|
autostart=true
|
||
|
autorestart=false
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|
||
|
command=/usr/local/bin/start-mailserver.sh
|
||
|
|
||
|
[program:cron]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/cron -f
|
||
|
|
||
|
[program:rsyslog]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/rsyslogd -n
|
||
|
|
||
|
[program:fail2ban]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/local/bin/fail2ban-wrapper.sh
|
||
|
|
||
|
[program:opendkim]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/opendkim -f
|
||
|
|
||
|
[program:opendmarc]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/opendmarc -f -p "inet:8893@localhost" -P /var/run/opendmarc/opendmarc.pid
|
||
|
|
||
|
[program:dovecot]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/dovecot -F -c /etc/dovecot/dovecot.conf
|
||
|
|
||
|
[program:filebeat]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/bin/filebeat -c /etc/filebeat/filebeat.yml
|
||
|
|
||
|
[program:clamav]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/clamd -c /etc/clamav/clamd.conf
|
||
|
|
||
|
[program:postgrey]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/mail/mail.log
|
||
|
stderr_logfile=/var/log/mail/mail.log
|
||
|
command=/usr/sbin/postgrey --inet=127.0.0.1:10023 --syslog-facility=mail --delay=%(ENV_POSTGREY_DELAY)s --max-age=%(ENV_POSTGREY_MAX_AGE)s --greylist-text="%(ENV_POSTGREY_TEXT)s"
|
||
|
|
||
|
[program:amavis]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/sbin/amavisd-new foreground
|
||
|
|
||
|
[program:fetchmail]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
user=fetchmail
|
||
|
command=/usr/bin/fetchmail -f /etc/fetchmailrc -v --nodetach --daemon 300 -i /var/lib/fetchmail/.fetchmail-UIDL-cache --pidfile /var/run/fetchmail/fetchmail.pid
|
||
|
|
||
|
[program:postfix]
|
||
|
startsecs=0
|
||
|
autostart=false
|
||
|
autorestart=true
|
||
|
stdout_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
stderr_logfile=/var/log/supervisor/%(program_name)s.log
|
||
|
command=/usr/local/bin/postfix-wrapper.sh
|
||
|
|