Skip to content

Commit a10ebd3

Browse files
committed
Reduce OutgoingRunner instances to 1 since we now have process coordination
1 parent beeab0f commit a10ebd3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mailman/Defaults.py.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -938,10 +938,10 @@ QRUNNERS = [
938938
('CommandRunner', 1), # commands and bounces from the outside world
939939
('IncomingRunner', 4), # posts from the outside world
940940
('NewsRunner', 1), # outgoing messages to the nntpd
941-
('OutgoingRunner', 8), # outgoing messages to the smtpd
941+
('OutgoingRunner', 1), # outgoing messages to the smtpd (single instance with process coordination)
942942
('VirginRunner', 1), # internally crafted (virgin birth) messages
943943
('RetryRunner', 1), # retry temporarily failed deliveries
944-
]
944+
]
945945

946946
# Set this to Yes to use the `Maildir' delivery option. If you change this
947947
# you will need to re-run bin/genaliases for MTAs that don't use list

0 commit comments

Comments
 (0)