procmail forward and auto-reply to the same address not working
procmail forward and auto-reply to the same address not working
am 10.07.2006 21:26:00 von rezzz
I'm having an issue where there is an email address setup
(email@domain.com) and there is a .forward file with another email
address (forwarder@domain.com) that the emails sent to email@domain.com
are forwarded to. This user is going away on vacation and would like
an auto-reply setup. In the procmailrc file, I have what is listed
below set up and it should work, but doesn't. If I send an email to
email@domain.com, it gets forwarded properly, but the auto-reply never
gets sent out. I would greatly appreciate any help on this. THANK YOU
VERY MUCH IN ADVANCE!!!
# AUTOREPLY TEST
:0:
* ^To:email@domain.com
* !^X-Loop: email@domain.com
| (formail -r -A"X-Loop: email@domain.com" ; cat autoreply.txt) |
sendmail -t
p.s. -- I have spent the better part of 2 days trying to fix this and
searched high and low and found nothing. I would greatly appreciate
any help, thanks.
Re: procmail forward and auto-reply to the same address not working
am 11.07.2006 00:41:19 von Garen Erdoisa
rezzz wrote:
> I'm having an issue where there is an email address setup
> (email@domain.com) and there is a .forward file with another email
> address (forwarder@domain.com) that the emails sent to email@domain.com
> are forwarded to. This user is going away on vacation and would like
> an auto-reply setup. In the procmailrc file, I have what is listed
> below set up and it should work, but doesn't. If I send an email to
> email@domain.com, it gets forwarded properly, but the auto-reply never
> gets sent out. I would greatly appreciate any help on this. THANK YOU
> VERY MUCH IN ADVANCE!!!
>
> # AUTOREPLY TEST
> :0:
> * ^To:email@domain.com
> * !^X-Loop: email@domain.com
> | (formail -r -A"X-Loop: email@domain.com" ; cat autoreply.txt) |
> sendmail -t
>
>
> p.s. -- I have spent the better part of 2 days trying to fix this and
> searched high and low and found nothing. I would greatly appreciate
> any help, thanks.
>
I see a couple syntax problems with the above. The first is the test on
the To: header, which normally needs a space between the colon and the
start of the email address.
Second is that Procmail has this weird little syntax rule that says if
you want to have commands on an action line be treated as commands
instead of as folder names you need to have some shell meta characters
somewhere on the line so that the line will be evaluated as a set of
commands instead of as a set of folder names. Also, you don't need to
use an implied lockfile when the destination is just a pipe to another
program instead of to a file. So in this case the 2nd colon at the
beginning of the recipe isn't necessary since there is no delivery to a
file involved.
This can be done by making a variable out of at least one of the
commands, then use the variable in place of that one command.
The following adjustments should get your recipe to work as intended.
---------------cut here-------------
# define a procmail logfile
LOGFILE=${HOME}/procmail.log
# Define a newline variable for use in procmail LOG lines.
NL="
"
# Define a command so that procmail will evaluate the action line as
# a set of commands instead of folder names.
FORMAIL=formail
# Set a variable for use in various places.
REASON="Vacation auto-reply"
:0 Wic
* ^To: email@domain\.com
* !^X-Loop: email@domain\.com
| ( ${FORMAIL} -rt\
-I "From: ${LOGNAME}@${HOST}"\
-I "Subject: ${REASON}"\
-A "X-Loop: email@domain.com" ; cat autoreply.txt ) |sendmail -oi -t
# If the above recipe completed with no errors, record the fact
:0 a
{ ERROR=no }
# Else the above recipe failed.
:0 E
{ ERROR=yes }
# Save the return code from the last command executed.
RET=$?
:0
* ERROR ?? ^yes$
{
LOG="[$$]$_: Got sendmail error return code=${RET} when attempting to
send vacation auto-reply${NL}"
}
# The following is optional. It is an example of a technique I use in my
# own procmail recipes for some things.
#
# Retry the failed delivery using the sendmail delivery to queue.
# Sometimes this happens if there are network issues. Delivery to the
# queue will have sendmail queue the message for later delivery.
:0
* ERROR ?? ^yes$
{
LOG="[$$]$_: Retrying delivery to sendmail queue${NL}"
:0 Wic
* ^To: email@domain\.com
* !^X-Loop: email@domain\.com
| ( ${FORMAIL} -rt\
-I "From: ${LOGNAME}@${HOST}"\
-I "Subject: ${REASON}"\
-A "X-Loop: email@domain.com" ; cat autoreply.txt )\
|sendmail -O DeliveryMode=q -oi -t
:0 a
{ ERROR=no }
:0 E
{ ERROR=yes }
RET=$?
:0
* ERROR ?? ^no$
{
LOG="[$$]$_: Sucessful delivery of ${REASON} to sendmail outbound
queue${NL}"
}
# Else
:0 E
{
LOG="[$$]$_: Got sendmail error return code ${RET} when attepting to
deliver to queue. Giving up.${NL}"
}
}
# Else
:0 E
{
LOG="[$$]$_: ${REASON} sent${NL}"
}
------------cut here-----------
You can also turn on verbose output then examine the procmail log file
when testing and debugging recipes, which will often point out the problem.
ie: VERBOSE=yes
Note that vacation auto-responders or any other type of auto-responder
can end up having a system being reported to blocklist maintainers if
the from address was forged. So you should also be careful to avoid such
auto-responder messages unless you are reasonably certain that the
auto-responder message will be sent to an appropriate valid destination.
Hope this helps
--
Garen
Re: procmail forward and auto-reply to the same address not working
am 11.07.2006 01:47:31 von Garen Erdoisa
Garen Erdoisa wrote:
> rezzz wrote:
>> I'm having an issue where there is an email address setup
>>[snip]
> [snip]
After giving this some further thought I made a couple of adjustments to
this recipe by adding a variable to switch the recipe on/off, moving the
regex tests, and adding some procmail nesting blocks in appropriate
places. Some other enhancements could be to move the actual responder
code into to a separate file, then use a procmail
INCLUDERC=${HOME}/vacation_responder.rc
to call that file as needed in your procmail recipes.
---------------cut here-------------
# define a procmail logfile
LOGFILE=${HOME}/procmail.log
# Set this to yes to enable the auto-responder
VACATIONREPLY=yes
# Define a newline variable for use in procmail LOG lines.
NL="
"
# Define a command so that procmail will evaluate the action lines as
# sets of commands instead of as a list of folder names.
FORMAIL=formail
# Set a variable for use in various places.
REASON="Vacation auto-reply"
ERROR=no
:0
* ^To: email@domain\.com
* !^X-Loop: email@domain\.com
* VACATIONREPLY ?? ^yes$
{
:0 Wic
| ( ${FORMAIL} -rt\
-I "From: ${LOGNAME}@${HOST}"\
-I "Subject: ${REASON}"\
-A "X-Loop: email@domain.com" ; cat autoreply.txt ) |sendmail -oi -t
# If the above recipe completed with no errors, record the fact
:0 a
{ ERROR=no }
# Else the above recipe failed.
:0 E
{ ERROR=yes }
# Save the return code from the last command executed.
RET=$?
:0
* ERROR ?? ^yes$
{
LOG="[$$]$_: Got sendmail error return code=${RET} when attempting to
send vacation auto-reply${NL}"
}
# Else
:0 E
{
LOG="[$$]$_: ${REASON} sent${NL}"
}
}
# The following is optional. It is an example of a technique I use in my
# own procmail recipes for some things.
#
# Retry the failed delivery using the sendmail delivery to queue.
# Sometimes this happens if there are network issues. Delivery to the
# queue will have sendmail queue the message for later delivery.
:0
* ERROR ?? ^yes$
* ^To: email@domain\.com
* !^X-Loop: email@domain\.com
* VACATIONREPLY ?? ^yes$
{
LOG="[$$]$_: Retrying delivery to sendmail queue${NL}"
:0 Wic
| ( ${FORMAIL} -rt\
-I "From: ${LOGNAME}@${HOST}"\
-I "Subject: ${REASON}"\
-A "X-Loop: email@domain.com" ; cat autoreply.txt )\
|sendmail -O DeliveryMode=q -oi -t
:0 a
{ ERROR=no }
:0 E
{ ERROR=yes }
RET=$?
:0
* ERROR ?? ^no$
{
LOG="[$$]$_: Sucessful delivery of ${REASON} to sendmail outbound
queue${NL}"
}
# Else
:0 E
{
LOG="[$$]$_: Got sendmail error return code ${RET} when attepting to
deliver to queue. Giving up.${NL}"
}
}
------------cut here-----------
--
Garen
Challenge-Response Systems (was: procmail forward and auto-reply to the same address not working)
am 11.07.2006 03:09:11 von Alan Connor
On comp.mail.misc, in <1152559560.665070.224720@75g2000cwc.googlegroups.com>, "rezzz" wrote:
http://groups.google.com/advanced_group_search
rezzz
Results 1 - 3 of 3 posts in the last year
1 adsense-help-basics
1 comp.mail.misc
1 hr.comp.mreze.p2p
Why hide your true posting history by creating a sockpuppet for
these few groups alone?
And what is someone as experienced with the Usenet and computers
as you obviously are doing posting through google, which is a
bummer compared to using a real newsreader?
Bet you are real handy with Xnews. And have accounts on NSPs
that hide the posting IP.
I have to assume that you are a serious troll (Usenet vermin)
looking to branch out into that related field, spamming.
Would that be what the "adsense" group above is about? Looks
like it.
Too bad for you. I am pretty good with procmail.
And forget about spamming _me_. I use a challeng-response
system (and an even harsher filter on my Usenet address) and
it can't be beaten by spammers or trolls. See here for
a brief introduction and a few links:
http://home.earthlink.net/~alanconnor/elrav1/cr.html
Here's one of my regular addresses, protected in this case
by Earthlink's challenge-response system:
fudbal3
AT
earthlink
DOT
net
It is much cruder than the one I wrote for myself and use
on most of my mailboxes. That web interface sucks. But
it is still a very good system.
Note: I won't be downloading any articles on this thread.
Alan
--
See my headers.
Re: Challenge-Response Systems
am 11.07.2006 03:38:49 von AK
Alan Connor wrote:
> On comp.mail.misc, in <1152559560.665070.224720@75g2000cwc.googlegroups.com>, "rezzz" wrote:
>
> http://groups.google.com/advanced_group_search
> rezzz
> Results 1 - 3 of 3 posts in the last year
> 1 adsense-help-basics
> 1 comp.mail.misc
> 1 hr.comp.mreze.p2p
>
> Why hide your true posting history by creating a sockpuppet for
> these few groups alone?
>
> And what is someone as experienced with the Usenet and computers
> as you obviously are doing posting through google, which is a
> bummer compared to using a real newsreader?
>
> Bet you are real handy with Xnews. And have accounts on NSPs
> that hide the posting IP.
>
> I have to assume that you are a serious troll (Usenet vermin)
> looking to branch out into that related field, spamming.
>
> Would that be what the "adsense" group above is about? Looks
> like it.
>
> Too bad for you. I am pretty good with procmail.
>
> And forget about spamming _me_. I use a challeng-response
> system (and an even harsher filter on my Usenet address) and
> it can't be beaten by spammers or trolls. See here for
> a brief introduction and a few links:
>
> http://home.earthlink.net/~alanconnor/elrav1/cr.html
>
> Here's one of my regular addresses, protected in this case
> by Earthlink's challenge-response system:
>
> fudbal3
>
> AT
>
> earthlink
>
> DOT
>
> net
>
> It is much cruder than the one I wrote for myself and use
> on most of my mailboxes. That web interface sucks. But
> it is still a very good system.
>
> Note: I won't be downloading any articles on this thread.
>
> Alan
>
Alan,
Save your bandwith and don't download the articles, but why do you see
the need to post your irrelavent gibrish. If you have something to
contribute to the discussion, do so.
"It is better to keep your mouth closed and let people think you are a
fool than to open your mouth and remove all doubt." -- Mark Twain
AK
Re: Challenge-Response Systems
am 11.07.2006 04:09:54 von patrick
"AK" wrote in message
news:LLSdnUQCyKe9nC7ZnZ2dnUVZ_qudnZ2d@comcast.com
> Alan,
> Save your bandwith and don't download the articles, but why do you see
> the need to post your irrelavent gibrish.
And why do *you* repost his assinine gibberish in its entirety? Most of us
would never have have to see it because we have him killfiled. Maybe you
should join the plonkfile, idiot.
Re: Challenge-Response Systems (was: procmail forward and auto-reply to the same address not
am 11.07.2006 04:23:33 von Sam
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages.
The Internet standard for MIME PGP messages, RFC 2015, was published in 1996.
To open this message correctly you will need to install E-mail or Usenet
software that supports modern Internet standards.
--=_mimegpg-commodore.email-scan.com-22392-1152584613-0012
Content-Type: text/plain; format=flowed; charset="US-ASCII"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
Usenet Beavis writes:
> On comp.mail.misc, in <1152559560.665070.224720@75g2000cwc.googlegroups.com>, "rezzz" wrote:
>
> http://groups.google.com/advanced_group_search
> rezzz
> Results 1 - 3 of 3 posts in the last year
Results 1 - 10 of 23,900 for usenet beavis (0.20 seconds)
You're still the champ, Beavis.
> Why make a normal posting, that nobody will pay attention to, when
> you can become famous for posting kookfarts.
Good question, Beavis.
> And what is someone as experienced with the Usenet and computers
> as you obviously are doing posting through google, the purpose of
> which I do not understand because I'm a stupid Usenet Beavis, and a
> well-known kookbag?
He likes to confuse you, Beavis, I suppose.
>
> Bet you are my mental superior. And have accounts on NSPs that hide
> the posting IP, which always causes me kookfarts.
Try Preparation H.
> I have to assume that you are much smarter than me, which is a safe guess,
> looking to make fun of my miserable, worthless life, of doing nothing
> but sitting around all day and posting kookfarts to Usenet.
That doesn't sound so bad, Beavis, look, you're rather thriving at it.
> Would that be what the "adsense" group above is about? Looks
> like it, so I'm going to have a kookfart RIGHT NOW.
You're already in a middle of one, it seems.
> Too bad for me. I am pretty good at posting kookfarts.
You're the champ, Beavis.
>
> And forget about making sense out of my kookfarts. I use a
> challeng-response system, which has been discredited by now, and
> is widely considered to be network abuse, and grounds for getting
> myself blacklisted. I don't care, I'm the Beavis. See here for
> a brief introduction and a few links:
>
> http://www.pearlgates.net/nanae/kooks/ac/
I've seen that one already.
> Here's one place normal people complain about my kookfarts:
>
> abuse
>
> AT
>
> earthlink
>
> DOT
>
> net
Beavis, that's a rather bizarre way of writing an E-mail address.
Stop whatever you're smoking, right now. If you're not smoking, you better
start, then.
> I am such a Beavis that I believe that I know better than everyone
> else on the Internet. Of course, I know that I'm wrong, but I will
> never admit it. That is the Usenet Beavis credo.
I thought your credo is "two kookfarts are better than one"?
> Note: I will be downloading every article in this thread.
And you will love every byte of each and every one.
> Beavis
>
> --
> See my kookfarts.
*SMACK*
--=_mimegpg-commodore.email-scan.com-22392-1152584613-0012
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
iD8DBQBEswulx9p3GYHlUOIRAkAlAJ45dbelR8tSQxkRaW9OTEcH2OVrCACd Gm3s
LSklqGWtvhdAW6wKqi+dDlU=
=GsMu
-----END PGP SIGNATURE-----
--=_mimegpg-commodore.email-scan.com-22392-1152584613-0012--
Re: procmail forward and auto-reply to the same address not working
am 11.07.2006 15:36:51 von rezzz
Garen Erdoisa wrote:
> rezzz wrote:
> > I'm having an issue where there is an email address setup
> > (email@domain.com) and there is a .forward file with another email
> > address (forwarder@domain.com) that the emails sent to email@domain.com
> > are forwarded to. This user is going away on vacation and would like
> > an auto-reply setup. In the procmailrc file, I have what is listed
> > below set up and it should work, but doesn't. If I send an email to
> > email@domain.com, it gets forwarded properly, but the auto-reply never
> > gets sent out. I would greatly appreciate any help on this. THANK YOU
> > VERY MUCH IN ADVANCE!!!
> >
> > # AUTOREPLY TEST
> > :0:
> > * ^To:email@domain.com
> > * !^X-Loop: email@domain.com
> > | (formail -r -A"X-Loop: email@domain.com" ; cat autoreply.txt) |
> > sendmail -t
> >
> >
> > p.s. -- I have spent the better part of 2 days trying to fix this and
> > searched high and low and found nothing. I would greatly appreciate
> > any help, thanks.
> >
>
> I see a couple syntax problems with the above. The first is the test on
> the To: header, which normally needs a space between the colon and the
> start of the email address.
>
> Second is that Procmail has this weird little syntax rule that says if
> you want to have commands on an action line be treated as commands
> instead of as folder names you need to have some shell meta characters
> somewhere on the line so that the line will be evaluated as a set of
> commands instead of as a set of folder names. Also, you don't need to
> use an implied lockfile when the destination is just a pipe to another
> program instead of to a file. So in this case the 2nd colon at the
> beginning of the recipe isn't necessary since there is no delivery to a
> file involved.
>
> This can be done by making a variable out of at least one of the
> commands, then use the variable in place of that one command.
>
> The following adjustments should get your recipe to work as intended.
> ---------------cut here-------------
>
> # define a procmail logfile
> LOGFILE=${HOME}/procmail.log
>
> # Define a newline variable for use in procmail LOG lines.
> NL="
> "
>
> # Define a command so that procmail will evaluate the action line as
> # a set of commands instead of folder names.
> FORMAIL=formail
>
> # Set a variable for use in various places.
> REASON="Vacation auto-reply"
>
>
> :0 Wic
> * ^To: email@domain\.com
> * !^X-Loop: email@domain\.com
> | ( ${FORMAIL} -rt\
> -I "From: ${LOGNAME}@${HOST}"\
> -I "Subject: ${REASON}"\
> -A "X-Loop: email@domain.com" ; cat autoreply.txt ) |sendmail -oi -t
>
> # If the above recipe completed with no errors, record the fact
> :0 a
> { ERROR=no }
>
> # Else the above recipe failed.
> :0 E
> { ERROR=yes }
>
> # Save the return code from the last command executed.
> RET=$?
>
> :0
> * ERROR ?? ^yes$
> {
> LOG="[$$]$_: Got sendmail error return code=${RET} when attempting to
> send vacation auto-reply${NL}"
> }
>
> # The following is optional. It is an example of a technique I use in my
> # own procmail recipes for some things.
> #
> # Retry the failed delivery using the sendmail delivery to queue.
> # Sometimes this happens if there are network issues. Delivery to the
> # queue will have sendmail queue the message for later delivery.
>
> :0
> * ERROR ?? ^yes$
> {
> LOG="[$$]$_: Retrying delivery to sendmail queue${NL}"
> :0 Wic
> * ^To: email@domain\.com
> * !^X-Loop: email@domain\.com
> | ( ${FORMAIL} -rt\
> -I "From: ${LOGNAME}@${HOST}"\
> -I "Subject: ${REASON}"\
> -A "X-Loop: email@domain.com" ; cat autoreply.txt )\
> |sendmail -O DeliveryMode=q -oi -t
>
> :0 a
> { ERROR=no }
> :0 E
> { ERROR=yes }
>
> RET=$?
>
> :0
> * ERROR ?? ^no$
> {
> LOG="[$$]$_: Sucessful delivery of ${REASON} to sendmail outbound
> queue${NL}"
> }
>
> # Else
> :0 E
> {
> LOG="[$$]$_: Got sendmail error return code ${RET} when attepting to
> deliver to queue. Giving up.${NL}"
> }
> }
>
> # Else
> :0 E
> {
> LOG="[$$]$_: ${REASON} sent${NL}"
> }
>
> ------------cut here-----------
>
> You can also turn on verbose output then examine the procmail log file
> when testing and debugging recipes, which will often point out the problem.
>
> ie: VERBOSE=yes
>
> Note that vacation auto-responders or any other type of auto-responder
> can end up having a system being reported to blocklist maintainers if
> the from address was forged. So you should also be careful to avoid such
> auto-responder messages unless you are reasonably certain that the
> auto-responder message will be sent to an appropriate valid destination.
>
> Hope this helps
>
> --
> Garen
Thank you very much Garen, when I implemented your suggestions I get a
return code of 0 in the logfile and still do not recieve the
auto-reply, any ideas??
Thanks again!!
Re: procmail forward and auto-reply to the same address not working
am 11.07.2006 23:40:09 von AK
rezzz wrote:
> Garen Erdoisa wrote:
>
>>rezzz wrote:
>>
>>>I'm having an issue where there is an email address setup
>>>(email@domain.com) and there is a .forward file with another email
>>>address (forwarder@domain.com) that the emails sent to email@domain.com
>>>are forwarded to. This user is going away on vacation and would like
>>>an auto-reply setup. In the procmailrc file, I have what is listed
>>>below set up and it should work, but doesn't. If I send an email to
>>>email@domain.com, it gets forwarded properly, but the auto-reply never
>>>gets sent out. I would greatly appreciate any help on this. THANK YOU
>>>VERY MUCH IN ADVANCE!!!
>>>
>>># AUTOREPLY TEST
>>>:0:
>>>* ^To:email@domain.com
>>>* !^X-Loop: email@domain.com
>>>| (formail -r -A"X-Loop: email@domain.com" ; cat autoreply.txt) |
>>>sendmail -t
>>>
>>>
>>>p.s. -- I have spent the better part of 2 days trying to fix this and
>>>searched high and low and found nothing. I would greatly appreciate
>>>any help, thanks.
>>>
>>
>>I see a couple syntax problems with the above. The first is the test on
>>the To: header, which normally needs a space between the colon and the
>>start of the email address.
>>
>>Second is that Procmail has this weird little syntax rule that says if
>>you want to have commands on an action line be treated as commands
>>instead of as folder names you need to have some shell meta characters
>>somewhere on the line so that the line will be evaluated as a set of
>>commands instead of as a set of folder names. Also, you don't need to
>>use an implied lockfile when the destination is just a pipe to another
>>program instead of to a file. So in this case the 2nd colon at the
>>beginning of the recipe isn't necessary since there is no delivery to a
>>file involved.
>>
>>This can be done by making a variable out of at least one of the
>>commands, then use the variable in place of that one command.
>>
>>The following adjustments should get your recipe to work as intended.
>>---------------cut here-------------
>>
>># define a procmail logfile
>>LOGFILE=${HOME}/procmail.log
>>
>># Define a newline variable for use in procmail LOG lines.
>>NL="
>>"
>>
>># Define a command so that procmail will evaluate the action line as
>># a set of commands instead of folder names.
>>FORMAIL=formail
>>
>># Set a variable for use in various places.
>>REASON="Vacation auto-reply"
>>
>>
>>:0 Wic
>>* ^To: email@domain\.com
>>* !^X-Loop: email@domain\.com
>>| ( ${FORMAIL} -rt\
>> -I "From: ${LOGNAME}@${HOST}"\
>> -I "Subject: ${REASON}"\
>> -A "X-Loop: email@domain.com" ; cat autoreply.txt ) |sendmail -oi -t
>>
>># If the above recipe completed with no errors, record the fact
>>:0 a
>>{ ERROR=no }
>>
>># Else the above recipe failed.
>>:0 E
>>{ ERROR=yes }
>>
>># Save the return code from the last command executed.
>>RET=$?
>>
>>:0
>>* ERROR ?? ^yes$
>>{
>> LOG="[$$]$_: Got sendmail error return code=${RET} when attempting to
>>send vacation auto-reply${NL}"
>>}
>>
>># The following is optional. It is an example of a technique I use in my
>># own procmail recipes for some things.
>>#
>># Retry the failed delivery using the sendmail delivery to queue.
>># Sometimes this happens if there are network issues. Delivery to the
>># queue will have sendmail queue the message for later delivery.
>>
>>:0
>>* ERROR ?? ^yes$
>>{
>> LOG="[$$]$_: Retrying delivery to sendmail queue${NL}"
>> :0 Wic
>> * ^To: email@domain\.com
>> * !^X-Loop: email@domain\.com
>> | ( ${FORMAIL} -rt\
>> -I "From: ${LOGNAME}@${HOST}"\
>> -I "Subject: ${REASON}"\
>> -A "X-Loop: email@domain.com" ; cat autoreply.txt )\
>> |sendmail -O DeliveryMode=q -oi -t
>>
>> :0 a
>> { ERROR=no }
>> :0 E
>> { ERROR=yes }
>>
>> RET=$?
>>
>> :0
>> * ERROR ?? ^no$
>> {
>> LOG="[$$]$_: Sucessful delivery of ${REASON} to sendmail outbound
>>queue${NL}"
>> }
>>
>> # Else
>> :0 E
>> {
>> LOG="[$$]$_: Got sendmail error return code ${RET} when attepting to
>>deliver to queue. Giving up.${NL}"
>> }
>>}
>>
>># Else
>>:0 E
>>{
>> LOG="[$$]$_: ${REASON} sent${NL}"
>>}
>>
>>------------cut here-----------
>>
>>You can also turn on verbose output then examine the procmail log file
>>when testing and debugging recipes, which will often point out the problem.
>>
>>ie: VERBOSE=yes
>>
>>Note that vacation auto-responders or any other type of auto-responder
>>can end up having a system being reported to blocklist maintainers if
>>the from address was forged. So you should also be careful to avoid such
>>auto-responder messages unless you are reasonably certain that the
>>auto-responder message will be sent to an appropriate valid destination.
>>
>>Hope this helps
>>
>>--
>>Garen
>
>
>
> Thank you very much Garen, when I implemented your suggestions I get a
> return code of 0 in the logfile and still do not recieve the
> auto-reply, any ideas??
>
> Thanks again!!
>
Does your setup include verbose logging?
Look for the line where sendmail is executed. It is possible that
sendmail is not in the path.
Man procmailrc there is an exmple there or in one of the other
procmailex man pages dealing with setting up autoreponders that will
maintain a cache of senders to whom they already replied to avoid
generating many auto-replies to the same individual or to a mailing list.
AK
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 03:33:54 von Garen Erdoisa
rezzz wrote:
> Garen Erdoisa wrote:
>> rezzz wrote:
>>[snip]
>> Hope this helps
>>
>> --
>> Garen
>
>
> Thank you very much Garen, when I implemented your suggestions I get a
> return code of 0 in the logfile and still do not recieve the
> auto-reply, any ideas??
>
> Thanks again!!
>
If the path to sendmail isn't in your search path, you may need to
specify the full path to the command. ie: /usr/sbin/sendmail -oi -t . I
think it's already defined in procmail as the $SENDMAIL variable. Try
using $SENDMAIL (the variable) in place of 'sendmail' the actual
command. It should expand to the full absolute path for the command.
One of the things you can do is to test portions of the recipe you are
trying to create or debug in the shell to see how it builds the
auto-response
For example, to generate what the procmail action line is sending you
can, save a raw copy of a sample message in a file "email.txt"
Then do this from the command line.
cat email.txt |formail -r
cat email.txt |formail -rt
cat email.txt |formail -rt -I "From: someemail@example.com"
cat email.txt |formail -rt -A "X-loop: someemail@example.com"
and so on.
Once you get an email that can be piped to sendmail from the command
line then you should be good to go using that same syntax in procmail.
ie:
cat email.txt |( formail -rt -I "From: someemail@example.com" ; cat
autoreply.txt ) | /usr/sbin/sendmail -oi -t
--
Garen
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 03:43:40 von Garen Erdoisa
AK wrote:
> rezzz wrote:
>
>> Garen Erdoisa wrote:
>>
>>> rezzz wrote:
>>>[snip]
>
> Man procmailrc there is an exmple there or in one of the other
> procmailex man pages dealing with setting up autoreponders that will
> maintain a cache of senders to whom they already replied to avoid
> generating many auto-replies to the same individual or to a mailing list.
>
That's a good point. The recipe is in man procmailex
In that example they create a cache file of senders then only execute
the auto-reply if the sender is not in the cache file yet.
:0 Whc: vacation.lock
# Perform a quick check to see if the mail was addressed to us
* $^To:.*\<$\LOGNAME\>
# Dont reply to daemons and mailinglists
* !^FROM_DAEMON
# Mail loops are evil
* !^X-Loop: your@own.mail.address
| formail -rD 8192 vacation.cache
:0 ehc # if the name was not in the cache
| (formail -rI"Precedence: junk" \
-A"X-Loop: your@own.mail.address" ; \
echo "I received your mail,"; \
echo "but I wont be back until Monday."; \
echo "-- "; cat $HOME/.signature \
) | $SENDMAIL -oi -t
--
Garen
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 19:56:45 von rezzz
Garen Erdoisa wrote:
> AK wrote:
> > rezzz wrote:
> >
> >> Garen Erdoisa wrote:
> >>
> >>> rezzz wrote:
> >>>[snip]
>
> >
> > Man procmailrc there is an exmple there or in one of the other
> > procmailex man pages dealing with setting up autoreponders that will
> > maintain a cache of senders to whom they already replied to avoid
> > generating many auto-replies to the same individual or to a mailing list.
> >
>
> That's a good point. The recipe is in man procmailex
>
> In that example they create a cache file of senders then only execute
> the auto-reply if the sender is not in the cache file yet.
>
>
>
> :0 Whc: vacation.lock
> # Perform a quick check to see if the mail was addressed to us
> * $^To:.*\<$\LOGNAME\>
> # Don't reply to daemons and mailinglists
> * !^FROM_DAEMON
> # Mail loops are evil
> * !^X-Loop: your@own.mail.address
> | formail -rD 8192 vacation.cache
>
> :0 ehc # if the name was not in the cache
> | (formail -rI"Precedence: junk" \
> -A"X-Loop: your@own.mail.address" ; \
> echo "I received your mail,"; \
> echo "but I won't be back until Monday."; \
> echo "-- "; cat $HOME/.signature \
> ) | $SENDMAIL -oi -t
>
>
>
> --
> Garen
Well I've come to the conclusion that the filter isn't working. I took
out the formail part and just wanted to dump it to a file, but it's not
even making the file. Any ideas why
:0 Wic
* ^To: user@domian\.com
* !^X-Loop: user@domian\.com
/tmp/dump.txt
wouldn't work?
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 22:04:42 von rezzz
rezzz wrote:
> Garen Erdoisa wrote:
> > AK wrote:
> > > rezzz wrote:
> > >
> > >> Garen Erdoisa wrote:
> > >>
> > >>> rezzz wrote:
> > >>>[snip]
> >
> > >
> > > Man procmailrc there is an exmple there or in one of the other
> > > procmailex man pages dealing with setting up autoreponders that will
> > > maintain a cache of senders to whom they already replied to avoid
> > > generating many auto-replies to the same individual or to a mailing list.
> > >
> >
> > That's a good point. The recipe is in man procmailex
> >
> > In that example they create a cache file of senders then only execute
> > the auto-reply if the sender is not in the cache file yet.
> >
> >
> >
> > :0 Whc: vacation.lock
> > # Perform a quick check to see if the mail was addressed to us
> > * $^To:.*\<$\LOGNAME\>
> > # Don't reply to daemons and mailinglists
> > * !^FROM_DAEMON
> > # Mail loops are evil
> > * !^X-Loop: your@own.mail.address
> > | formail -rD 8192 vacation.cache
> >
> > :0 ehc # if the name was not in the cache
> > | (formail -rI"Precedence: junk" \
> > -A"X-Loop: your@own.mail.address" ; \
> > echo "I received your mail,"; \
> > echo "but I won't be back until Monday."; \
> > echo "-- "; cat $HOME/.signature \
> > ) | $SENDMAIL -oi -t
> >
> >
> >
> > --
> > Garen
>
> Well I've come to the conclusion that the filter isn't working. I took
> out the formail part and just wanted to dump it to a file, but it's not
> even making the file. Any ideas why
>
> :0 Wic
> * ^To: user@domian\.com
> * !^X-Loop: user@domian\.com
> /tmp/dump.txt
>
> wouldn't work?
nevermind -- I realized that along with this auto-reply, I have in
place a .forward and the .forward takes priority over all the filters
and that's why that filter wasn't working
BUT, now I'm trying to send out that auto-reply and the forward is in
place after the filter goes through, but the auto-reply doesn't seem to
be working
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 22:45:53 von rezzz
rezzz wrote:
> rezzz wrote:
> > Garen Erdoisa wrote:
> > > AK wrote:
> > > > rezzz wrote:
> > > >
> > > >> Garen Erdoisa wrote:
> > > >>
> > > >>> rezzz wrote:
> > > >>>[snip]
> > >
> > > >
> > > > Man procmailrc there is an exmple there or in one of the other
> > > > procmailex man pages dealing with setting up autoreponders that will
> > > > maintain a cache of senders to whom they already replied to avoid
> > > > generating many auto-replies to the same individual or to a mailing list.
> > > >
> > >
> > > That's a good point. The recipe is in man procmailex
> > >
> > > In that example they create a cache file of senders then only execute
> > > the auto-reply if the sender is not in the cache file yet.
> > >
> > >
> > >
> > > :0 Whc: vacation.lock
> > > # Perform a quick check to see if the mail was addressed to us
> > > * $^To:.*\<$\LOGNAME\>
> > > # Don't reply to daemons and mailinglists
> > > * !^FROM_DAEMON
> > > # Mail loops are evil
> > > * !^X-Loop: your@own.mail.address
> > > | formail -rD 8192 vacation.cache
> > >
> > > :0 ehc # if the name was not in the cache
> > > | (formail -rI"Precedence: junk" \
> > > -A"X-Loop: your@own.mail.address" ; \
> > > echo "I received your mail,"; \
> > > echo "but I won't be back until Monday."; \
> > > echo "-- "; cat $HOME/.signature \
> > > ) | $SENDMAIL -oi -t
> > >
> > >
> > >
> > > --
> > > Garen
> >
> > Well I've come to the conclusion that the filter isn't working. I took
> > out the formail part and just wanted to dump it to a file, but it's not
> > even making the file. Any ideas why
> >
> > :0 Wic
> > * ^To: user@domian\.com
> > * !^X-Loop: user@domian\.com
> > /tmp/dump.txt
> >
> > wouldn't work?
>
> nevermind -- I realized that along with this auto-reply, I have in
> place a .forward and the .forward takes priority over all the filters
> and that's why that filter wasn't working
>
> BUT, now I'm trying to send out that auto-reply and the forward is in
> place after the filter goes through, but the auto-reply doesn't seem to
> be working
OK - nevermind again -- I got it to work the way I want it to, but not
I'm trying to understand how the .procmailrc and the /etc/procmailrc
files work with each other, because I removed the recipes from the
/etc/procmailrc file and put it in the user's ./procmailrc file, but I
don't get anything back. I checked the log file and it says suspicous
rcfile. Any thoughts on that? And I'd love to learn how the 2 files
interact with each other. THANKS AGAIN EVERYONE!!!
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 23:45:39 von rezzz
rezzz wrote:
> rezzz wrote:
> > rezzz wrote:
> > > Garen Erdoisa wrote:
> > > > AK wrote:
> > > > > rezzz wrote:
> > > > >
> > > > >> Garen Erdoisa wrote:
> > > > >>
> > > > >>> rezzz wrote:
> > > > >>>[snip]
> > > >
> > > > >
> > > > > Man procmailrc there is an exmple there or in one of the other
> > > > > procmailex man pages dealing with setting up autoreponders that will
> > > > > maintain a cache of senders to whom they already replied to avoid
> > > > > generating many auto-replies to the same individual or to a mailing list.
> > > > >
> > > >
> > > > That's a good point. The recipe is in man procmailex
> > > >
> > > > In that example they create a cache file of senders then only execute
> > > > the auto-reply if the sender is not in the cache file yet.
> > > >
> > > >
> > > >
> > > > :0 Whc: vacation.lock
> > > > # Perform a quick check to see if the mail was addressed to us
> > > > * $^To:.*\<$\LOGNAME\>
> > > > # Don't reply to daemons and mailinglists
> > > > * !^FROM_DAEMON
> > > > # Mail loops are evil
> > > > * !^X-Loop: your@own.mail.address
> > > > | formail -rD 8192 vacation.cache
> > > >
> > > > :0 ehc # if the name was not in the cache
> > > > | (formail -rI"Precedence: junk" \
> > > > -A"X-Loop: your@own.mail.address" ; \
> > > > echo "I received your mail,"; \
> > > > echo "but I won't be back until Monday."; \
> > > > echo "-- "; cat $HOME/.signature \
> > > > ) | $SENDMAIL -oi -t
> > > >
> > > >
> > > >
> > > > --
> > > > Garen
> > >
> > > Well I've come to the conclusion that the filter isn't working. I took
> > > out the formail part and just wanted to dump it to a file, but it's not
> > > even making the file. Any ideas why
> > >
> > > :0 Wic
> > > * ^To: user@domian\.com
> > > * !^X-Loop: user@domian\.com
> > > /tmp/dump.txt
> > >
> > > wouldn't work?
> >
> > nevermind -- I realized that along with this auto-reply, I have in
> > place a .forward and the .forward takes priority over all the filters
> > and that's why that filter wasn't working
> >
> > BUT, now I'm trying to send out that auto-reply and the forward is in
> > place after the filter goes through, but the auto-reply doesn't seem to
> > be working
>
> OK - nevermind again -- I got it to work the way I want it to, but not
> I'm trying to understand how the .procmailrc and the /etc/procmailrc
> files work with each other, because I removed the recipes from the
> /etc/procmailrc file and put it in the user's ./procmailrc file, but I
> don't get anything back. I checked the log file and it says suspicous
> rcfile. Any thoughts on that? And I'd love to learn how the 2 files
> interact with each other. THANKS AGAIN EVERYONE!!!
Also any ideas on the X-Loop with respects to aliases. Like, if the
email address for the TO is an alias of a mailbox, what should the
email address in the X-Loop be so that there's not some infinite loop
happening?
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 23:49:16 von AK
rezzz wrote:
> rezzz wrote:
>
>>rezzz wrote:
>>
>>>Garen Erdoisa wrote:
>>>
>>>>AK wrote:
>>>>
>>>>>rezzz wrote:
>>>>>
>>>>>
>>>>>>Garen Erdoisa wrote:
>>>>>>
>>>>>>
>>>>>>>rezzz wrote:
>>>>>>>[snip]
>>>>
>>>>>Man procmailrc there is an exmple there or in one of the other
>>>>>procmailex man pages dealing with setting up autoreponders that will
>>>>>maintain a cache of senders to whom they already replied to avoid
>>>>>generating many auto-replies to the same individual or to a mailing list.
>>>>>
>>>>
>>>>That's a good point. The recipe is in man procmailex
>>>>
>>>>In that example they create a cache file of senders then only execute
>>>>the auto-reply if the sender is not in the cache file yet.
>>>>
>>>>
>>>>
>>>>:0 Whc: vacation.lock
>>>># Perform a quick check to see if the mail was addressed to us
>>>>* $^To:.*\<$\LOGNAME\>
>>>># Don't reply to daemons and mailinglists
>>>>* !^FROM_DAEMON
>>>># Mail loops are evil
>>>>* !^X-Loop: your@own.mail.address
>>>>| formail -rD 8192 vacation.cache
>>>>
>>>> :0 ehc # if the name was not in the cache
>>>> | (formail -rI"Precedence: junk" \
>>>> -A"X-Loop: your@own.mail.address" ; \
>>>> echo "I received your mail,"; \
>>>> echo "but I won't be back until Monday."; \
>>>> echo "-- "; cat $HOME/.signature \
>>>> ) | $SENDMAIL -oi -t
>>>>
>>>>
>>>>
>>>>--
>>>>Garen
>>>
>>>Well I've come to the conclusion that the filter isn't working. I took
>>>out the formail part and just wanted to dump it to a file, but it's not
>>>even making the file. Any ideas why
>>>
>>>:0 Wic
>>>* ^To: user@domian\.com
>>>* !^X-Loop: user@domian\.com
>>>/tmp/dump.txt
>>>
>>>wouldn't work?
>>
>>nevermind -- I realized that along with this auto-reply, I have in
>>place a .forward and the .forward takes priority over all the filters
>>and that's why that filter wasn't working
>>
>>BUT, now I'm trying to send out that auto-reply and the forward is in
>>place after the filter goes through, but the auto-reply doesn't seem to
>>be working
>
>
> OK - nevermind again -- I got it to work the way I want it to, but not
> I'm trying to understand how the .procmailrc and the /etc/procmailrc
> files work with each other, because I removed the recipes from the
> /etc/procmailrc file and put it in the user's ./procmailrc file, but I
> don't get anything back. I checked the log file and it says suspicous
> rcfile. Any thoughts on that? And I'd love to learn how the 2 files
> interact with each other. THANKS AGAIN EVERYONE!!!
>
The /etc/procmailrc is executed by procmail when it is running as root
provided procmail was installed suid. This is the global file and
applies the same way to any and all incoming emails where procmail in
envoked.
if you have /etc/procmailrc, there should not be any delivery attempts
there.
~/.procmailrc is a local per user file.
man procmail I believe includes the information you seek.
if you plan to use GLOBAL /etc/procmailrc make sure to provide per user
customization such that after you drop priv in the /etc/procmailrc you
INCLUDERC=$HOME/.procmailrc to handle the final delivery or user
customized scripts
followed by default system delivery handlers.
:0
$DEFAULT
Where $DEFAULT will be The user's location for the Mailbox/Maildir.
AK
Re: procmail forward and auto-reply to the same address not working
am 12.07.2006 23:56:36 von AK
rezzz wrote:
> rezzz wrote:
>
>>rezzz wrote:
>>
>>>rezzz wrote:
>>>
>>>>Garen Erdoisa wrote:
>>>>
>>>>>AK wrote:
>>>>>
>>>>>>rezzz wrote:
>>>>>>
>>>>>>
>>>>>>>Garen Erdoisa wrote:
>>>>>>>
>>>>>>>
>>>>>>>>rezzz wrote:
>>>>>>>>[snip]
>>>>>
>>>>>>Man procmailrc there is an exmple there or in one of the other
>>>>>>procmailex man pages dealing with setting up autoreponders that will
>>>>>>maintain a cache of senders to whom they already replied to avoid
>>>>>>generating many auto-replies to the same individual or to a mailing list.
>>>>>>
>>>>>
>>>>>That's a good point. The recipe is in man procmailex
>>>>>
>>>>>In that example they create a cache file of senders then only execute
>>>>>the auto-reply if the sender is not in the cache file yet.
>>>>>
>>>>>
>>>>>
>>>>>:0 Whc: vacation.lock
>>>>># Perform a quick check to see if the mail was addressed to us
>>>>>* $^To:.*\<$\LOGNAME\>
>>>>># Don't reply to daemons and mailinglists
>>>>>* !^FROM_DAEMON
>>>>># Mail loops are evil
>>>>>* !^X-Loop: your@own.mail.address
>>>>>| formail -rD 8192 vacation.cache
>>>>>
>>>>> :0 ehc # if the name was not in the cache
>>>>> | (formail -rI"Precedence: junk" \
>>>>> -A"X-Loop: your@own.mail.address" ; \
>>>>> echo "I received your mail,"; \
>>>>> echo "but I won't be back until Monday."; \
>>>>> echo "-- "; cat $HOME/.signature \
>>>>> ) | $SENDMAIL -oi -t
>>>>>
>>>>>
>>>>>
>>>>>--
>>>>>Garen
>>>>
>>>>Well I've come to the conclusion that the filter isn't working. I took
>>>>out the formail part and just wanted to dump it to a file, but it's not
>>>>even making the file. Any ideas why
>>>>
>>>>:0 Wic
>>>>* ^To: user@domian\.com
>>>>* !^X-Loop: user@domian\.com
>>>>/tmp/dump.txt
>>>>
>>>>wouldn't work?
>>>
>>>nevermind -- I realized that along with this auto-reply, I have in
>>>place a .forward and the .forward takes priority over all the filters
>>>and that's why that filter wasn't working
>>>
>>>BUT, now I'm trying to send out that auto-reply and the forward is in
>>>place after the filter goes through, but the auto-reply doesn't seem to
>>>be working
>>
>>OK - nevermind again -- I got it to work the way I want it to, but not
>>I'm trying to understand how the .procmailrc and the /etc/procmailrc
>>files work with each other, because I removed the recipes from the
>>/etc/procmailrc file and put it in the user's ./procmailrc file, but I
>>don't get anything back. I checked the log file and it says suspicous
>>rcfile. Any thoughts on that? And I'd love to learn how the 2 files
>>interact with each other. THANKS AGAIN EVERYONE!!!
>
>
> Also any ideas on the X-Loop with respects to aliases. Like, if the
> email address for the TO is an alias of a mailbox, what should the
> email address in the X-Loop be so that there's not some infinite loop
> happening?
>
It depends on whether you can determine whether the message is being
delivered to an alias to to the real mailbox.
There are different ways you can approach it such that the auto-reply
will reference the alias to which the mailing was sent versus the actual
mailbox which is what happens by default.
Relying on the To or Cc fields to determine the recipient is not as
reliable as if there were an entry in the message headers from your mail
server detailing the information to whom the message is addressed
(Envelope recipient). Some mail server use the Delivered-To: line to
designate to whom the message was addressed/delivered. using that entry
you can extract the information and act accordingly.
In the absense of information, I am unable to suggest alternatives.
AK
Re: procmail forward and auto-reply to the same address not working
am 13.07.2006 04:52:24 von Garen Erdoisa
rezzz wrote:
> rezzz wrote:
>> rezzz wrote:
>>> rezzz wrote:
>>>> Garen Erdoisa wrote:
>>>>> AK wrote:
>>>>>> rezzz wrote:
>>>>>>
>>>>>>> Garen Erdoisa wrote:
>>>>>>>
>>>>>>>> rezzz wrote:
>>>>>>>> [snip]
>> interact with each other. THANKS AGAIN EVERYONE!!!
>
> Also any ideas on the X-Loop with respects to aliases. Like, if the
> email address for the TO is an alias of a mailbox, what should the
> email address in the X-Loop be so that there's not some infinite loop
> happening?
>
I would think that in most cases the email address contained in an
X-Loop: header is irrelevant. The fact that the header is present at
all, suggests that the email being evaluated was generated by an
auto-responder of some sort, so there is no need to send an
auto-response to an auto-response...
I would suggest just test to see if that header is present or not. If it
is, then don't reply to the mail, regardless of what email address the
X-loop: header contains. That information might be interesting for other
reasons in some cases.
ie:
# If an X-loop: header is present, switch off the auto-responder.
:0
* ^X-loop:
{ VACATIONREPLY=no }
....
It looks like AK answered your other questions already.
Glad you got it working.
--
Regards;
Garen
Re: procmail forward and auto-reply to the same address not working
am 13.07.2006 15:57:07 von rezzz
AK wrote:
> rezzz wrote:
>
> > rezzz wrote:
> >
> >>rezzz wrote:
> >>
> >>>rezzz wrote:
> >>>
> >>>>Garen Erdoisa wrote:
> >>>>
> >>>>>AK wrote:
> >>>>>
> >>>>>>rezzz wrote:
> >>>>>>
> >>>>>>
> >>>>>>>Garen Erdoisa wrote:
> >>>>>>>
> >>>>>>>
> >>>>>>>>rezzz wrote:
> >>>>>>>>[snip]
> >>>>>
> >>>>>>Man procmailrc there is an exmple there or in one of the other
> >>>>>>procmailex man pages dealing with setting up autoreponders that will
> >>>>>>maintain a cache of senders to whom they already replied to avoid
> >>>>>>generating many auto-replies to the same individual or to a mailing list.
> >>>>>>
> >>>>>
> >>>>>That's a good point. The recipe is in man procmailex
> >>>>>
> >>>>>In that example they create a cache file of senders then only execute
> >>>>>the auto-reply if the sender is not in the cache file yet.
> >>>>>
> >>>>>
> >>>>>
> >>>>>:0 Whc: vacation.lock
> >>>>># Perform a quick check to see if the mail was addressed to us
> >>>>>* $^To:.*\<$\LOGNAME\>
> >>>>># Don't reply to daemons and mailinglists
> >>>>>* !^FROM_DAEMON
> >>>>># Mail loops are evil
> >>>>>* !^X-Loop: your@own.mail.address
> >>>>>| formail -rD 8192 vacation.cache
> >>>>>
> >>>>> :0 ehc # if the name was not in the cache
> >>>>> | (formail -rI"Precedence: junk" \
> >>>>> -A"X-Loop: your@own.mail.address" ; \
> >>>>> echo "I received your mail,"; \
> >>>>> echo "but I won't be back until Monday."; \
> >>>>> echo "-- "; cat $HOME/.signature \
> >>>>> ) | $SENDMAIL -oi -t
> >>>>>
> >>>>>
> >>>>>
> >>>>>--
> >>>>>Garen
> >>>>
> >>>>Well I've come to the conclusion that the filter isn't working. I took
> >>>>out the formail part and just wanted to dump it to a file, but it's not
> >>>>even making the file. Any ideas why
> >>>>
> >>>>:0 Wic
> >>>>* ^To: user@domian\.com
> >>>>* !^X-Loop: user@domian\.com
> >>>>/tmp/dump.txt
> >>>>
> >>>>wouldn't work?
> >>>
> >>>nevermind -- I realized that along with this auto-reply, I have in
> >>>place a .forward and the .forward takes priority over all the filters
> >>>and that's why that filter wasn't working
> >>>
> >>>BUT, now I'm trying to send out that auto-reply and the forward is in
> >>>place after the filter goes through, but the auto-reply doesn't seem to
> >>>be working
> >>
> >>OK - nevermind again -- I got it to work the way I want it to, but not
> >>I'm trying to understand how the .procmailrc and the /etc/procmailrc
> >>files work with each other, because I removed the recipes from the
> >>/etc/procmailrc file and put it in the user's ./procmailrc file, but I
> >>don't get anything back. I checked the log file and it says suspicous
> >>rcfile. Any thoughts on that? And I'd love to learn how the 2 files
> >>interact with each other. THANKS AGAIN EVERYONE!!!
> >
> >
> > Also any ideas on the X-Loop with respects to aliases. Like, if the
> > email address for the TO is an alias of a mailbox, what should the
> > email address in the X-Loop be so that there's not some infinite loop
> > happening?
> >
>
> It depends on whether you can determine whether the message is being
> delivered to an alias to to the real mailbox.
>
> There are different ways you can approach it such that the auto-reply
> will reference the alias to which the mailing was sent versus the actual
> mailbox which is what happens by default.
>
> Relying on the To or Cc fields to determine the recipient is not as
> reliable as if there were an entry in the message headers from your mail
> server detailing the information to whom the message is addressed
> (Envelope recipient). Some mail server use the Delivered-To: line to
> designate to whom the message was addressed/delivered. using that entry
> you can extract the information and act accordingly.
>
> In the absense of information, I am unable to suggest alternatives.
>
> AK
Well here's the recipe I wrote, but for some reason the auto-responder
comes back repeatedly, and the actual message sent to the person is
sent repeatedly as well
:0
* ^To:.*alias@domain.com
{
:0 c
! real_person@domain.com, real_person2@domain.com,
real_person3@domain.com
:0:
* !^X-Loop: alias@domain.com
| (formail -r -A"From: Someone Else"
-A"X-Loop: alias@domain.com" ; cat autoreply.txt) | sendmail -t
}
any reason why this is happening?
Re: procmail forward and auto-reply to the same address not working
am 13.07.2006 21:07:09 von Garen Erdoisa
rezzz wrote:
> [snip]
>
> Well here's the recipe I wrote, but for some reason the auto-responder
> comes back repeatedly, and the actual message sent to the person is
> sent repeatedly as well
>
> :0
> * ^To:.*alias@domain.com
> {
>
> :0 c
> ! real_person@domain.com, real_person2@domain.com,
> real_person3@domain.com
This part is sending a Cc: to the listed recipients resulting in one
copy of the original message to each.
>
> :0:
> * !^X-Loop: alias@domain.com
> | (formail -r -A "From: Someone Else"
> -A"X-Loop: alias@domain.com" ; cat autoreply.txt) | sendmail -t
In this recipe, formail will generate an auto-reply header based on the
original message, with the target of the reply being the address in the
Return-path: header, instead of the address in the From: header. If the
two addresses are different, then it could generate an unexpected
result. Also, procmail will stop processing the mail at this point
because the auto-reply recipe isn't using the "c" (carbon copy) flag.
The 2nd colon tells procmail to use an implied lockfile, however there
is no delivery to a file here, it's a delivery to a program, so procmail
will be unable to intuit a lockfile name.
Procmail will treat this as a delivering recipe with an action, which
may cause some other issues. Among them the original mail will be lost
to the intended recipient since formail will discard the original
message body and most of the original message headers in favor of the
auto-reply header it's being asked to generate.
If you want the auto-responder to go to the address in the From: header
use formail -rt instead of formail -r
It's also important to use the -oi switch on sendmail if you are
appending a file as the body of the message. That tells sendmail to
expect an EOF instead of a .CR. to terminate the message body.
>
> }
>
> any reason why this is happening?
>
So, all that said, here are some suggested corrections to your recipe.
:0
* ^To:.*alias@domain.com
{
# Send carbon copies of the incoming message to the following people
:0 c
! real_person@domain.com, real_person2@domain.com, real_person3@domain.com
# Generate an autoreply to the envelope sender
# Note use formail -rt to reply to the From: header instead
:0c
* !^X-Loop: alias@domain.com
| ( formail -r -A "From: Someone Else" \
-A "X-Loop: alias@domain.com" ; \
cat autoreply.txt) | $SENDMAIL -oi -t
}
:0
$DEFAULT
Re: procmail forward and auto-reply to the same address not working
am 13.07.2006 21:18:46 von rezzz
Garen Erdoisa wrote:
> rezzz wrote:
> > [snip]
> >
> > Well here's the recipe I wrote, but for some reason the auto-responder
> > comes back repeatedly, and the actual message sent to the person is
> > sent repeatedly as well
> >
> > :0
> > * ^To:.*alias@domain.com
> > {
> >
> > :0 c
> > ! real_person@domain.com, real_person2@domain.com,
> > real_person3@domain.com
>
> This part is sending a Cc: to the listed recipients resulting in one
> copy of the original message to each.
>
> >
> > :0:
> > * !^X-Loop: alias@domain.com
> > | (formail -r -A "From: Someone Else"
> > -A"X-Loop: alias@domain.com" ; cat autoreply.txt) | sendmail -t
>
> In this recipe, formail will generate an auto-reply header based on the
> original message, with the target of the reply being the address in the
> Return-path: header, instead of the address in the From: header. If the
> two addresses are different, then it could generate an unexpected
> result. Also, procmail will stop processing the mail at this point
> because the auto-reply recipe isn't using the "c" (carbon copy) flag.
>
> The 2nd colon tells procmail to use an implied lockfile, however there
> is no delivery to a file here, it's a delivery to a program, so procmail
> will be unable to intuit a lockfile name.
>
> Procmail will treat this as a delivering recipe with an action, which
> may cause some other issues. Among them the original mail will be lost
> to the intended recipient since formail will discard the original
> message body and most of the original message headers in favor of the
> auto-reply header it's being asked to generate.
>
> If you want the auto-responder to go to the address in the From: header
> use formail -rt instead of formail -r
>
> It's also important to use the -oi switch on sendmail if you are
> appending a file as the body of the message. That tells sendmail to
> expect an EOF instead of a .CR. to terminate the message body.
>
> >
> > }
> >
> > any reason why this is happening?
> >
>
> So, all that said, here are some suggested corrections to your recipe.
>
> :0
> * ^To:.*alias@domain.com
> {
>
> # Send carbon copies of the incoming message to the following people
> :0 c
> ! real_person@domain.com, real_person2@domain.com, real_person3@domain.com
>
> # Generate an autoreply to the envelope sender
> # Note use formail -rt to reply to the From: header instead
> :0c
> * !^X-Loop: alias@domain.com
> | ( formail -r -A "From: Someone Else" \
> -A "X-Loop: alias@domain.com" ; \
> cat autoreply.txt) | $SENDMAIL -oi -t
>
> }
>
> :0
> $DEFAULT
Thank you for all your help!
Re: procmail forward and auto-reply to the same address not working
am 13.07.2006 22:22:24 von Alan Connor
On comp.mail.misc, in <1152559560.665070.224720@75g2000cwc.googlegroups.com>, "rezzz" wrote:
http://slrn.sourceforge.net/docs/README.offline>
22:[rezzz ]
68:[AK ]
11:[Patrick ]
150:[Garen Erdois]
120:[Garen Erdois]
159:[rezzz ]
176:[AK ]
43:[Garen Erdois]
57:[rezzz ]
66:[rezzz ]
75:[rezzz ]
105:[AK ]
81:[rezzz ]
107:[AK ]
131:[rezzz ]
76:[Garen Erdois]
81:[rezzz ]
50:[Garen Erdois]
48:[Garen Erdois]
All that for such a ridiculously simple operation?
> Subject: procmail forward and auto-reply to the same address not working
Anyone who has been using procmail for even one day could answer
that question (post a working recipe) without even thinking about
it.
Except trolls, of course, who think they don't have to read the
manual, or experiment with what they find there, because they can
just post endless questions to groups like these under dozens of
psuedo-identities.
And thus never really learn anything.
Note: I will not be downloading any articles on this thread.
Alan
--
See my headers.
Re: procmail forward and auto-reply to the same address not working(!Alan Connor)
am 13.07.2006 23:48:55 von AK
Moron Alan Connor wrote:
Some stupid analysis of prior posts in this thread
[SNIP]
Alan,
Did you post a solution or even a useful insight to assist the original
poster?
Guess the answer is that you can only search, copy and paste.
(how many lines are in this post?)
AK
Re: procmail forward and auto-reply to the same address not working
am 14.07.2006 01:33:49 von Sam
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages.
The Internet standard for MIME PGP messages, RFC 2015, was published in 1996.
To open this message correctly you will need to install E-mail or Usenet
software that supports modern Internet standards.
--=_mimegpg-commodore.email-scan.com-2029-1152833629-0006
Content-Type: text/plain; format=flowed; charset="US-ASCII"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
Usenet Beavis writes:
> On comp.mail.misc, in <1152559560.665070.224720@75g2000cwc.googlegroups.com>, "rezzz" wrote:
>
>
Thank you for your kookfart, Beavis.
> ________________
> .:\:/:. | I did not read |
> +-------------------+ .:\:\:/:/:. | this post! |
> | PLEASE DO NOT | :.:\:\:/:/:.: |________________|
> | FEED THE BEAVIS | :=.' - - '.=: /
> | | '=(\ 9 9 /)=' /
> | Thank you, | ( (_) ) _/
> | Management | /`-vvv-'\
> +-------------------+ / \
> | | @@@ / /|,,,,,|\ \
> | | @@@ /_// /^\ \\_\
> @x@@x@ | | |/ WW( ( ) )WW
> \||||/ | | \| __\,,\ /,,/__
> \||/ | | | jgs (______Y______)
> /\/\/\/\/\/\/\/\//\/\\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ /\/\/\
Very nice, Beavis. You have some talent.
> All those kookfarts, and this is the thanks I get?
Yup.
>> Subject: procmail forward and auto-reply to the same address not working
>
> Anyone who has been using procmail for even one day knows better
> than listen to advice from the Usenet Beavis.
That's right. Whatever answer you give, the truth will always be 180
degrees to the opposite.
> Except other Beavises, of course, who think they don't have to post
> normally or try to communicate with other normal people, because they can
> just continue to post kookfarts and remain the laughing stock of the
> entire Usenet.
Right.
> And thus never really stop being a Beavis.
Sucks to be you, I suppose.
> Note: I will be downloading every article in this thread.
And you will love every byte of each and every one.
> Beavis
> --
> See my kookfarts.
*SLAP*
--=_mimegpg-commodore.email-scan.com-2029-1152833629-0006
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
iD8DBQBEtthdx9p3GYHlUOIRAg8lAJ9wuKoHewAJQmZYXZpbMBI7FkpucwCf RN4W
bkflekdOdx07C86kjMrmKxI=
=ZOsB
-----END PGP SIGNATURE-----
--=_mimegpg-commodore.email-scan.com-2029-1152833629-0006--
Please move along.
am 14.07.2006 13:56:10 von Jonathan de Boyne Pollard
AK> Alan, [...]
Re: Please move along.
am 14.07.2006 22:24:15 von Alan Connor
On comp.mail.misc, in , "Jonathan de Boyne Pollard" wrote:
> Path: text.usenetserver.com!atl-c01.usenetserver.com!news.usenetse rver.com!news2.euro.net!213.132.189.2.MISMATCH!multikabel.ne t!feed20.multikabel.net!newsfeed.freenet.de!newsfeed00.sul.t -online.de!newsfeed01.sul.t-online.de!t-online.de!news-in.nt li.net!newsrout1-win.ntli.net!ntli.net!news.highwinds-media. com!newspeer1-win.ntli.net!newsfe2-gui.ntli.net.POSTED!53ab2 750!not-for-mail
> From: Jonathan de Boyne Pollard
http://groups.google.com/advanced_group_search
Jonathan de Boyne Pollard
Results 1 - 41 of 41 posts in the last year
19 alt.os.development
3 comp.mail.misc
2 comp.os.ms-windows.programmer.nt.kernel-mode
2 comp.os.os2.programmer.misc
3 comp.protocols.dns.bind
1 comp.sys.ibm.as400.misc
5 microsoft.public.development.device.drivers
4 microsoft.public.win32.programmer.kernel
1 muc.lists.qmail
1 openwatcom.users.c_cpp
All computer groups. Not a natural posting history.
And he's obviously a Usenet pro who has posted many
more times than that in the last year.
Under other aliases, of course.
> Newsgroups: comp.mail.misc
> Subject: Please move along.
Why don't you make me.
> Followup-To: alt.usenet.kooks
Only trolls have anything to do with that group.
> Organization: Wacks Wicks Works
Aren't you clever.
> Lines: 3
> Sender: J.deBoynePollard-newsgroups@host81-138-100-115.in-addr.btope nworld.com
> Message-ID:
> References: <1152559560.665070.224720@75g2000cwc.googlegroups.com>
> Mime-Version: 1.0
> Content-Type: text/plain; charset=us-ascii; format=flowed
> Content-Transfer-Encoding: 7bit
> User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060508 Fedora/1.7.13-1.1.1.legacy
> X-Accept-Language: en, en-gb, en-us
> In-Reply-To:
> Date: Fri, 14 Jul 2006 11:56:10 GMT
> NNTP-Posting-Host: 86.20.171.138
> X-Complaints-To: http://www.ntlworld.com/netreport
> X-Trace: newsfe2-gui.ntli.net 1152878170 86.20.171.138 (Fri, 14 Jul 2006 12:56:10 BST)
> NNTP-Posting-Date: Fri, 14 Jul 2006 12:56:10 BST
> Xref: usenetserver.com comp.mail.misc:159895
> X-Received-Date: Fri, 14 Jul 2006 07:59:55 EDT (text.usenetserver.com)
http://slrn.sourceforge.net/docs/README.offline>
Note: I will not be downloading any articles on this thread.
Alan
--
See my headers.
Re: Please move along.
am 14.07.2006 22:53:53 von Sam
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages.
The Internet standard for MIME PGP messages, RFC 2015, was published in 1996.
To open this message correctly you will need to install E-mail or Usenet
software that supports modern Internet standards.
--=_mimegpg-commodore.email-scan.com-15904-1152910432-0008
Content-Type: text/plain; format=flowed; charset="US-ASCII"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
Usenet Beavis writes:
> http://groups.google.com/advanced_group_search
> Jonathan de Boyne Pollard
> Results 1 - 41 of 41 posts in the last year
Results 1 - 10 of 22,700 for usenet beavis (0.79 seconds)
Beavis is still in the lead by a wide margin.
> All computer groups. Not a certified kookbag like me.
Yes, not like you.
> And he's obviously a Usenet pro who is definitely one
> of my mental superiors.
I agree.
>> Newsgroups: comp.mail.misc
>> Subject: Please move along.
>
> Why don't you make me post some kookfarts.
Mission accomplished.
>> Followup-To: alt.usenet.kooks
>
> Only Beavises have anything to do with that group.
That's why the follow-ups should've gone there.
>> Organization: Wacks Wicks Works
>
> Aren't you clever.
More smarter than you'll ever hope to evolve to be.
>
Thank you for your kookfart, Beavis.
> Note: I will be downloading every article in this thread.
And you will love every byte of each and every one.
> Beavis
>
> --
> See my kookfarts.
*SMACK*
--=_mimegpg-commodore.email-scan.com-15904-1152910432-0008
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
iD8DBQBEuARgx9p3GYHlUOIRAuT4AJwL9kpEXtxTRhWlG8NRnCtxFe7KcwCf e2wW
EaJ8OY+daxdMZjrTiosTG4U=
=Mdf8
-----END PGP SIGNATURE-----
--=_mimegpg-commodore.email-scan.com-15904-1152910432-0008--
Re: Challenge-Response Systems
am 23.07.2006 15:20:54 von Frank Slootweg
Patrick wrote:
> "AK" wrote in message
> news:LLSdnUQCyKe9nC7ZnZ2dnUVZ_qudnZ2d@comcast.com
>
> > Alan,
> > Save your bandwith and don't download the articles, but why do you see
> > the need to post your irrelavent gibrish.
>
> And why do *you* repost his assinine gibberish in its entirety? Most of us
> would never have have to see it because we have him killfiled. Maybe you
> should join the plonkfile, idiot.
And maybe you should switch to a newsreader with better 'killfiling'/
scoring capabilities [1].
I didn't see Alan's posting, nor AK's response, but did see your
response. Does that mean that you should join my plonkfile and/or are an
idiot?
[1] The most popular switch is to Xnews. Feel free to search/browse/
read/post_in the news.software.readers newsgroup.
Re: Challenge-Response Systems
am 23.07.2006 18:22:18 von Alan Connor
On comp.mail.misc
This is a response to the the subthread, rather than any
individual.
http://slrn.sourceforge.net/docs/README.offline>
> Subject: Challenge-Response Systems
The best way to keep spammers and trolls out of your mailboxes:
Almost no work is involved, and you don't need to be a geek.
Here's a brief introduction to the subject:
http://home.earthlink.net/~alanconnor/elrav1/cr.html
Note: I won't be downloading any articles on this thread.
(I really hate having to fumigate my newsreader.)
Anyone seriously interested in C-R systems can email me. See the
contact page on my website.
No, dipschitt trolls, you aren't allowed to mail me.
And you aren't allowed to send articles to my newsreader via the
Usenet.
Alan
--
See my headers.
Re: Challenge-Response Systems
am 23.07.2006 18:24:51 von Bob Milutinovic
"Alan Connor" wrote in message
news:slrnec76ap.1ct.i3x9mdw@b29x3m.invalid...
> On comp.mail.misc
Oh pharque, s/h/it's still alive :-/
--
Bob Milutinovic
Cognicom - "Australia's Web Presence Specialists"
http://www.cognicom.tk/
telephone (0417) 45-77-66
facsimile (02) 4727-1898
-------------------------------------------------------
To respond by e-mail: @ (work it out)
Re: Challenge-Response Systems
am 23.07.2006 18:37:16 von John J
"Bob Milutinovic" wrote in message
news:44c3a2d2$1@dnews.tpgi.com.au...
> "Alan Connor" wrote in message
> news:slrnec76ap.1ct.i3x9mdw@b29x3m.invalid...
>> On comp.mail.misc
>
>
>
> Oh pharque, s/h/it's still alive :-/
And still drooling in his shoe
FAQ: Canonical list of questions Beavis refuses to answer (V2.00) (was Re: Challenge-Response
am 23.07.2006 20:16:14 von Sam
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages.
The Internet standard for MIME PGP messages, RFC 2015, was published in 1996.
To open this message correctly you will need to install E-mail or Usenet
software that supports modern Internet standards.
--=_mimegpg-commodore.email-scan.com-3769-1153678574-0002
Content-Type: text/plain; format=flowed; charset="US-ASCII"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
Usenet Beavis writes:
> On comp.mail.misc
>
> This is a stream-of-consciousness kookfart, rather than anything that
> contains any meaningful content whatsoever.
Ok, we've got the disclaimer out of the way.
>
Thank you for your kookfart, Beavis.
>> Subject: Challenge-Response Systems
>
> The best way to have a healthy working bladder, is to periodically
> purge it by reading my kookfarts. Almost no work is involved, and you
> don't need to be a Beavis.
Right.
> Here's a brief introduction to the subject:
>
> http://www.pearlgates.net/nanae/kooks/ac/
Very informative links, Beavis.
> Note: I will definitely, and positively, be downloading every article in
> this thread.
And you will love every byte of each and every one.
> (I really hate having to think about what I post.)
Don't think about it, Beavis. Just go with the flow.
> Anyone seriously interested in an example of someone who was dropped
> on his head as a child, see the Beavis FAQ that's regularly posted
> to this newsgroup.
No problem, Beavis. Your FAQ is below.
> No, my mental superiors, I'm still a stupid Beavis.
No need to state the obvious.
> And I am definitely allowed to post kookfarts to this newsgroup, via the
> Usenet.
Didn't dream of doing anything to bar the free flow of priceless
entertainment from our own resident village idiot/Beavis.
>
> Beavis
>
> --
> See my kookfarts.
============================================================ ===============
FAQ: Canonical list of questions Beavis refuses to answer (V2.00)
This is a canonical list of questions that Beavis never answers. This FAQ is
posted on a semi-regular schedule, as circumstances warrant.
For more information on Beavis, see:
http://www.pearlgates.net/nanae/kooks/ac/
Although Beavis has been posting for a long time, he always remains silent
on the subjects enumerated below. His response, if any, usually consists of
replying to the parent post with a loud proclamation that his Usenet-reading
software runs a magical filter that automatically identifies anyone who's
making fun of him, and hides those offensive posts. For more information
see question #9 below.
============================================================ ================
1) Why are you afraid of posting to alt.usenet.kooks?
2) If your Challenge-Response spam filter works so well, why are you munging
your address, when posting to Usenet?
3) If spammers avoid forging real E-mail addresses on spam, then where do
all these bounces everyone reports getting (for spam with their return
address was forged onto) come from?
4) If your Challenge-Response filter is so great, why don't you use it?
(http://tinyurl.com/rvvsd)
5) Do you still believe that rsh is the best solution for remote access?
(http://tinyurl.com/5qqb6)
6) What is your evidence that everyone who disagrees with you, and thinks
that you're a moron, is a spammer?
7) What is your evidence that everyone who disagrees with you, and thinks
that you're a moron, is a "troll"?
8) How many different individuals do you believe really post to Usenet? What
is the evidence for your paranoid belief that everyone, except you, who
posts here is some unknown arch-nemesis of yours?
9) How many times, or how often, do you believe is necessary to announce
that you do not read someone's posts? What is your reason for making these
regularly-scheduled proclamations? Who do you believe is so interested in
keeping track of your Usenet-reading habits?
10) When was the last time you saw Bigfoot (http://tinyurl.com/23r3f)?
11) If your C-R system employs a spam filter so that it won't challenge
spam, then why does any of the mail that passes the filter, and is thusly
presumed not to be spam, need to be challenged?
12) You claim that the software you use to read Usenet magically identifies
any post that makes fun of you. In http://tinyurl.com/3swes you explain
that "What I get in my newsreader is a mock post with fake headers and no
body, except for the first parts of the Subject and From headers."
Since your headers indicate that you use slrn and, as far as anyone knows,
the stock slrn doesn't work that way, is this interesting patch to slrn
available for download anywhere?
13) You regularly post alleged logs of your procmail recipe autodeleting a
bunch of irrelevant mail that you've received. Why, and who exactly do you
believe is interested in your mail logs?
14) How exactly do you "enforce" an "order" to stay out of your mailbox,
supposedly (http://tinyurl.com/cs8jt)? Since you issue this "order" about
every week, or so, apparently nobody wants to follow it. What are you going
to do about it?
15) What's with your fascination with shit? (also http://tinyurl.com/cs8jt,
and http://tinyurl.com/qv296; or http://makeashorterlink.com/?A2343263D and
http://makeashorterlink.com/?G2242163D ) ?
16) You complain about some arch-nemesis of yours always posting forged
messages in your name. Can you come up with even a single URL, as an example
of what you're talking about?
17) You always complain about some mythical spammers that pretend to be
spamfighters (http://tinyurl.com/br4td). Who exactly are those people, and
can you post a copy of a spam that you supposedly received from them, that
proves that they're really spammers, and not spamfighters?
18) Why exactly does it matter which specific name one uses for posting to
Usenet?
--=_mimegpg-commodore.email-scan.com-3769-1153678574-0002
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
iD8DBQBEw7zux9p3GYHlUOIRAl9+AJ9kPI63fbdO4IJkBafG7M68SAg51ACf TTT+
gKTodeMtFW1Ct6xZ+9Zhm/Q=
=y7UQ
-----END PGP SIGNATURE-----
--=_mimegpg-commodore.email-scan.com-3769-1153678574-0002--
Re: Challenge-Response Systems
am 23.07.2006 22:45:48 von jack
Alan Connor wrote:
> On comp.mail.misc
>
> This is a response to the the subthread, rather than any individual.
So why was it crossposted to alt.spam?
>
>> Subject: Challenge-Response Systems
>
> The best way to keep spammers and trolls out of your mailboxes:
> Almost no work is involved, and you don't need to be a geek.
FSVO "best". In general, challenge-response systems make the spam
problem worse, by sending challenges to people who never sent mail to
the challenger in the first place.
How is a CR system supposed to tell whether the From: is forged?
If I receive bogus challenges I report them as spam, because they are
unsolicited, and because being substantially identical, they count as
bulk. CR is not by any means a mature end-user technology.
>
> No, dipschitt trolls, you aren't allowed to mail me.
>
Why was it, again, that you crossposted this to alt.spam? Could it be
that you were aware that the prevailing sentiment on alt.spam is against
the indiscriminate use of CR? Are you perhaps a "dipschitt" yourself?
> And you aren't allowed to send articles to my newsreader via the
> Usenet.
Nobody "sends" articles to anyone's newsreader - the newsreader goes and
collects them under the directions of its owner.
Jack.
--
The Jackpot website has returned with style:
http://www.jackpot.uk.net/
Re: Challenge-Response Systems
am 23.07.2006 23:00:55 von overstock
I understand how you are feeling and what you are going through. I am
currently going through a nasty divorce because my husbend does not
know how to keep his legs closed. My biggest problem that I have faced
is that I found out he had another child with another woman, and her
son is just 6mnths younger than my oldest. We have 2kids!! I just wish
that I had some way to get back at him like you do!!
I responded to this add because when I was married we only had one car
and it was under my husbends name and sense we are seperated and going
through a divorce he gets it because my name was no where on it. I am
currently looking for a vechile, anything at this moment to drve. I
will offer you more than $1, if you would like to sell if for $1000 I
would pay cash upfront. At this moment that is all I have to spend on a
car, he was the sole provider for us so I just started my new job and
am trying to get some money together. Thank you for reading my post and
considering me.
Good Luck with everything, I hope you nail his ass to the wall!!
If you decide to choose me or have any comments please email me at
SingleMomof2crazyk...@yahoo.com or call
254-624-4074
Thanks,
Jodi
Jack wrote:
> Alan Connor wrote:
> > On comp.mail.misc
> >
> > This is a response to the the subthread, rather than any individual.
>
> So why was it crossposted to alt.spam?
> >
> >> Subject: Challenge-Response Systems
> >
> > The best way to keep spammers and trolls out of your mailboxes:
> > Almost no work is involved, and you don't need to be a geek.
>
> FSVO "best". In general, challenge-response systems make the spam
> problem worse, by sending challenges to people who never sent mail to
> the challenger in the first place.
>
> How is a CR system supposed to tell whether the From: is forged?
>
> If I receive bogus challenges I report them as spam, because they are
> unsolicited, and because being substantially identical, they count as
> bulk. CR is not by any means a mature end-user technology.
> >
> > No, dipschitt trolls, you aren't allowed to mail me.
> >
> Why was it, again, that you crossposted this to alt.spam? Could it be
> that you were aware that the prevailing sentiment on alt.spam is against
> the indiscriminate use of CR? Are you perhaps a "dipschitt" yourself?
>
> > And you aren't allowed to send articles to my newsreader via the
> > Usenet.
>
> Nobody "sends" articles to anyone's newsreader - the newsreader goes and
> collects them under the directions of its owner.
>
> Jack.
> --
> The Jackpot website has returned with style:
> http://www.jackpot.uk.net/
Re: Challenge-Response Systems
am 24.07.2006 04:11:53 von sethb
In article ,
Jack wrote:
>Alan Connor wrote:
>> On comp.mail.misc
>>
>> This is a response to the the subthread, rather than any individual.
>
>So why was it crossposted to alt.spam?
>>
>>> Subject: Challenge-Response Systems
>>
>> The best way to keep spammers and trolls out of your mailboxes:
>> Almost no work is involved, and you don't need to be a geek.
>
>FSVO "best". In general, challenge-response systems make the spam
>problem worse, by sending challenges to people who never sent mail to
>the challenger in the first place.
>
>How is a CR system supposed to tell whether the From: is forged?
Alan Connor doesn't care how much spam he _emits_.
Seth
Re: Challenge-Response Systems
am 24.07.2006 05:22:59 von Alan Connor
On comp.mail.misc, in , "Seth Breidbart" wrote:
http://slrn.sourceforge.net/docs/README.offline>
Challenge-Response Systems
The best way to keep spammers and trolls out of your mailboxes:
Almost no work is involved, and you don't need to be a geek.
Here's a brief introduction to the subject:
http://home.earthlink.net/~alanconnor/elrav1/cr.html
Note: I won't be downloading any articles on this thread.
Anyone seriously interested in C-R systems can email me. See the
contact page on my website.
Alan
--
See my headers.
Retarded spammer Alan Connor Re: Challenge-Response Systems
am 24.07.2006 06:07:50 von SneakyP
Alan Connor spammed usenet:
>
> http://slrn.sourceforge.net/docs/README.offline>
>
> Challenge-Response Systems
>
> The best way to keep spammers and trolls out of your mailboxes:
> Almost no work is involved, and you don't need to be a geek.
Keep Alan Connor kook out of it.
>
> Here's a brief introduction to the subject:
Alan Connor kooks out when he's outed as a C/R spammer.
>
> http://home.earthlink.net/~alanconnor/elrav1/cr.html
>
> Note: I won't be downloading any articles on this thread.
Note: yes, he will read it.
>
> Anyone seriously interested in C-R systems can email me. See the
> contact page on my website.
>
> Alan
>
> --
> See my stupidity
Yes - we do.
Re: Challenge-Response Systems
am 24.07.2006 06:41:09 von Alan Connor
On comp.mail.misc, in <1153714070.212315.115070@s13g2000cwa.googlegroups.com>, "SneakyP" wrote:
Not 'sneaky'. Cowardly and dishonest.
Take a look at what your 'cleverness' has resulted in:
http://slrn.sourceforge.net/docs/README.offline>
Challenge-Response Systems are the only effective spamfilters
for the ordinary user, and they work better than any other
spamfilters, period.
Which is why spammers and trolls hate them.
Almost no work is involved in their use, and you don't need to be
a geek.
Here's a brief but thorough introduction to the subject:
-------------------------------------------------------
http://home.earthlink.net/~alanconnor/elrav1/cr.html
-------------------------------------------------------
Note: I won't be downloading any articles on this thread.
Anyone who is seriously interested in C-R systems can email
me. See the contact page on my website. Sorry about the hassle,
but you can blame the trolls and spammers for that.
Trolls and spammers are not allowed to send mail to my mailboxes,
so don't waste your time, vermin.
Just as they are not allowed to send articles to my newsreader.
Or decide where my posts go. (I reinstated the original
newsgroups header.)
Or what appears on the subject line of my posts. (I removed
his juvenile garbage.)
Alan
--
See my headers.
Re: Challenge-Response Systems
am 24.07.2006 08:40:54 von SneakyP
Alan Connor wrote:
> On comp.mail.misc, in <1153714070.212315.115070@s13g2000cwa.googlegroups.com>, "SneakyP" wrote:
>
> Not 'sneaky'. Cowardly and dishonest.
>
> Take a look at what your 'cleverness' has resulted in:
You reading me, despite your being a plonk-0-maniac nuthead who spams.
How neat. Now go bugger off - nobody in news.admin.net-abuse.email
cares about your crappy spamming C/R system and Usenet spamming -
except maybe your provider.
You read EVERYTHING I post.
Don't fetch, idjut.
Retarded C/R spammer Alan Connor Re: Challenge-Response Systems
am 24.07.2006 08:43:27 von SneakyP
SneakyP wrote:
> Alan Connor wrote:
> > On comp.mail.misc, in <1153714070.212315.115070@s13g2000cwa.googlegroups.com>, "SneakyP" wrote:
> >
> > Not 'sneaky'. Cowardly and dishonest.
> >
> > Take a look at what your 'cleverness' has resulted in:
>
> You reading me, despite your being a plonk-0-maniac nuthead who spams.
> How neat. Now go bugger off - nobody in news.admin.net-abuse.email
> cares about your crappy spamming C/R system and Usenet spamming -
> except maybe your provider.
>
> You read EVERYTHING I post.
>
> Don't fetch, idjut.
Re: Beavis-Slapping Systems
am 25.07.2006 00:20:40 von Sam
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages.
The Internet standard for MIME PGP messages, RFC 2015, was published in 1996.
To open this message correctly you will need to install E-mail or Usenet
software that supports modern Internet standards.
--=_mimegpg-commodore.email-scan.com-21488-1153779639-0001
Content-Type: text/plain; format=flowed; charset="US-ASCII"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
Usenet Beavis writes:
> On comp.mail.misc, in , "Seth Breidbart" wrote:
>
>
Thank you for your kookfart, Beavis.
> Beavis-Slapping Systems
>
> The best way to keep slapping Beavis around is to mention Bigfoot:
> Almost no work is involved, and you don't need to be a geek.
Right. All you need to do is read the Beavis FAQ.
> Here's a brief introduction to the subject:
>
> http://www.pearlgates.net/nanae/kooks/ac/
Thank you for the pointer, Beavis.
> Note: I will definitely, and positively, be downloading every article in
> this thread.
And you will love every byte of each and every one.
> Anyone seriously interested in smacking my bitch up can point their
> fingers at me, and laugh.
Guess which finger I'm pointing now, Beavis?
> Beavis
>
> --
> See my kookfarts.
*SLAP*
--=_mimegpg-commodore.email-scan.com-21488-1153779639-0001
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
iD8DBQBExUe3x9p3GYHlUOIRAn/6AJ9t/WSdpYHHfSeL5PkFWIB6LkbBpwCb BJzX
SDUWosfeECvzvRj28AIlM0k=
=bMRM
-----END PGP SIGNATURE-----
--=_mimegpg-commodore.email-scan.com-21488-1153779639-0001--
Re: Beavis-Slapping Systems
am 25.07.2006 00:21:23 von Sam
This is a MIME GnuPG-signed message. If you see this text, it means that
your E-mail or Usenet software does not support MIME signed messages.
The Internet standard for MIME PGP messages, RFC 2015, was published in 1996.
To open this message correctly you will need to install E-mail or Usenet
software that supports modern Internet standards.
--=_mimegpg-commodore.email-scan.com-21488-1153779683-0002
Content-Type: text/plain; format=flowed; charset="US-ASCII"
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
Usenet Beavis writes:
> On comp.mail.misc, in <1153714070.212315.115070@s13g2000cwa.googlegroups.com>, "SneakyP" wrote:
>
> I'm not normal. I was dropped on my head, as a child.
>
> Take a look at the kookfart that I just had:
>
>
Thank you for your kookfart, Beavis.
> Beavis-Slapping Systems is the only effective form of entertainment
> that doesn't cost anyone a penny. Just make sure that you bladder
> is in good working order.
That's what health insurance is for.
> I hate having my bitch smacked up.
Too late.
> Almost no work is involved in smacking my bitch up, and you don't need
> to be a geek.
Right.
> Here's a brief but thorough introduction to the subject:
>
> -------------------------------------------------------
>
>
> http://www.pearlgates.net/nanae/kooks/ac/
>
> -------------------------------------------------------
Indeed. Anyone who wants to try their hand at smacking your bitch up should
definitely read this URL.
> Note: I will definitely, and positively, be downloading every article in
> this thread.
And you will love every byte of each and every one.
> Anyone who is seriously interested in making fun of the Usenet Beavis
> should taunt me about my tryst with Xena, the Warrior Princess.
I'll vouch for that. It never fails to cause a major kookfart explosion.
> See the Beavis FAQ for more information. Sorry about the hassle,
> but I'm just a dickless motormouth with no brain.
Don't mention it.
> Usenet Beavis is not allowed to make normal posts to Usenet, so I won't
> waste much time pretending to be normal.
It would've been a wasted effort, anyway.
> Just as I am not allowed to receive my needed mental therapy. The needs
> of the many -- for priceless, and free, entertainment -- outweigh the
> needs of the one Beavis.
Just remember, Beavis: every time I order you to jump, you must ALWAYS ask
"how high?". Otherwise you'll be banished to the purgatory.
> Right now, I think I'll post some mindless and meaningless drivel.
>
> If you're wondering why my kookfarts don't make any sense, don't bother.
>
> They are not supposed to make sense.
And how exactly is that different from what you post all the time?
> Beavis
>
> --
> See my kookfarts.
*SMACK*
--=_mimegpg-commodore.email-scan.com-21488-1153779683-0002
Content-Type: application/pgp-signature
Content-Transfer-Encoding: 7bit
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.4 (GNU/Linux)
iD8DBQBExUfjx9p3GYHlUOIRAnYQAJ9m1i6UQRudYwYP5CX6bfyEYrL3mQCe J+dX
ZnCL+1mmE62d7JMP7CRAtMg=
=JIL6
-----END PGP SIGNATURE-----
--=_mimegpg-commodore.email-scan.com-21488-1153779683-0002--
Re: Challenge-Response Systems
am 28.09.2006 00:00:40 von snertking
Alan Connor wrote:
>
> Challenge-Response Systems are the only effective spamfilters
> for the ordinary user, and they work better than any other
> spamfilters, period.
>
> Which is why spammers and trolls hate them.
They spew backscatter even if prefiltered for spam (and always will,
until someone creates a 100% successful spam filter, and then no need
for CR, right?).
Which is why I many non-spamming non-trolling mail admins hate them.
I am sick of my confused users calling me about CR email they got from
someone they never emailed in the first place.
[kook] Re: Challenge-Response Systems
am 28.09.2006 00:33:30 von Quaestor
that annoying little troll wrote:
> Alan Connor wrote:
>
>>
>> Challenge-Response Systems are the only effective spamfilters
>> for the ordinary user, and they work better than any other
>> spamfilters, period.
>>
>> Which is why spammers and trolls hate them.
>
>
> Which is why I many non-spamming non-trolling mail admins hate them.
Alan Connor is a kook. He gets the [kook] tag.
--
Godwin is a net-nazi
Learn about spam: http://www.seige-perilous.org/spam/spam.html