switch pickup and qmgr to unix sockets instead of fifos.
This helps avoid postfix waking up an idle disk with mtime updates for fifos. Evidently only fifos worked for these two in earlier postfix versions, but now it works fine in my testing, and it also makes the config consistent for all postfix services. Thanks to Charles Hannum.
This commit is contained in:
parent
eea7ca5986
commit
7e85dcc65c
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: master.cf,v 1.8 2004/04/27 05:07:46 heas Exp $
|
||||
# $NetBSD: master.cf,v 1.9 2004/05/20 22:06:52 dan Exp $
|
||||
#
|
||||
#
|
||||
# Postfix master process configuration file. Each logical line
|
||||
|
@ -83,9 +83,9 @@
|
|||
#submission inet n - n - - smtpd
|
||||
# -o smtpd_etrn_restrictions=reject
|
||||
#628 inet n - n - - qmqpd
|
||||
pickup fifo n - n 60 1 pickup
|
||||
pickup unix n - n 60 1 pickup
|
||||
cleanup unix n - n - 0 cleanup
|
||||
qmgr fifo n - n 300 1 qmgr
|
||||
qmgr unix n - n 300 1 qmgr
|
||||
#qmgr fifo n - n 300 1 oqmgr
|
||||
rewrite unix - - n - - trivial-rewrite
|
||||
bounce unix - - n - 0 bounce
|
||||
|
|
Loading…
Reference in New Issue