Autoresponders

From HE FAQ
Revision as of 10:17, 7 September 2009 by Dean (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

== Autoresponders ==


The following is covers how to use procmail to do your autoresponding.

Create a plain text file in your home directory called:

.procmailrc

Make sure it starts with a period and has no extention such as ".txt". If you create the file offline, it will need to be uploaded in text or ASCII mode. The contents of the file should look like this:

PATH=/usr/bin:/usr/local/bin
MAILDIR=/var/spool/mail/yourdomain.com
LOGFILE=$HOME/procmail.log
VERBOSE=no
COMSAT=no

#
# A Sample autoresponder to send info when someone sends a message to
# info@yourdomain.com
#
# Create a file in your home directory called emailinfo.txt
# put what you want sent out in there.
#


:0
* ^To:.*info@yourdomain.com
* !^FROM_DAEMON
* !^X-Loop: info@yourdomain.com
{
        :0 h c
        | (formail -t -r -A"X-Loop: info@yourdomain.com " ; \
        cat $HOME/emailinfo.txt ) | \
        /usr/bin/sendmail -t

#
# And send a copy to me too!
#

        :0 
        !someoneelse@anotherdomain.com

}