Currently trying qmail-autoresponder (http://em.ca/~bruceg/qmail-autoresponder/) : 

Docs says:
>- Limits rate of automatic responses (defaults to a maximum of one
>  message every hour).

well, I always get _two_ messages, before the
Ignoring_message://usr/local/bin/qmail-autoresponder:_SENDER_has_sent_too_many_messages/did_0+0+2/
appears in logs...

(with:
|/usr/local/bin/qmail-autoresponder -n 1 -t 43200 
|/home/paradises.ch/autorespond/msg/oli2 /home/paradises.ch/autorespond/log/oli2
|/usr/local/bin/qmail-autoresponder -t 43200 /home/paradises.ch/autorespond/msg/oli2 
|/home/paradises.ch/autorespond/log/oli2
)


Just looked in the source:

        /* If the user's count is already over the max,
         * don't record any more. */
        if(++count > max)
          return 0;

shouldn't it be :

        /* If the user's count is already over the max,
         * don't record any more. */
        if(++count >= max)
          return 0;

? (it works this way on my system... :)


Regards,
Olivier


PS: the thing with "-s" is ok, but I like the "original" vacation
feature with $SUBJECT in _BODY_ much better : do you plan to add
it to qmail-autorespond ? Some sample source with this feature
is available under :
http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/vacation/?cvsroot=vacation

PPS: if there is a From: or a Reply-To: field, should the autoresponder
respond to this address ? 

-- 
_________________________________________________________________
 Olivier Mueller - [EMAIL PROTECTED] - PGPkeyID: 0E84D2EA - Switzerland

PGP signature

Reply via email to