procmail
[Top] [All Lists]

Unidentified subject!

1999-08-12 12:33:57
________=22Autoresponder_not_doing_what_it_is_supposed_to=2E=22_=28Aug_12?=
 =?iso-8859-1?Q?=2C__7=3A04pm=29?=
References: <37AD6716(_dot_)E9B594C8(_at_)halden(_dot_)net> 
        
<14253(_dot_)39008(_dot_)659616(_dot_)13020(_at_)sirppi(_dot_)helsinki(_dot_)fi>
 
        <37B2FE82(_dot_)D6921DF0(_at_)halden(_dot_)net>
X-Reply-to: msaroff(_at_)pobox(_dot_)com
Reply-to: msaroff(_at_)pobox(_dot_)com
X-Mailer: Z-Mail (3.2.0 26oct94 MediaMail)
To: =?iso-8859-1?Q?Andreas_Bergstr=F8m?= <abergstr(_at_)halden(_dot_)net>
Subject: Re: Autoresponder not doing what it is supposed to.
Cc: procmail(_at_)Informatik(_dot_)RWTH-Aachen(_dot_)DE
Mime-Version: 1.0
Content-Type: multipart/mixed;
        boundary="PART-BOUNDARY=.19908121354.ZM20249.vs.lmco.com"


--PART-BOUNDARY=.19908121354.ZM20249.vs.lmco.com
Content-Description: Text
Content-Type: text/plain ; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
X-Zm-Decoding-Hint: mimencode -q -u 

On Aug 12,  7:04pm, Andreas Bergstr=F8m wrote:
Subject: Autoresponder not doing what it is supposed to.

[ text/plain
  Encoded with "quoted-printable" ] :
I have and autoresponder which is supposed to sen back
my public pgp key when someone e-mails pgp(_at_)spambuster(_dot_)dhs(_dot_)org
but it doesn't seem to be working. What is wrong?
Thanks in advance.

The recipie
:0
* ^TO.*pgp*
* !^Subject:.*Re:
* !^FROM_DAEMON
| (formail -r ; cat pgp.asc) | $SENDMAIL -oi -t
Hi,
        A couple of things off the bat:
*       You really need to add a flag to keep it from possibly going into an
infinite loop.  I've mailbombed myself.  It really ticked off my sysop.
*       Put each operation on another line and escape the return, it makes it
more readable.
*       Have you set the variable $SENDMAIL to /usr/bin/sendmail, or whatever
it's location is?
        Try:
:0
* ^TO.*pgp*
* !^Subject:.*Re:
* !^FROM_DAEMON
* !^X-Loop: abergstr(_at_)halden\(_dot_)net
| (formail -r \
-I"X-Loop: abergstr(_at_)halden(_dot_)net";\
echo "";\
cat pgp.asc) | $SENDMAIL -oi -t

        I added a loop and a blank line between the header and body, though the
line might be redundant.

        Here is a recipe that I use to send back a file attachment with MIME,
it might be museful for some quick and dirty file serving, etc.

#This sends my resume as a mime attachment to anyone who wants a
#copy of my resume in PDF (Acrobat) format
:0ch
* ^Subject:.*send pdf resume
* !^X-Loop: msaroff(_at_)pca\(_dot_)net
| (formail -r \
     -I"X-Loop: msaroff(_at_)pca(_dot_)net"\
     -I"MIME-Version: 1.0"\
     -I"Content-Type: multipart/mixed; boundary=3D\"fls3jekls3=3D_sd3\"";=
\
   echo "--fls3jekls3=3D_sd3";\
   echo "Content-type: TEXT/PLAIN; charset=3DUS-ASCII";\
   echo "";\
   cat $HOME/pdf.rsp;\
   echo "--fls3jekls3=3D_sd3";\
   echo "Content-Type: APPLICATION/PDF; name=3D\"saroffm.pdf\"";\
   echo "Content-Transfer-Encoding: base64";\
   echo "Content-Description:";\
   echo "";\
   /usr/bin/mimencode -b $HOME/saroffm.pdf;\
   echo "--fls3jekls3=3D_sd3--") | $SENDMAIL -t


-- =

Matthew Saroff
Do not reply directly to this message.  Reply to
msaroff(_at_)pobox(_dot_)com

--PART-BOUNDARY=.19908121354.ZM20249.vs.lmco.com--

<Prev in Thread] Current Thread [Next in Thread>