Oymakoon *nix forums beginner
Joined: 18 Mar 2008
Posts: 2
|
Posted: Thu Mar 20, 2008 11:12 am Post subject:
HOW-TO: Deliver many messages over 1 smtp session?
|
|
|
etc/master.cf:
| Code: | | singlethread unix - - n - 1 smtp |
etc/transport
| Code: | | problem.domain singlethread: |
etc/main.cf
| Code: | | singlethread_destination_concurrency_limit = 100 |
What I expect from Postfix: Take 100 messages addressed to *@problem.domain, open ONE smtp connection to corresponding MX server and send that 100 messages one-by one, divided by RSET command.
What I've got so far: Postfix indeed opens one smtp connection, but divides messages with RSET, QUIT. Which is effective to opening/closing smtp connections fast which is prohibited by server and my IP gets banned.
What I am doing wrong? |
|