[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Mike Harrington wrote:

> One more question... want it all in one massive file, broken apart by month,
> or broken apart by day? :-D

I collected my data in a single file, it is fine.


- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Mike Harrington
One more question... want it all in one massive file, broken apart by month,
or broken apart by day? :-D

- Original Message - 
From: "Davide Libenzi" 
To: 
Sent: Friday, January 07, 2005 3:35 PM
Subject: [xmail] Re: Stats about message sizes ...


> On Fri, 7 Jan 2005, Mike Harrington wrote:
>
> > Okay I'm going crazy... why isn't the filesize listed in my SMPT logs?
>
> Here you go:
>
> --
> #!/usr/bin/perl -w
>
> use strict;
>
>
> while (<>) {
> my @ar;
> my $size;
>
> chomp;
> @ar = split("\t", $_);
> ($size = $ar[11]) =~ s/^\"([^\"]+)\"$/$1/;
> if (int($size) > 0) {
> print $size . "\n";
> }
> }
>
> --
>
> $ cat smtp-logfile | gensizes.pl >> sizes.txt
>
>
>
> - Davide
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Davide Libenzi wrote:

> On Fri, 7 Jan 2005, Mike Harrington wrote:
> 
> > Okay I'm going crazy... why isn't the filesize listed in my SMPT logs?
> 
> Here you go:
> 
> --
> #!/usr/bin/perl -w
> 
> use strict;
> 
> 
> while (<>) {
>   my @ar;
>   my $size;
> 
>   chomp;
>   @ar = split("\t", $_);
>   ($size = $ar[11]) =~ s/^\"([^\"]+)\"$/$1/;
>   if (int($size) > 0) {
>   print $size . "\n";
>   }
> }
> 
> --
> 
> $ cat smtp-logfile | gensizes.pl >> sizes.txt

Or better:

$ cd logs
$ for f in smtp-* ; do cat $f | getsizes.pl >> sizes.txt; done



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Mike Harrington wrote:

> Okay I'm going crazy... why isn't the filesize listed in my SMPT logs?

Here you go:

--
#!/usr/bin/perl -w

use strict;


while (<>) {
my @ar;
my $size;

chomp;
@ar = split("\t", $_);
($size = $ar[11]) =~ s/^\"([^\"]+)\"$/$1/;
if (int($size) > 0) {
print $size . "\n";
}
}

--

$ cat smtp-logfile | gensizes.pl >> sizes.txt



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Mike Harrington
Okay I'm going crazy... why isn't the filesize listed in my SMPT logs?

- Original Message - 
From: "Davide Libenzi" 
To: 
Sent: Friday, January 07, 2005 3:08 PM
Subject: [xmail] Re: Stats about message sizes ...


> On Fri, 7 Jan 2005, Mike Harrington wrote:
>
> > How many months worth do you want :P
>
> I think three should be fine, thx! I am collecting all mine also, but mine
> are biased. The top of my traffic comes from mailing lists, where message
> sizes are typically small (and plain-text).
>
>
>
> - Davide
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] R: Re: GLST

2005-01-07 Thread Dario
Anyway spamassassin is very cpu/ram/disk intensive on
any system and the new 3.xx has increased that.
You should run spamd on a separate server even on linux.

Dario


-Messaggio originale-
Da: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] conto di Postmaster
Inviato: sabato 8 gennaio 2005 0.05
A: xmail@xmailserver.org
Oggetto: [xmail] Re: GLST


Thanks! I'm actually going to be migrating everything to Fedora completely
in a month or two - web, email and all - , so I'll just put it off until
then. GLST until the migration for me.

Take care,
Bm

- Original Message -
Subject: [xmail] Re: GLST
Date: Fri, 7 Jan 2005 16:54:02 -0600
From: "Shiloh Jennings" <[EMAIL PROTECTED]>

We have worked with Windows and SpamAssassin quite a bit.  We finally =
gave
up on running SA on the Windows boxes and just move SA onto some old =
FreeBSD
boxes.  Then we use a native Win32 build of SpamC on the Windows boxes =
to
communicate with SpamD on the FreeBSD boxes.  Works like a champ.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Postmaster
Sent: Friday, January 07, 2005 4:18 PM
To: xmail@xmailserver.org
Subject: [xmail] Re: GLST

As you may have gathered from my previous question, I plan to use it, =
but
have only been held back by waiting for the Win32 build - so close now =
that
I wait for the final version.

Does anyone have any non-Cygwin SpamAssasin advice for Win32? I've tried =
to
implement it and failed several times. Is there a useful FAQ for it
somewhere? If not, is there much interest in my penning when when/if I =
get
it going?

Bryn

- Original Message -
Subject: [xmail] GLST
Date: Fri, 07 Jan 2005 22:29:49 +0100
From: Matic <[EMAIL PROTECTED]>

Hi!

How many of you on the list is using the GLST and what kind of success=20
do you think it has? What is your initial delay and what is recomended=20
value?

Matic
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Mike Harrington wrote:

> How many months worth do you want :P

I think three should be fine, thx! I am collecting all mine also, but mine 
are biased. The top of my traffic comes from mailing lists, where message 
sizes are typically small (and plain-text).



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: GLST

2005-01-07 Thread Postmaster
Thanks! I'm actually going to be migrating everything to Fedora completely
in a month or two - web, email and all - , so I'll just put it off until
then. GLST until the migration for me.

Take care,
Bm

- Original Message -
Subject: [xmail] Re: GLST
Date: Fri, 7 Jan 2005 16:54:02 -0600
From: "Shiloh Jennings" <[EMAIL PROTECTED]>

We have worked with Windows and SpamAssassin quite a bit.  We finally =
gave
up on running SA on the Windows boxes and just move SA onto some old =
FreeBSD
boxes.  Then we use a native Win32 build of SpamC on the Windows boxes =
to
communicate with SpamD on the FreeBSD boxes.  Works like a champ.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Postmaster
Sent: Friday, January 07, 2005 4:18 PM
To: xmail@xmailserver.org
Subject: [xmail] Re: GLST

As you may have gathered from my previous question, I plan to use it, =
but
have only been held back by waiting for the Win32 build - so close now =
that
I wait for the final version.

Does anyone have any non-Cygwin SpamAssasin advice for Win32? I've tried =
to
implement it and failed several times. Is there a useful FAQ for it
somewhere? If not, is there much interest in my penning when when/if I =
get
it going?

Bryn

- Original Message -
Subject: [xmail] GLST
Date: Fri, 07 Jan 2005 22:29:49 +0100
From: Matic <[EMAIL PROTECTED]>

Hi!

How many of you on the list is using the GLST and what kind of success=20
do you think it has? What is your initial delay and what is recomended=20
value?

Matic
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Mike Harrington
How many months worth do you want :P

- Original Message - 
From: "Davide Libenzi" 
To: 
Sent: Friday, January 07, 2005 2:45 PM
Subject: [xmail] Re: Stats about message sizes ...


> On Fri, 7 Jan 2005, Theo Rosbag wrote:
>
> > Davide Libenzi wrote:
> > > Does anyone of you keep stats about message sizes? They are inside
logs,
> > > but dunno if you collected them ...
> > >
> > >
> >
> > I use it in my mrtg page , to show how much mail in MB where received .
> > Why?
>
> I'd like, if possible, to receive a text file generated from SMTP logs,
> that greps out only the size of the message. One per line:
>
> 12391
> 3498
> 123671
> 
>
> I need to to perform some statistical analysis. Can some (or many) of you
> supply me such data?
>
>
>
> - Davide
>
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
>
>

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] R: Re: R: Stats about message sizes ...

2005-01-07 Thread Dario
ahhh, didn't get to that yet, but I'll try 1.21 and give you
something on monday if it isn't too late.

Dario

-Messaggio originale-
Da: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] conto di Davide Libenzi
Inviato: venerdi 7 gennaio 2005 23.46
A: xmail@xmailserver.org
Oggetto: [xmail] Re: R: Stats about message sizes ...


On Fri, 7 Jan 2005, Dario wrote:

> I do.
> Is the log format changing in 1.21?

Nope. There is a new filter log, but this is a new thing of 1.21 ...



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: GLST

2005-01-07 Thread Shiloh Jennings
We have worked with Windows and SpamAssassin quite a bit.  We finally =
gave
up on running SA on the Windows boxes and just move SA onto some old =
FreeBSD
boxes.  Then we use a native Win32 build of SpamC on the Windows boxes =
to
communicate with SpamD on the FreeBSD boxes.  Works like a champ.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] =
On
Behalf Of Postmaster
Sent: Friday, January 07, 2005 4:18 PM
To: xmail@xmailserver.org
Subject: [xmail] Re: GLST

As you may have gathered from my previous question, I plan to use it, =
but
have only been held back by waiting for the Win32 build - so close now =
that
I wait for the final version.

Does anyone have any non-Cygwin SpamAssasin advice for Win32? I've tried =
to
implement it and failed several times. Is there a useful FAQ for it
somewhere? If not, is there much interest in my penning when when/if I =
get
it going?

Bryn

- Original Message -
Subject: [xmail] GLST
Date: Fri, 07 Jan 2005 22:29:49 +0100
From: Matic <[EMAIL PROTECTED]>

Hi!

How many of you on the list is using the GLST and what kind of success=20
do you think it has? What is your initial delay and what is recomended=20
value?

Matic
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: R: Stats about message sizes ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Dario wrote:

> I do.
> Is the log format changing in 1.21?

Nope. There is a new filter log, but this is a new thing of 1.21 ...



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Theo Rosbag wrote:

> Davide Libenzi wrote:
> > Does anyone of you keep stats about message sizes? They are inside logs, 
> > but dunno if you collected them ...
> > 
> > 
> 
> I use it in my mrtg page , to show how much mail in MB where received .
> Why?

I'd like, if possible, to receive a text file generated from SMTP logs, 
that greps out only the size of the message. One per line:

12391
3498
123671


I need to to perform some statistical analysis. Can some (or many) of you 
supply me such data?



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: GLST

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Michal Altair Valasek wrote:

> Hello,
> 
> | How many of you on the list is using the GLST and what kind=20
> | of success=20
> | do you think it has? What is your initial delay and what is=20
> | recomended value?
> 
> I am using the GLST module. Number of spam mails dropped for some 90%.

Please do not spread the voice too much, otherwise spammers will start 
using better tools :-)



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: GLST

2005-01-07 Thread Postmaster
As you may have gathered from my previous question, I plan to use it, but
have only been held back by waiting for the Win32 build - so close now that
I wait for the final version.

Does anyone have any non-Cygwin SpamAssasin advice for Win32? I've tried to
implement it and failed several times. Is there a useful FAQ for it
somewhere? If not, is there much interest in my penning when when/if I get
it going?

Bryn

- Original Message -
Subject: [xmail] GLST
Date: Fri, 07 Jan 2005 22:29:49 +0100
From: Matic <[EMAIL PROTECTED]>

Hi!

How many of you on the list is using the GLST and what kind of success 
do you think it has? What is your initial delay and what is recomended 
value?

Matic
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: GLST

2005-01-07 Thread Michal Altair Valasek
Hello,

| How many of you on the list is using the GLST and what kind=20
| of success=20
| do you think it has? What is your initial delay and what is=20
| recomended value?

I am using the GLST module. Number of spam mails dropped for some 90%.

Currently I use delay 15 minutes, in spite of "official" recommendation =
of
one hour.

* S nov=FDm rokem nov=FD projekt: www.aspnet.cz *

-- Michal Altair Valasek, ASP.NET MVP
__ALTAIR-COMMUNICATIONS
http://www.altaircom.net | http://www.rider.cz | http://weblog.rider.cz
[EMAIL PROTECTED] |PGP 0xC4F3579D | ICQ 6160893
I'm not cynical. Just experienced.

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: Stats about message sizes ...

2005-01-07 Thread Theo Rosbag
Davide Libenzi wrote:
> Does anyone of you keep stats about message sizes? They are inside logs, 
> but dunno if you collected them ...
> 
> 

I use it in my mrtg page , to show how much mail in MB where received .
Why?


Groeten,
Theo.
-- 
The account is not permitted to log on at this time of day.
-Overzicht lijnmonitoren : http://lijnmonitor.thbird.org/overzicht
-Kwaliteitstest Cistron Backbone : http://lijnmonitor.thbird.org
-Xmail Script-Page: http://xmail.thbird.org
-DreamVCR BetaTeam Member :http://www.dreamvcr.com
-Uptime thbird.org: 98 days, 7 hours and 37 minutes, 0 users logged in.

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] GLST

2005-01-07 Thread Matic
Hi!

How many of you on the list is using the GLST and what kind of success 
do you think it has? What is your initial delay and what is recomended 
value?

Matic
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] R: Stats about message sizes ...

2005-01-07 Thread Dario
I do.
Is the log format changing in 1.21?

Dario



-Messaggio originale-
Da: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] conto di Davide Libenzi
Inviato: venerdi 7 gennaio 2005 22.21
A: XMail mailing list
Oggetto: [xmail] Stats about message sizes ...



Does anyone of you keep stats about message sizes? They are inside logs, 
but dunno if you collected them ...


- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Stats about message sizes ...

2005-01-07 Thread Davide Libenzi

Does anyone of you keep stats about message sizes? They are inside logs, 
but dunno if you collected them ...


- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: 1.21-pre04 reports ...

2005-01-07 Thread Postmaster
Ahhh... Got it. Thanks for the quick response. Good work as always Davide.

Happy new year!

- Original Message -
Subject: [xmail] Re: 1.21-pre04 reports ...
Date: Fri, 7 Jan 2005 13:02:23 -0800 (PST)
From: Davide Libenzi 

On Fri, 7 Jan 2005, Postmaster wrote:

> Just a question for my failing memory... Was a graylisting option added to
> this version or nixed? I haven't had the chance to try out the new
version.

There is no specific greylisting option. GLST is just a filter. There is 
though, an option to exclude filter execution upon user authentication.



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: 1.21-pre04 reports ...

2005-01-07 Thread Davide Libenzi
On Fri, 7 Jan 2005, Postmaster wrote:

> Just a question for my failing memory... Was a graylisting option added to
> this version or nixed? I haven't had the chance to try out the new version.

There is no specific greylisting option. GLST is just a filter. There is 
though, an option to exclude filter execution upon user authentication.



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: 1.21-pre04 reports ...

2005-01-07 Thread Postmaster
Just a question for my failing memory... Was a graylisting option added to
this version or nixed? I haven't had the chance to try out the new version.

Thanks!

Bryn

- Original Message -
Subject: [xmail] 1.21-pre04 reports ...
Date: Fri, 7 Jan 2005 11:20:52 -0800 (PST)
From: Davide Libenzi 


Since I plan to make 1.21 this weekend, are there any bad reports about 
1.21-pre04? Running fine on @xmailserver.org ...



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: 1.21-pre04 reports ...

2005-01-07 Thread Mike Harrington
All good here.  :)

- Original Message - 
From: "Davide Libenzi" 
To: "XMail mailing list" 
Sent: Friday, January 07, 2005 11:20 AM
Subject: [xmail] 1.21-pre04 reports ...


> 
> Since I plan to make 1.21 this weekend, are there any bad reports about 
> 1.21-pre04? Running fine on @xmailserver.org ...
> 
> 
> 
> - Davide
> 
> -
> To unsubscribe from this list: send the line "unsubscribe xmail" in
> the body of a message to [EMAIL PROTECTED]
> For general help: send the line "help" in the body of a message to
> [EMAIL PROTECTED]
> 
> 
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] 1.21-pre04 reports ...

2005-01-07 Thread Davide Libenzi

Since I plan to make 1.21 this weekend, are there any bad reports about 
1.21-pre04? Running fine on @xmailserver.org ...



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]



[xmail] Re: filter error -5

2005-01-07 Thread Dale Qualls
I put it on this a.m., we'll keep an eye on it.
 
Thanks!
>>> davidel@xmailserver.org 1/6/2005 2:30 PM >>>
On Thu, 6 Jan 2005, Dale Qualls wrote:

> I'm seeing this error (filter error (-5)) in the /var/log/messages
log
> on many messages. When this happens the server locks up and we have
to
> reboot it, quickly ssh into it, kill xmail and spamd.

Yesterday, while implementing the new filter features, I found an error

triggered when a filter execution fails. In versions < 1.21-pre04, I
was 
freeing the filters strings array, and then log the operation, that was

printing one of those strings (index 0). This might trigger crashes in

case another thread immediately re-allocate the same location between
the 
free and the log time. Try 1.21-pre04 ...



- Davide

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED] 
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED] 







**
The preceding message and any attachments may contain confidential 
information protected by the attorney-client or other privilege.  If you 
believe that it has been sent to you in error, please reply to the sender 
that you received the message in error and then delete it.  Nothing in 
this email message, including the typed name of the sender and/or this 
signature block, is intended to constitute an electronic signature unless 
a specific statement to the contrary is included in the message.
**


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]