Current File : /home/lifechurch_help/.procmailrc
DEFAULT=$HOME/Maildir/



   
# It is essential that you set SHELL to a Bourne-type shell if
# external commands are run from your procmailrc, for example if
# you use rc.spamassassin, rc.quarantine, or other advanced recipes.
# Setting SHELL should not be needed for the simple sorting recipes in 
# this step-by-step section, but to be safe and to future proof your
# procmailrc, set it anyway! Details are in Check Your $SHELL and $PATH.
SHELL=/bin/sh
  
# Directory for storing procmail configuration and log files
# You can name this variable anything you like, for example
# PROCMAILDIR, or don't set it (but then don't refer to it!)
PMDIR=$HOME/.procmail

# LOGFILE should be specified ASAP so everything below it is logged
# Put ## before LOGFILE if you want no logging (not recommended)
LOGFILE=$PMDIR/log
  
# To insert a blank line between each message's log entry, 
# uncomment the next two lines (this is helpful for debugging)
LOG="
"
  
# Set VERBOSE to yes when debugging; VERBOSE default is no
## VERBOSE=yes
  
# Replace $HOME/Msgs with the directory where your personal (non-system-spool) mailboxes reside 
# Mailboxes in maildir format or served by Courier IMAP are often in $HOME/Maildir
# Mailboxes served by UW IMAP are sometimes in $HOME, sometimes in $HOME/mail, & sometimes elsewhere
# MAILDIR=$HOME/Msgs   
MAILDIR=$HOME/Maildir
  
# IMPORTANT:
# * On most systems your $MAILDIR directory is a subdirectory of $HOME
# * Upon reading a line that contains MAILDIR=
#     Procmail does a chdir to $MAILDIR and
#     relative paths are relative to $MAILDIR
# * Do not include a trailing slash in your MAILDIR setting
# * The $MAILDIR directory must exist and be writable by your LOGNAME
# * The MAILDIR variable is an entirely different entity from maildir mailbox format
     
#### End Variables section; Begin Processing section ####  
  
INCLUDERC=$PMDIR/rc.testing
INCLUDERC=$PMDIR/rc.subscriptions

# Here we sent email earmarked for help@lifechurchministries.org for processing by the automail.pl script.
# This will result in the creation of an osticket ticket.

:0 c
 * ^To.*help@lifechurchministries.org
 | $HOME/cgi-bin/automail.pl

:0 c
 * ^To.*lifechurch_help@lifechurchministries.org
 | $HOME/cgi-bin/automail.pl
  
# Messages that fall through all your procmail recipes are delivered
# to your default INBOX. To find out yours, see step 1 above.
 
#### End Processing section #### 
# EOF