Como configurar o postfix para reenviar retornos suaves após X horas no Debian

3

Esta é uma pergunta noob completa para o postfix, mas tenho que administrar uma instalação ativa e precisar reconfigurar a taxa de reenvio.

A ajuda seria apreciada.

    
por partoa 18.02.2010 / 16:11

2 respostas

2

Os parâmetros minimal_backoff_time , maximum_backoff_time e queue_run_delay podem ajudá-lo.

maximal_backoff_time (default: 4000s)

The maximal time between attempts to deliver a deferred message.

This parameter should be set to a value greater than or equal to

$minimal_backoff_time. See also $queue_run_delay.

Time units: s (seconds), m (minutes), h (hours), d (days), w

(weeks). The default time unit is s (seconds).

Para mais informações, consulte a documentação do Postfix sobre os parâmetros

    
por 04.08.2010 / 09:33
1

Você quer que o parâmetro delay_warning_time , configure para dizer que 4h se comportam um pouco como o sendmail:

delay_warning_time (default: 0h)
       The  time  after  which the sender receives the message headers of mail
       that is still queued.

       To enable this feature, specify a  non-zero  time  value  (an  integral
       value plus an optional one-letter suffix that specifies the time unit).

       Time units: s (seconds), m (minutes), h (hours), d (days),  w  (weeks).
       The default time unit is h (hours).

Ou seja, faça um:

postconf -e delay_warning_time=4h

ou edite o arquivo main.cf e coloque delay_warning_time=4h .

    
por 18.02.2010 / 16:36

Tags