SMTP destination concurrency and rate limiting #3600
Unanswered
SaasX
asked this question in
Help with using Postal
Replies: 1 comment 3 replies
|
I think you'd have to add the functionality yourself, its a little beyond what Postal was intended for, it just wants to send as many emails as it can 😅 |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi everyone,
I'm wondering if there is a way in Postal to achieve behavior similar to these Postfix parameters:
smtp_destination_concurrency_limit = 1
smtp_destination_rate_delay = 60s
smtp_extra_recipient_limit = 1
My goal is to ensure that each SMTP server sends:
Only one message at a time to a given destination.
A 60-second delay between messages to the same destination.
Only one recipient per SMTP transaction.
Is there a built-in way to configure this in Postal, or would it require modifying the queue processing or SMTP client behavior?
Has anyone implemented something similar?
Thanks!
All reactions