On Wed, 28 Nov 2018, Viktor Dukhovni wrote:
Thanks for replay.
The box is a standard "CentOS Linux release 7.5.1804 (Core)"
Postfix standard (RH): postfix-2.10.1-6.el7.x86_64
I inserted in master.cf (last row):
limitrecip unix - - n - - smtp -o
default_destination_recipient_limit=3
The "<transport>_destination_recipient_limit" parameters are qmgr(8)
parameters, NOT smtp(8) parameters. The correct setting is:
main.cf:
limitrecip_dsetination_recipient_limit = 3
then "postfix reload" to refresh the queue manager.
Same result (it tried to deliver all the 7 address of the message
flushed for test).
# postconf |grep limitrec
limitrecip_delivery_slot_cost = $default_delivery_slot_cost
limitrecip_delivery_slot_discount = $default_delivery_slot_discount
limitrecip_delivery_slot_loan = $default_delivery_slot_loan
limitrecip_destination_concurrency_failed_cohort_limit =
$default_destination_concurrency_failed_cohort_limit
limitrecip_destination_concurrency_limit =
$default_destination_concurrency_limit
limitrecip_destination_concurrency_negative_feedback =
$default_destination_concurrency_negative_feedback
limitrecip_destination_concurrency_positive_feedback =
$default_destination_concurrency_positive_feedback
limitrecip_destination_rate_delay = $default_destination_rate_delay
limitrecip_destination_recipient_limit = 3
limitrecip_extra_recipient_limit = $default_extra_recipient_limit
limitrecip_initial_destination_concurrency = $initial_destination_concurrency
limitrecip_minimum_delivery_slots = $default_minimum_delivery_slots
limitrecip_recipient_limit = $default_recipient_limit
limitrecip_recipient_refill_delay = $default_recipient_refill_delay
limitrecip_recipient_refill_limit = $default_recipient_refill_limit
What are I missing?
Thanks, B.