Difference between revisions of "Autoresponders"

From HE FAQ
Jump to: navigation, search
Line 1: Line 1:
== Autoresponders ==
+
{{1 prefix}}
  
 
The following covers how to use [[Procmail]] to do your autoresponding.
 
The following covers how to use [[Procmail]] to do your autoresponding.

Revision as of 14:46, 18 May 2010

This information only pertains to Hurricane Electric's Shared Web Hosting package. There may be different information in our other categories.

The following 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

}