On Thu, Jan 29, 2009 at 11:54:00PM -0500, Victor Duchovni wrote: > > slow_destination_concurrency_failed_cohort_limit = 0 > > This is what you should have in main.cf, however there is a bug > in either the implementation or the documentation and the queue manager > is looking for: > > slow_concurrency_failed_cohort_limit > > not > > slow_destination_concurrency_failed_cohort_limit > > This applies also to > > <transport>_concurrency_positive_feedback > <transport>_concurrency_negative_feedback >
Index: src/global/mail_params.h --- src/global/mail_params.h 28 Jul 2008 18:27:05 -0000 1.1.1.22 +++ src/global/mail_params.h 30 Jan 2009 05:04:06 -0000 @@ -2899,12 +2899,12 @@ * Scheduler concurrency feedback algorithms. */ #define VAR_CONC_POS_FDBACK "default_destination_concurrency_positive_feedback" -#define _CONC_POS_FDBACK "_concurrency_positive_feedback" +#define _CONC_POS_FDBACK "_destination_concurrency_positive_feedback" #define DEF_CONC_POS_FDBACK "1" extern char *var_conc_pos_feedback; #define VAR_CONC_NEG_FDBACK "default_destination_concurrency_negative_feedback" -#define _CONC_NEG_FDBACK "_concurrency_negative_feedback" +#define _CONC_NEG_FDBACK "_destination_concurrency_negative_feedback" #define DEF_CONC_NEG_FDBACK "1" extern char *var_conc_neg_feedback; @@ -2912,7 +2912,7 @@ #define CONC_FDBACK_NAME_SQRT_WIN "sqrt_concurrency" #define VAR_CONC_COHORT_LIM "default_destination_concurrency_failed_cohort_limit" -#define _CONC_COHORT_LIM "_concurrency_failed_cohort_limit" +#define _CONC_COHORT_LIM "_destination_concurrency_failed_cohort_limit" #define DEF_CONC_COHORT_LIM 1 extern int var_conc_cohort_limit; -- Viktor. Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the "Reply-To" header. To unsubscribe from the postfix-users list, visit http://www.postfix.org/lists.html or click the link below: <mailto:majord...@postfix.org?body=unsubscribe%20postfix-users> If my response solves your problem, the best way to thank me is to not send an "it worked, thanks" follow-up. If you must respond, please put "It worked, thanks" in the "Subject" so I can delete these quickly.