Gnus development mailing list
 help / color / mirror / Atom feed
* spam.el and dspam
@ 2005-05-08  6:47 Xavier Maillard
  2005-05-11 15:32 ` Ted Zlatanov
  0 siblings, 1 reply; 6+ messages in thread
From: Xavier Maillard @ 2005-05-08  6:47 UTC (permalink / raw)


Hello,

Are there plan to have dspam added to the supported anti-spam
software for spam.el ?

It would only consist on:

1. detecting dspam X-header
2. reporting spam marked articles to a email adress (eg.
   zedek+spam@gnu-rox.org)

Thanks.
-- 
.o.                     | zedek (at) gnu-rox.org
..o Hacker Wonderland   | 
ooo                     | 




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: spam.el and dspam
  2005-05-08  6:47 spam.el and dspam Xavier Maillard
@ 2005-05-11 15:32 ` Ted Zlatanov
       [not found]   ` <4n8y2lzskw.fsf-mIZUurteI1BWk0Htik3J/w@public.gmane.org>
  2005-05-13 16:09   ` Xavier Maillard
  0 siblings, 2 replies; 6+ messages in thread
From: Ted Zlatanov @ 2005-05-11 15:32 UTC (permalink / raw)


On Sun, 08 May 2005, zedek@gnu-rox.org wrote:

> Are there plan to have dspam added to the supported anti-spam
> software for spam.el ?
> 
> It would only consist on:
> 
> 1. detecting dspam X-header

Easy to to do if you give me a regex.  I don't use dspam, so you'll
have to test it...

> 2. reporting spam marked articles to a email adress (eg.
>    zedek+spam@gnu-rox.org)

That's pretty easy with spam-report.el (if the attachment format is
special it may need a little extra work).

Ted



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: spam.el and dspam
       [not found]   ` <4n8y2lzskw.fsf-mIZUurteI1BWk0Htik3J/w@public.gmane.org>
@ 2005-05-11 20:58     ` Jochen Küpper
  2005-05-12 14:45       ` Ted Zlatanov
  0 siblings, 1 reply; 6+ messages in thread
From: Jochen Küpper @ 2005-05-11 20:58 UTC (permalink / raw)


"Ted Zlatanov" <tzz-mIZUurteI1BWk0Htik3J/w@public.gmane.org> writes:

>> 2. reporting spam marked articles to a email adress (eg.
>>    zedek+spam-icAv0V0KtPVAfugRpC6u6w@public.gmane.org)
>
> That's pretty easy with spam-report.el (if the attachment format is
> special it may need a little extra work).

Is it possible to report spam and ham to different addresses? AFAICT
spam-report-resend always sends to spam-report-resend-to. In our
setup, however, spam and ham have to be send to different accounts.

Greetings,
Jochen
-- 
Einigkeit und Recht und Freiheit                http://www.Jochen-Kuepper.de
    Liberté, Égalité, Fraternité                GnuPG key: CC1B0B4D
        (Part 3 you find in my messages before fall 2003.)



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: spam.el and dspam
  2005-05-11 20:58     ` Jochen Küpper
@ 2005-05-12 14:45       ` Ted Zlatanov
  0 siblings, 0 replies; 6+ messages in thread
From: Ted Zlatanov @ 2005-05-12 14:45 UTC (permalink / raw)
  Cc: ding

On Wed, 11 May 2005, jochen@fhi-berlin.mpg.de wrote:

> "Ted Zlatanov" <tzz@lifelogs.com> writes:
> 
>>> 2. reporting spam marked articles to a email adress (eg.
>>>    zedek+spam@gnu-rox.org)
>>
>> That's pretty easy with spam-report.el (if the attachment format is
>> special it may need a little extra work).
> 
> Is it possible to report spam and ham to different addresses? AFAICT
> spam-report-resend always sends to spam-report-resend-to. In our
> setup, however, spam and ham have to be send to different accounts.

The function already supports it as far as parameters go:

(defun spam-report-resend (articles &optional ham)

so I just need to change the internals and add another group parameter
(spam-report-resend-to-ham).  I'm not sure why that wasn't done
earlier :)

I may remove spam-report-resend-to and use spam-report-resend-to-spam
instead for consistency, I don't know yet.  If I do that I'll provide
the usual backwards compatibility until the next major release.

Ted



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: spam.el and dspam
  2005-05-11 15:32 ` Ted Zlatanov
       [not found]   ` <4n8y2lzskw.fsf-mIZUurteI1BWk0Htik3J/w@public.gmane.org>
@ 2005-05-13 16:09   ` Xavier Maillard
  2005-05-31 17:06     ` Ted Zlatanov
  1 sibling, 1 reply; 6+ messages in thread
From: Xavier Maillard @ 2005-05-13 16:09 UTC (permalink / raw)


On 11 May 2005, Ted Zlatanov wrote:

> On Sun, 08 May 2005, zedek@gnu-rox.org wrote:
> 
> > Are there plan to have dspam added to the supported anti-spam
> > software for spam.el ?
> > 
> > It would only consist on:
> > 
> > 1. detecting dspam X-header
> 
> Easy to to do if you give me a regex. I don't use dspam, so
> you'll have to test it...

In fact, I am pretty sure this doesn't need extra work and can be
done through my own configuration.
 
> > 2. reporting spam marked articles to a email adress (eg.
> > zedek+spam@gnu-rox.org)
> 
> That's pretty easy with spam-report.el (if the attachment
> format is special it may need a little extra work).

No special things to do. I just want the marked articles to be
forwarded to the specified address.

Thanks.
-- 
Xavier Maillard

main(){printf(&unix["\021%six\012\0"],(unix)["have"]+"fun"-0x60);}





^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: spam.el and dspam
  2005-05-13 16:09   ` Xavier Maillard
@ 2005-05-31 17:06     ` Ted Zlatanov
  0 siblings, 0 replies; 6+ messages in thread
From: Ted Zlatanov @ 2005-05-31 17:06 UTC (permalink / raw)


On Fri, 13 May 2005, zedek@gnu-rox.org wrote:

On 11 May 2005, Ted Zlatanov wrote: 
> On Sun, 08 May 2005, zedek@gnu-rox.org wrote: >
>> > 2. reporting spam marked articles to a email adress (eg.
>> > zedek+spam@gnu-rox.org)
>> 
>> That's pretty easy with spam-report.el (if the attachment
>> format is special it may need a little extra work).
> 
> No special things to do. I just want the marked articles to be
> forwarded to the specified address.

[back from vacation]

Use spam-use-resend as an exit processor for spam or ham.  To set the
address, use the group parameters ham-resend-to and spam-resend-to.
Articles will be processed as usual for spam or ham.

Hope that helps
Ted



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-05-31 17:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-08  6:47 spam.el and dspam Xavier Maillard
2005-05-11 15:32 ` Ted Zlatanov
     [not found]   ` <4n8y2lzskw.fsf-mIZUurteI1BWk0Htik3J/w@public.gmane.org>
2005-05-11 20:58     ` Jochen Küpper
2005-05-12 14:45       ` Ted Zlatanov
2005-05-13 16:09   ` Xavier Maillard
2005-05-31 17:06     ` Ted Zlatanov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).