[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Freeze some incoming mails



Alejandro Daich <adaich@ccc.uba.ar>
> Dear list members:
> 		I need to keep some messages for a few days and then 
> deliver them since the destination server is down.

Write a scheduler.conf clause that'll match just those messages, with
longer interval and expire times.

This is from my scheduler.conf:

smtp/*
        command="smtp -h lupinella.troll.no -l /var/log/mail/smtp"

smtp/*.troll.no
        expiry=90d
        command="smtp -l /var/log/mail/troll"

(Boxes in my local network are sometimes turned off for a week or two,
when their users are on vacation.  I don't want to bounce mail.)

You need something like it, but perhaps with "interval=2h" or
something.

--Arnt