Currently I own 2 sender domains aaa.com and bbb.com. The restriction is that:
- Each domain can only send one email after another with a delay of 200 seconds.
- Each domain can only send 100 emails within 24 hours.
The following main.cf config is not applicable if I want to send emails from both domains to a single receiving domain at the same time, since all emails will be pending at one queue instead of two (per sending domains).
default_destination_rate_delay=200s
smtp_destination_concurrency_limit = 2
smtp_extra_recipient_limit = 100
Is there any solution for this kind of condition?