#   Exim filter   <<== do not edit or remove this line!
#   This file:    ~cymbala/.forward
#   Based upon:   http://www.exim.org/exim-html-3.30/doc/html/filter_toc.html
#
#
#   If you cannot reach me by email, please write to:
#      ---------------------------
#      Robert Cymbala
#      PO Box 861117
#      Los Angeles, CA  90086-1117
#
#  My PC operating system is GNU...
#                --------------------------------------
#                http://www.debian.org/doc/FAQ/
#                http://www.debian.org/social_contract
#                http://www.debian.org/intro/why_debian



# -- Example from documentation,
# --      where "seen finish" is a blackhole...
if
  $h_subject: contains "Make money" or
  $h_precedence: is "junk"
then
  seen finish
endif


# --- Automatic reply,
# ---      when someone needs to see my .forward file...
if
  $h_subject: contains "May I see your .forward file"
  # or $h_from: contains <RCYMBALA@YAHOO.COM>
  # or $h_from: contains <CHUYITOJB@AOL.COM>
  # or $h_from: contains <CHUYITOJBN@NETSCAPE.NET>
then
  mail
    to ${reply_address}
    # ...``to ${reply_address}'' is optional... see documentation.
     bcc cymbala@lafn.org
      reply_to cymbala@lafn.org
       subject "Please see my .forward file... Re: $h_Subject"
        file ${home}/.forward
  seen finish
endif


# For more information...
#   Linkname: Exim Filter Specification - Format of filter files
#        URL: http://www.exim.org/exim-html-3.30/doc/html/filter_6.html
#
# If there is a syntax error in this file, try
#    looking for error messages with ``exigrep''.
#
# SEQUENCE:
# 1. On laptop PC, dial-up with ``pon'' executes /etc/ppp/ip-up
# 2. /etc/ppp/ip-up executes /etc/ppp/ip-up.d/exim (send email)
# 3. /etc/ppp/ip-up executes /etc/ppp/ip-up.d/fetchmail (receive email)
# 4. Fetchmail passes received messages to exim
# 5. Exim applies this filter
# 6. Email messages generated by this filter are immediately delivered
# 7. Blind carbon copies must be received by manually executing
#      /etc/ppp/ip-up.d/fetchmail
#    because exim is always running but fetchmail is run only on ip-up
# 8. Blind carbon copies from MAILER-DAEMON@mail.lafn.org appear in
#      /var/mail/cymbala
###
#