List Info

Thread: Status on next big release ... any?




Status on next big release ... any?
user name
2007-09-25 06:55:06
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Big feature I'm looking for:  Quarantine spam > m,
discard spam > n

If I could set Quarantine to 5, and Discard to, say, 20,
that would cut my 
database down by about 75% or so ... make everything that
wee bit faster ...

In fact, and not sure if this one is possible or not, being
able to set 
'autolearn=yes' for spam < discard_level would make it
possible to re-enable 
that feature as well, considering how much mail I'm finding
score >20, 
especially on the postgresql.org mailing lists ...

- ----
Marc G. Fournier           Hub.Org Networking Services (http://www.hub.org)
Email . scrappyhub.org                              MSN .
scrappyhub.org
Yahoo . yscrappy               Skype: hub.org        ICQ .
7615664
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.4 (FreeBSD)

iD8DBQFG+Pca4QvfyHIvDvMRAgLlAKDonrzbWO7vHgLcWqcBHMg4BvDrZACg
7UeE
f6GBOrk06wIT1P2uYOc1cMg=
=imG8
-----END PGP SIGNATURE-----

_______________________________________________
Maia-users mailing list
Maia-usersrenaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users

Re: Status on next big release ... any?
country flaguser name
United States
2007-09-25 07:47:26
Marc G. Fournier wrote:
ganymede.hub.org" type="cite">
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Big feature I'm looking for:  Quarantine spam > m, discard spam > n

If I could set Quarantine to 5, and Discard to, say, 20, that would cut my 
database down by about 75% or so ... make everything that wee bit faster ...

In fact, and not sure if this one is possible or not, being able to set 
'autolearn=yes' for spam < discard_level would make it possible to re-enable 
that feature as well, considering how much mail I'm finding score >20, 
especially on the postgresql.org mailing lists ...

- ----
Marc G. Fournier           Hub.Org Networking Services (http://www.hub.org)

Email . hub.org">scrappyhub.org                              MSN . hub.org">scrappyhub.org
Yahoo . yscrappy               Skype: hub.org        ICQ . 7615664
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.4 (FreeBSD)


iD8DBQFG+Pca4QvfyHIvDvMRAgLlAKDonrzbWO7vHgLcWqcBHMg4BvDrZACg7UeE
f6GBOrk06wIT1P2uYOc1cMg=
=imG8
-----END PGP SIGNATURE-----

_______________________________________________
Maia-users mailing list
renaissoft.com">Maia-usersrenaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users
  

In spamassassin's local.cf, is this what you're looking for?
bayes_auto_learn ; &nbsp;  1
bayes_auto_learn_threshold_nonspam &nbsp; &nbsp; -5.0
bayes_auto_learn_threshold_spam&nbsp;   ; 15.0

~Cory Coager
Re: Status on next big release ... any?
country flaguser name
United States
2007-09-25 13:25:43
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


On Sep 25, 2007, at 6:55 AM, Marc G. Fournier wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
>
> Big feature I'm looking for:  Quarantine spam > m,
discard spam > n
>
> If I could set Quarantine to 5, and Discard to, say,
20, that would  
> cut my
> database down by about 75% or so ... make everything
that wee bit  
> faster ...
>
> In fact, and not sure if this one is possible or not,
being able to  
> set
> 'autolearn=yes' for spam < discard_level would make
it possible to  
> re-enable
> that feature as well, considering how much mail I'm
finding score >20,
> especially on the postgresql.org mailing lists .


That's something we've scheduled for 1.1


http://www.maiamailguard.org/maia/wiki/NewThresholds


Unfortunately, I don't know how far off that is right now.

David Morton
Maia Mailguard http://www.maiamailguard
.com
mortondadgrmm.net



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFG+VKnUy30ODPkzl0RApeEAJ4gc1axLPpK/sEduDuFI3JvNiugRACd
HU0j
vhKmOuTiBZkmiWqtTlk1IYw=
=+UzO
-----END PGP SIGNATURE-----
_______________________________________________
Maia-users mailing list
Maia-usersrenaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users

Re: Status on next big release ... any?
country flaguser name
United States
2007-09-25 16:33:49
On Tue, 2007-09-25 at 08:55 -0300, Marc G. Fournier wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> 
> Big feature I'm looking for:  Quarantine spam > m,
discard spam > n
> 
> If I could set Quarantine to 5, and Discard to, say,
20, that would cut my 
> database down by about 75% or so ... make everything
that wee bit faster ...
> 
> In fact, and not sure if this one is possible or not,
being able to set 
> 'autolearn=yes' for spam < discard_level would make
it possible to re-enable 
> that feature as well, considering how much mail I'm
finding score >20, 
> especially on the postgresql.org mailing lists ...
> 

If you're using PostgreSQL for maia, then you can create an
after
trigger to delete if score over 20 on the maia_mail table.
Something
like this...NOT TESTED, and could also add any other cleanup
in other
tables, if necessary?

CREATE OR REPLACE FUNCTION
"public"."maia_mail_after_trigg_func" ()
RETURNS trigger AS'
begin
  IF NEW.score > 20 THEN
     DELETE FROM maia_mail WHERE id = NEW.id;
  END IF;
end;
'LANGUAGE 'plpgsql' IMMUTABLE CALLED ON NULL INPUT SECURITY
INVOKER;

CREATE TRIGGER "maia_mail_after_trigg" AFTER
INSERT OR UPDATE 
ON "public"."maia_mail" FOR EACH ROW 
EXECUTE PROCEDURE
"public"."maia_mail_after_trigg_func"();


-- 
Robert

_______________________________________________
Maia-users mailing list
Maia-usersrenaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users

Re: Status on next big release ... any?
user name
2007-09-25 18:19:51
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1



- --On Tuesday, September 25, 2007 13:25:43 -0500 David
Morton 
<mortondadgrmm.net> wrote:

> Unfortunately, I don't know how far off that is right
now.

Is there anything we, as a community, can do to help?

- ----
Marc G. Fournier           Hub.Org Networking Services (http://www.hub.org)
Email . scrappyhub.org                              MSN .
scrappyhub.org
Yahoo . yscrappy               Skype: hub.org        ICQ .
7615664
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.4 (FreeBSD)

iD8DBQFG+ZeX4QvfyHIvDvMRAvgJAJ41XTvaUnSjjKfDC3VuUV0qgO246QCg
voZi
GSdFNzNALyAVmSBDw+RGK1I=
=9bRo
-----END PGP SIGNATURE-----

_______________________________________________
Maia-users mailing list
Maia-usersrenaissoft.com
http://www.renaissoft.com/mailman/listinfo/maia-users

[1-5]

about | contact  Other archives ( Real Estate discussion Medical topics )