Andreas Schuldei:
> h?!
>
> i have this in my main.cf:
>
> destination_concurrency_feedback_debug = yes
> default_destination_rate_delay = 10s
> default_destination_concurrency_limit = 10
> default_destination_concurrency_positive_feedback = 0.05
> default_destination_concurrency_negative_feedback = 1
> default_initial_destination_concurrency = 1
>
> The goal is that the server starts sending mail every 10th
> second, then after 50 mails increase to 2 mails every 10 seconds,
> until it sends 10 mails every then seconds, ramping up
> slowly.
It inserts 10s delay between INDIVIDUAL deliveries.
The documentation says:
default_destination_rate_delay (default: 0s)
The default amount of delay that is inserted between INDIVIDUAL deliv-
eries to the same destination
Thus, with default_destination_rate_delay=10s, after one INDIVIDUAL
delivery is completed, the next INDIVIDUAL delivery starts 10
seconds later.
INDIVIDUAL delivery != PARALLEL delivery.
Wietse