I've got a bunch of Mailman3 mailing lists, but one of them has 500+ users, and 
about 60 of them are on @rochester.rr.com (RoadRunner, which was Time Warner's 
broadband system, but now it's part of Spectrum). And RoadRunner has been 
bouncing all or nearly all the emails because of either too many recipients per 
connection, or too many simultaneous connections. So what I've done so far is I 
told Mailman to not limit the number of recipients per connection 
(max_recipients: 0), and then I configured a new transport in postfix. I put 
the following in master.cf:
`# For systems that don't like multiple connections:
slow_smtp unix -       -       n       -       -       smtp
   -o syslog_name=postfix-slow
`
Then I set up the transport file:
`# Transport map for connections that don't like high concurrency (like Time 
F***ing Warner)
rochester.rr.com slow_smtp:rochester.rr.com
`
And then in the mail.cf I've set some configuration for slow_smtp
`# F***ing road runner
slow_smtp_destination_concurrency_limit = 2
slow_smtp_destination_recipient_limit = 5
`
It looks right, and the log indicates that the slow_smtp transport is being 
used for rochester.rr.com addresses, but right now it's sending the whole 60 of 
them all in one connection. I thought the configuration I had would send them 
to 5 recipients at a time, and only make two connections at a time until the 
backlog was cleared. I don't know what their actual limits are, but I want to 
be able to get this setup working so I can test it.


--
Paul Tomblin

_______________________________________________
Postfix-users mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to