Re: [SAtalk] trouble with RCVD_IN_ORBS

2003-07-21 Thread Andrew Flury
It's not a SpamAssassin problem (although SA could work around it by checking for specific results for all DNSBL's). I think Verisign is doing something screwy... # while true; do name=dwqkljdlkqjwdlij`perl -e 'print int(rand(1))'`a.com; echo $name; host $name; done dwqkljdlkqjwdlij72

[SAtalk] (newbie question) problems with spampd

2003-07-21 Thread awischer
Hi all, I'am a little bit in trouble with installing SpamAssassin and spampd. I've successfully installed all necessarry modules on a SuSE Linux 8.0 machine. But after processing one single eMail spampd seems to be blocked (won't process following eMails without a restart). Is this a issue coming

Re: [SAtalk] trouble with RCVD_IN_ORBS

2003-07-21 Thread Thomas Mechtersheimer
On Sun, Jul 20, 2003 at 11:14:40PM -0700, Andrew Flury wrote: > It's not a SpamAssassin problem (although SA could work around it by > checking for specific results for all DNSBL's). I think Verisign is doing > something screwy... It's b.gtld-servers.net which responds with this A record (65.24

[SAtalk] Logging

2003-07-21 Thread Paul Gamble
Hi We are implementing SpamAssassin v2.55 with spamc/spamd and PostFix. Our mail system hosts multiple domains and we would like to extract per-domain statistics with regards to SpamAssassins idenitification of spam. Unfortunately, it does not appear as though SpamAssassin or spamd include info

Re: [SAtalk] Question about using SA with DCC

2003-07-21 Thread Tony Earnshaw
Simon Byrnand wrote: Unlike Razor2, which Spamassassin picks up by itself, you seem to need to specify a few things in your /etc/mail/spamassassin/local.cf. At the minimum you need to tell it the path to the dccproc executable, thus: dcc_path /usr/local/bin/dccproc FWIW, 2.60 picks it up autom

[SAtalk] Bayes db spam count, and size problems

2003-07-21 Thread Mike Loiterman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I lost my whole bayes database a few minutes ago. Sigh. Any way -- I let it create a new one, but when I check it with check_bayes_db it indicates that there is only 1 learned spam when I just learnt 14 spams a few seconds before. Also - Something

[SAtalk] [Fwd: Undelivered Mail Returned to Sender]

2003-07-21 Thread Tony Earnshaw
Another xenophobic ameddican :-/ Tony -- Tony Earnshaw Sometimes I'd rather read top-posted messages. I wonder why ... http://j-walk.com/blog/docs/conference.htm http://www.billy.demon.nl Mail: [EMAIL PROTECTED] --- Begin Message --- >From MAILER-DAEMON Mon Jul 21 13:29:42 2003 Return-Path: <> X

RE: [SAtalk] Logging

2003-07-21 Thread DEFFONTAINES Vincent
Spamstats extracts per-user statistics from analysis of spamd + postfix logs. It can be easily patched to extract per domain statistics. http://www.gryzor.com/tools/ Vincent > -Original Message- > From: Paul Gamble [mailto:[EMAIL PROTECTED] > Sent: Monday, July 21, 2003 11:49 AM > To: [

Re: [SAtalk] Filter help requested

2003-07-21 Thread Matt Kettler
At 09:20 PM 7/20/03 -0400, Walter Ray wrote: HI... I was wondering if there was a way to add in the filering lists from other sources like SpamCop? Spamcop is easy.. there's already a rule, it's just disabled by default due to it's not-entirely-for-free status. Just add a score line for it to yo

Re: [SAtalk] SpamAssassin Test scores

2003-07-21 Thread Matt Kettler
At 01:52 AM 7/20/03 -0400, Daniel Carrera wrote: I only knew of the "score" test. I'd like to learn what other tests there are and how to use them. Where should I go for that? Are there any whitelist* tests other than whitelist_from? I am very new to SpamAssassin. Tell me if I understand it corr

[SAtalk] Is spamc unbuffered?

2003-07-21 Thread Mark
In Perl, I use an Open2 call to a process which calls spamc, write data to it, and collect the result. Like so:   use FileHandle;use IPC::Open2;   $pid = open2 (*READER, *WRITER, "/usr/local/sa/bin/spamc -f -d 127.0.0.1 -u test");print WRITER $text;close (WRITER);$body .= $_ while ();close (

[SAtalk] probably spamassassin bug?

2003-07-21 Thread Aldo Mari
Hi I have installed qmail+qmailscanner1.16+SA2.55 For test I send a lot of e-mail from another mailserver to my qmail server . I send spam mail and non spam-mail and the system work fine .if the total score (x.x) in the header (X-Spam-Status: Yes, hits=x.x required=5.5) was maior of

[SAtalk] Bayes_journal HELP!

2003-07-21 Thread James Nelson
I have searched the archives and found no relavent info. So here is my questions/problems. 1) When and why is the bayes_journal file created? 2) What info is being written to this file? It appears to be various tests... Here is the problem that appears to have occurred. 1 user out of thous

RE: [SAtalk] Filter help requested

2003-07-21 Thread Tom Meunier
I think he meant SpamCop as but one example. I've been idly musing about an easy way to assign a point or two for some of the items in http://www.blackholes.us myself. > -Original Message- > From: Matt Kettler [mailto:[EMAIL PROTECTED] > Sent: Monday, July 21, 2003 8:11 AM > To: Walter R

[SAtalk] rule for X-Spam-Status -- Fails

2003-07-21 Thread Rob Cartier
Below is my simple /etc/procmailrc file #DROPPRIVS=yes #Uncomment the following lines to allow for logging LOGFILE=/var/log/procmail VERBOSE=ON # The condition line ensures that only messages smaller than 250 kB # (250 * 1024 = 256000 bytes) are processed by SpamAssassin. Most spam # isn't bigger t

Re: [SAtalk] Bayes_journal HELP!

2003-07-21 Thread Theo Van Dinter
On Mon, Jul 21, 2003 at 09:47:14AM -0500, James Nelson wrote: > 1) When and why is the bayes_journal file created? It depends which version of SA you're talking about. But in 2.5x, it's created/updated whenever you scan a message. > 2) What info is being written to this file? It appears to be

[SAtalk] Re: Is spamc unbuffered?

2003-07-21 Thread Fuzzy Fox
Mark <[EMAIL PROTECTED]> wrote: > > $pid = open2 (*READER, *WRITER, "/usr/local/sa/bin/spamc -f -d 127.0.0.1 -u test"); > print WRITER $text; > close (WRITER); > $body .= $_ while (); > close (READER); > > This works flawlessly on not all that large files; but when I tried it > on a file over 1M,

RE: [SAtalk] Bayes_journal HELP!

2003-07-21 Thread James Nelson
Version 2.55. By default all spamassassin users have bayes enabled. The only difference I can find between this user and a few others sampled is this user has his procmail set to deliver message identified as spam to /dev/null. Though out of thousands of users, I know he is not the only one like

RE: [SAtalk] Is spamc unbuffered?

2003-07-21 Thread Dallas L. Engelken
> This works flawlessly on not all that large files; but when I tried it on a > file over 1M, the whole process hangs at "print WRITER $text;". I know the docs > talk about unix buffering and all, but I thought the output of spamc is > supposed to be unbuffered? actually, 1M is not the level wh

RE: [SAtalk] probably spamassassin bug?

2003-07-21 Thread Dallas L. Engelken
>> Subject: [SAtalk] probably spamassassin bug? Looks to me like you are running with the -c switch in spamc_options. that way it passes the email to spamd and spamd returns only a score (x.x/5.5) to qmail-scanner. If x.x > 5.5 then it prepends the subject header, if no Subject: header exists, it

Re: [SAtalk] rule for X-Spam-Status -- Fails

2003-07-21 Thread Theo Van Dinter
On Mon, Jul 21, 2003 at 11:29:41AM -0400, Rob Cartier wrote: > I have created a user and a mailbox for them in /var/spool/mail as spam > and set the proper permissions . But no matter what I do > I cant get a match to happen. > > here is an extract from my /var/log/procmail log > > procmail: Skip

Re: [SAtalk] Bayes_journal HELP!

2003-07-21 Thread Theo Van Dinter
On Mon, Jul 21, 2003 at 10:50:36AM -0500, James Nelson wrote: > By default all spamassassin users have bayes enabled. do other users have write perms to that directory? -- Randomly Generated Tagline: "The random quantum fluctuations of my brain are historical accidents that happen to have decid

Re: [SAtalk] rule for X-Spam-Status -- Fails

2003-07-21 Thread Matt Kettler
At 11:29 AM 7/21/2003 -0400, Rob Cartier wrote: procmail: Skipped "^M" spamassassin marked as spam and the header is X-Spam-Status: Y but the rule has no match ;( any ideas folks ?? It looks like you edited your procmailrc on a windows machine. It's got all kinds of windows-style line ends in i

RE: [SAtalk] Bayes_journal HELP!

2003-07-21 Thread James Nelson
The only users with right permissions to that dir are the one user and root. FYI, even webmaster does not have write permissions. All writes are actually performed by CGI files that allow only editing of certain files and are very secure so they just can't right willie-nillie they can only set ce

Re: [SAtalk] probably spamassassin bug?

2003-07-21 Thread Matt Kettler
At 05:00 PM 7/21/2003 +0200, Aldo Mari wrote: I have installed qmail+qmailscanner1.16+SA2.55 For test I send a lot of e-mail from another mailserver to my qmail server . I send spam mail and non spam-mail and the system work fine .if the total score (x.x) in the header (X-Spam-Status: Yes

Re: [SAtalk] Is spamc unbuffered?

2003-07-21 Thread Mark
- Original Message - From: "Dallas L. Engelken" <[EMAIL PROTECTED]> To: "Mark" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, July 21, 2003 6:02 PM Subject: RE: [SAtalk] Is spamc unbuffered? > > This works flawlessly on not all that large files; but when I tried it > > on a file o

Re: [SAtalk] SA 2.60cvs (todays) "undefined value as an ARRAY reference"

2003-07-21 Thread Jason Haar
Tony Earnshaw wrote: debug: RBL: success for 5 of 6 queries Can't use an undefined value as an ARRAY reference at /usr/lib/perl5/site_perl/5.8.0/Mail/SpamAssassin/Dns.pm line 305, line 412. debug: cleaned up kid 6458, pool=50 Yers - had this with amavisd-new and SA 2.60-CVS. It was a DNS proble

RE: [SAtalk] Is spamc unbuffered?

2003-07-21 Thread Dallas L. Engelken
> -Original Message- > From: Mark [mailto:[EMAIL PROTECTED] > Sent: Monday, July 21, 2003 11:26 AM > To: Dallas L. Engelken; [EMAIL PROTECTED] > Subject: Re: [SAtalk] Is spamc unbuffered? > > [snip] > > Thank you very much for your outstanding reply! The size > parameter was exactly wha

[SAtalk] Re: SA 2.60cvs (todays) "undefined value as an ARRAY reference"

2003-07-21 Thread Malte S. Stretz
On Monday 21 July 2003 18:33 CET Jason Haar wrote: > Tony Earnshaw wrote: > > You'll get it each time the DNS server that you're pointing at comes up > > with a duff result. An example would be, that you're pointing at a > > non-recursive DNS server, or another that the server refuses to service >

[SAtalk] Possible memory leak (SA 2.55-3)?

2003-07-21 Thread Nik Conwell
I have a daemon that essentially does: $spamtest = Mail::SpamAssassin->new; while() { $mail = Mail::SpamAssassin::NoMailAudit->new( nomime => 1, data => [EMAIL PROTECTED]); $status = $spamtest->check($mail); $status->finish(); } and I've found that it continually consumes memor

Re: [SAtalk] Bayes db spam count, and size problems

2003-07-21 Thread Justin Mason
Mike Loiterman writes: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I lost my whole bayes database a few minutes ago. Sigh. Any way -- > I let it create a new one, but when I check it with check_bayes_db it > indicates that there is only 1 learned spam when I just learnt 14 > spams

Re: [SAtalk] [Fwd: Undelivered Mail Returned to Sender]

2003-07-21 Thread Alan Leghart
Fix your pronunciation. That's "amurrican". Sometimes pronounced goddamn'murrican. :) --On Monday, July 21, 2003 1:47 PM +0200 Tony Earnshaw <[EMAIL PROTECTED]> wrote: Another xenophobic ameddican :-/ Tony -- Tony Earnshaw Sometimes I'd rather read top-posted messages. I wonder why ... http://

[SAtalk] kind of sad

2003-07-21 Thread Chris Santerre
I got a spam today that came from "YOUNGIL ELEMENTARY SCHOOL" in Korea. They are starting them early I guess :)   It was a "how to lose 20 lb" spam. Chris SanterreSystem Admin"A little nonsense now and then, is relished by the wisest men." - Willy Wonka  

Re: [SAtalk] Possible memory leak (SA 2.55-3)?

2003-07-21 Thread Justin Mason
Nik Conwell writes: > >I have a daemon that essentially does: > >$spamtest = Mail::SpamAssassin->new; > >while() { > $mail = Mail::SpamAssassin::NoMailAudit->new( nomime => 1, data => [EMAIL > PROTECTED]); > $status = $spamtest->check($mail); > $status->finish(); >} > > >and I've foun

[SAtalk] Information on writing rules

2003-07-21 Thread Eric Hart
Hi, I've been writing custom SA rules for awhile, and have a pretty good grasp now on regular expresssions and BODY and HEADER rules. Search as I might, I have not found sources of information on advanced rulewriting. Can anyone point me to info about: URI rules META rules Use of PERL IF expr

[SAtalk] whitelists

2003-07-21 Thread Alan Fullmer
Can anyone tell me why spam assassin is whitelisting everything at my domain, even when it's not in the user_pref's file? thanks Alan Fullmer --- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on

Re: [SAtalk] Bayes_journal HELP!

2003-07-21 Thread Justin Mason
James Nelson writes: > The only users with right permissions to that dir are the one user and > root. > > FYI, even webmaster does not have write permissions. All writes are > actually performed by CGI files that allow only editing of certain files > and are very secure so they just can't right

[SAtalk] Earthlink spam rejection question

2003-07-21 Thread Harold Hallikainen
Recognizing this is not an SA question... but the Spam Experts are here, so I hope someone can offer some insight. My aunt uses Earthlink. Earlier this month, she found 4,000 old emails in her inbox. Since then, she can log in, see she has new mail, but then it disappears. Further, some of her fri

RE: [SAtalk] Bayes_journal HELP!

2003-07-21 Thread James Nelson
This is what is being written to the queue files... partial write to Bayes journal /home//.spamassassin/bayes_journal ( of 1639), recovering. Over and over thousands of times for the one user effected. Its plausible other user may not have enough scanned mail to trigger the filtering, this acco

[SAtalk] Razor working?

2003-07-21 Thread John Birkhead
Hi, I have SA 2.55 installed running from Amavisd-New. When I issue "spamassassin --lint -D" the debug listing looks like RAZOR is being called and executed without problems. Looking at the logs from Amavisd-New I can't see any scoring of the RAZOR tests - i.e. none of the RAZOR tests appe

Re: [SAtalk] kind of sad

2003-07-21 Thread mikea
On Mon, Jul 21, 2003 at 03:13:59PM -0400, Chris Santerre wrote: > I got a spam today that came from "YOUNGIL ELEMENTARY SCHOOL" in Korea. They > are starting them early I guess :) > > It was a "how to lose 20 lb" spam. The Korean government is said to have done "cookie-cutter" installs at all s

Re: [SAtalk] Is spamc unbuffered?

2003-07-21 Thread Stephane Lentz
On Mon, Jul 21, 2003 at 11:41:38AM -0500, Dallas L. Engelken wrote: > ... > if ($length < $MAXBYTES) { # call spamc } > else { # skip spamc } > > i pass -s $length and not -s $MAXBYTES to my spamc call so my STDIN > buffer size changes depending on msg size, this saves a little bit of > additional

RE: [SAtalk] Bayes db spam count, and size problems

2003-07-21 Thread Mike Loiterman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: > Mike Loiterman writes: >> >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> I lost my whole bayes database a few minutes ago. Sigh. Any way >> -- I let it create a new one, but when I check it with >> check_baye

Re: [SAtalk] Information on writing rules

2003-07-21 Thread William Stearns
Good afternoon, Eric, Hi Eric! On Mon, 21 Jul 2003, Eric Hart wrote: > I've been writing custom SA rules for awhile, and have a pretty good > grasp now on regular expresssions and BODY and HEADER rules. Search as > I might, I have not found sources of information on advanced > rulewritin

RE: [SAtalk] Bayes db spam count, and size problems

2003-07-21 Thread Mike Loiterman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: > Mike Loiterman writes: >> >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> I lost my whole bayes database a few minutes ago. Sigh. Any way >> -- I let it create a new one, but when I check it with >> check_baye

[SAtalk] Problem installing Spamassassin via perl -MCPAN...

2003-07-21 Thread Jason Williams
Hello everyone. Im using RH 9.0 as a postfix + spamassassin mail server. I was trying to install spamassassin via perl -MCPAN when this error was kicked out to me: Warning: I could not locate your pod2man program. Please make sure, your pod2man program is in your PATH before you execute

RE: [SAtalk] Bayes db spam count, and size problems

2003-07-21 Thread Mike Loiterman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: > Mike Loiterman writes: >> >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> I lost my whole bayes database a few minutes ago. Sigh. Any way >> -- I let it create a new one, but when I check it with >> check_baye

[SAtalk] exim/courier/amavis/spamassassin on RedHat

2003-07-21 Thread Chris Barnes
Is anyone running a combination of exim/courier-imap/amavis/spamassassin on a RedHat (9) box? Exim especially doesn't seem to be available on RH. -- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Chris Barnes AOL IM: CNBarnes [EMAIL

[SAtalk] Exploitable opt-ins

2003-07-21 Thread Kenneth Porter
I followed the link in this message and found an opt-in form, collected data, and password file, all in the clear. How nice (NOT). OTOH, it all looks vaguely suspicious, as most of the addresses in the collection file are obvious fakes. But maybe that's normal for this kind of thing. BTW, this

[SAtalk] Bayes, DCC, Razor2...not working?

2003-07-21 Thread Matthew Thomas
Greetings, I installed SpamAssassin 2.54 and MIMEDefang with my Sendmail setup a few weeks ago. Basic, vanilla installation. There was much rejoicing. Life was good. Then I installed Bayes filtering. I seeded my database. I tested my installation using "spamassassin -tD < sample-spam.txt".

RE: [SAtalk] Problem installing Spamassassin via perl -MCPAN...

2003-07-21 Thread Alexander Dalloz
> Hello everyone. > Im using RH 9.0 as a postfix + spamassassin mail server. > > I was trying to install spamassassin via perl -MCPAN when > this error was > kicked out to me: > > Warning: I could not locate your pod2man program. Please make sure, > your pod2man program is in your PAT

Re: [SAtalk] Imap and windows/ spam assassin rules

2003-07-21 Thread Klaus Mueller
Hi, someone asked for the Java program I made but I lost his mail address (store at home but I can not reach currently). So I use this way to send the files I made. I create a ZIP and placed on webserver: www.my-mueller.com/projects/hamstertool/hamstertool-0.001.zip I only clean up the code and

Re: [SAtalk] Bayes, DCC, Razor2...not working?

2003-07-21 Thread Theo Van Dinter
On Mon, Jul 21, 2003 at 02:24:09PM -0700, Matthew Thomas wrote: > Does anyone have an idea what the problem might be? Could it still be some > kind of permissions problem? Should I install spamassassin 2.55 and see if > everything automagically starts working? http://spamassassin.taint.org/faq/i

[SAtalk] Generalized spamc/spamd

2003-07-21 Thread John Rudd
Did I see, at some point, a message indicating that someone was going to write a generalized spamd that could be used for checking many different things besides just spam assassin tests? or was that wishful thinking on my part? --- This SF.ne

[SAtalk] Submitting to Bayes after the fact...

2003-07-21 Thread Gawain
I use Eudora on Mac OS X as my mail client, and I've been saving messages that Spamassassin misses. Since they've been downloaded from the server already, how can I re-submit them to the Bayesian database? Is this possible? (preserving message attributes, etc...) Secondly, will only submitting

Re: [SAtalk] [Q] Training SA's Bayesian filter.

2003-07-21 Thread Nix
On Sun, 20 Jul 2003, Daniel Carrera muttered drunkenly: > Hello, > > I'm trying to figure out how to use 'sa-learn' to train SA's spam filter. > I have already looked at the man page. > > I am not entirely sure what kind of input is acceptable to sa-learn. > > On teaching ham: > ==

Re: [SAtalk] Generalized spamc/spamd

2003-07-21 Thread Theo Van Dinter
On Mon, Jul 21, 2003 at 02:41:59PM -0700, John Rudd wrote: > Did I see, at some point, a message indicating that someone was going to > write a generalized spamd that could be used for checking many different > things besides just spam assassin tests? What else would it check? -- Randomly Genera

re[2]: [SAtalk] Information on writing rules

2003-07-21 Thread Eric Hart
> Good afternoon, Eric, Hi Eric! On Mon, 21 Jul 2003, Eric Hart wrote: > I've been writing custom SA rules for awhile, and have a pretty good > grasp now on regular expresssions and BODY and HEADER rules. Search as > I might, I have not found sources of information on advanced > rulewriting.

Re: [SAtalk] [Q] RFC 822 vs mbox formats.

2003-07-21 Thread Nix
On Sun, 20 Jul 2003, Daniel Carrera stated: >>From the SpamAssassin man page: > > --fileLearn a file in RFC 822 format > --mboxLearn a file in mbox format > > What is the RFC 822 format? What is the mbox format? --file learns a

Re: [SAtalk] Submitting to Bayes after the fact...

2003-07-21 Thread Matt Kettler
At 04:51 PM 7/21/2003 -0500, you wrote: I use Eudora on Mac OS X as my mail client, and I've been saving messages that Spamassassin misses. Since they've been downloaded from the server already, how can I re-submit them to the Bayesian database? Is this possible? (preserving message attributes,

[SAtalk] Updated doc

2003-07-21 Thread Greg Webster
Hi all, I've updated my SpamAssassin installation docs. The original, Postfix-specific, site-wide, HOWTO is here: http://www.geekly.com/entries/archives/0155.htm The new, simplified, non-Postfix specific, using Procmail and .forward, and allowing individual users to 'bow out' is here: http:/

[SAtalk] paths

2003-07-21 Thread Miguel Vazquez
please i need what is the all paths of binaries and files config of spamassassin on system root thank you --- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING

[SAtalk] Bayes problems

2003-07-21 Thread Daniel J. Andrea II
Well, I've had Spamassassin running for a long time now and really liked how it's working, except for one thing. I've NEVER had the Bayes part working in my install. :-/ I've got it installed on a Redhat 9 box. It appears that the bayes database is being updated by SA when it gets a spam/ham th

re[2]: [SAtalk] Information on writing rules

2003-07-21 Thread Matt Kettler
At 06:30 PM 7/21/2003 -0400, Eric Hart wrote: > URI rules > META rules > Use of PERL IF expressions in SA rules. > CF processing algorithm Matt Kettler's howto at http://mywebpages.comcast.net/mkettler/sa/SA-rules-howto.txt doesn't cover these, unfortunately. Correct, I do however reference t

Re: [SAtalk] [Fwd: Undelivered Mail Returned to Sender]

2003-07-21 Thread Shaun T. Erickson
Alan Leghart wrote: Fix your pronunciation. That's "amurrican". Sometimes pronounced goddamn'murrican. :) Only by goddamn'furriners. :) -ste --- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on

Re: [SAtalk] kind of sad

2003-07-21 Thread Matt Kettler
At 03:13 PM 7/21/2003 -0400, Chris Santerre wrote: I got a spam today that came from "YOUNGIL ELEMENTARY SCHOOL" in Korea. They are starting them early I guess :) It was a "how to lose 20 lb" spam. Probably an open relay over there.. Open relays and insecure networks are a massive problem in mos

[SAtalk] How activated German Language?

2003-07-21 Thread Jim Knuth
Hi and sorry for my english. Its very stupid. ;-) How can I activated the German language in SA. I mean, which is the option in the local.cf or user_prefs? Just in time came the "Spam alert" in english. I wish me these in German. 30_text_de.cf is right in /usr/share/spamassassin. Thank you for su

RE: [SAtalk] Razor working?

2003-07-21 Thread mwestern
i use MailScanner so may be different, but i believe if you installed under root you'll find a /root/.razor/ directory which is where my log file lives.. doesn't say much but it tells me that it's working (as it checks each message). what i do what to know is how one logs all spamassassin details

RE: [SAtalk] whitelists

2003-07-21 Thread mwestern
i could hazard a guess and say that 127.0.0.1 is in your whitelist? this baffled me for a while and no matter how much testing i did from the command line with a peice of spam i coulnd't get it to register. i tried from external and it worked fine. only found this out a few days later and went D

[SAtalk] Generalized spamc/spamd

2003-07-21 Thread John Rudd
Did I see, at some point, a message indicating that someone was going to write a generalized spamd that could be used for checking many different things besides just spam assassin tests? or was that wishful thinking on my part? --- This SF.n

Re: [SAtalk] kind of sad

2003-07-21 Thread Justin Mason
Matt Kettler writes: >At 03:13 PM 7/21/2003 -0400, Chris Santerre wrote: >>I got a spam today that came from "YOUNGIL ELEMENTARY SCHOOL" in Korea. >>They are starting them early I guess :) >> >>It was a "how to lose 20 lb" spam. > >Probably an open relay over there.. Open relays and insecure netw

re[2]: [SAtalk] Information on writing rules

2003-07-21 Thread William Stearns
On Mon, 21 Jul 2003, Matt Kettler wrote: > At 06:30 PM 7/21/2003 -0400, Eric Hart wrote: > > > URI rules > > > META rules > > > Use of PERL IF expressions in SA rules. > > > CF processing algorithm > > > > Matt Kettler's howto at > >http://mywebpages.comcast.net/mkettler/sa/SA-rules-howto.txt

Re: [SAtalk] How activated German Language?

2003-07-21 Thread Justin Mason
Jim Knuth writes: > Hi and sorry for my english. > Its very stupid. ;-) > > How can I activated the German language in SA. > I mean, which is the option in the local.cf or user_prefs? > Just in time came the "Spam alert" in english. > I wish me these in German. > 30_text_de.cf is right in /usr/sh

Re: [SAtalk] Bayes problems

2003-07-21 Thread Alan Fullmer
i thought by default bayes was enabled. remember that bayes doesn't start to work right away, it has to establish a database first, then it will start working when it gets enough info to start. at least that was what i read, and have experienced. Alan Fullmer Owner / Administrator [EMAIL PROTEC

Re: [SAtalk] Bayes problems

2003-07-21 Thread Matt Kettler
At 06:38 PM 7/21/2003 -0600, Daniel J. Andrea II wrote: Does anyone have any idea what I could be doing wrong here? Or maybe even a decent "howto" document that walks one through enabling the bayes database option? Any help would be appreciated. You can get a quick idea by running spamassassin wi

Re: [SAtalk] SA 2.60cvs (todays) "undefined value as an ARRAY reference"

2003-07-21 Thread Tony Earnshaw
't come back. Jason Haar wrote: That's weird. As I said, it works fine a lot of the time - just the odd one (well, if one per 20 emails is 'odd') causes this error. *However* - it causes SA to crash - i.e. the message isn't tagged correctly. Doesn't this imply some error checking is needed in t

[SAtalk] I quote: "Learned from 0 messages."

2003-07-21 Thread Daniel Carrera
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I don't know if I am supposed to be getting this message, but it looks doggy to me that SA keeps telling me that it has learned from 0 messages. Does that mean that it did not learn anything from the messages that I've fed into it? dcarrera ~/mail