> Hi all,
>
> I'm looking for an autoresponder plugin that is compatible with
> maildirs....would the courier vacation work with this? I'm using
> xmail+courier imap+MySQL...
>
> if not, can anybody suggest some other plugin that can work  with this
> kind of setup?

If you have shell access to the mail server with any type of administrator
rights, I recommend using procmail with a recipe similar to this:

#!/usr/bin/procmail
SHELL=/bin/sh    # for shells other than bash, this might need adjustment
:0 Whc: vacation.lock
    # Perform a quick check to see if the mail was addressed to us
    * $^To:.*\<$\LOGNAME\>
    # Don't reply to daemons and mailinglists
    * !^FROM_DAEMON
    # Mail loops are evil
    * !^X-Loop: [EMAIL PROTECTED]
    | formail -rD 8192 /home/$LOGNAME/.procmail.d/vacation.cache

   :0 ehc         # if the name was not in the cache
   | (formail -r -I "Notice" \
   -A "X-Loop: [EMAIL PROTECTED]" ; \
   echo " "; \
   echo " "; cat /home/$LOGNAME/.procmail.d/$LOGNAME.vac \
   ) | $SENDMAIL -oi -t

This way, the responder will be sent (the file with the response text;
shown above as /home/$LOGNAME/.procmail.d/$LOGNAME.vac) whether or not SQM
is running.

HTH

Karl


>
>
> thanks
>
>
>
>
> ---------------------------------
>  Start your day with Yahoo! - make it your home page




-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
--
squirrelmail-users mailing list
Posting Guidelines: 
http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines
List Address: [email protected]
List Archives: 
http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to