ja...@monsterjam.org: > hey folks.. Im running the latest postfix on an ubuntu server with > mailmain for mailing list management.. everything is pretty much working > fine except that Im trying to get some kind of rate-limiting or > throttling working for all outbound messages. Ive searched all over and
The following requires Postfix 2.5 or later: /etc/postfix/main.cf: # Deliver all mail via the "smtp" transport in master.cf. # Use [] to suppress MX lookup. relayhost = [mail.example.com] default_transport = smtp smtp_destination_rate_delay = 30 This will deliver one message every 30 seconds. Wietse