mirror of
https://github.com/casjaysdevdocker/postfix
synced 2025-01-18 12:34:46 -05:00
22 lines
429 B
Plaintext
22 lines
429 B
Plaintext
[supervisord]
|
|
user = root
|
|
nodaemon = true
|
|
logfile = /dev/null
|
|
logfile_maxbytes= 0
|
|
|
|
[program:rsyslog]
|
|
command = rsyslogd -n
|
|
autostart = true
|
|
autorestart = true
|
|
stdout_logfile = /dev/stdout
|
|
stderr_logfile = /dev/stderr
|
|
stdout_logfile_maxbytes = 0
|
|
stderr_logfile_maxbytes = 0
|
|
|
|
[program:postfix]
|
|
process_name = postfix
|
|
autostart = true
|
|
autorestart = true
|
|
directory = /etc/postfix
|
|
command = /usr/sbin/postfix -c /etc/postfix start-fg
|