How to update 3.1.7 to new version

2008-03-11 Thread Sg
Hi
 I am using SA 3.1.7 in MS Exchange Server. Yesterday 80,000 spam
messages cloggin the system. Can anyone tell me, why suddenly getting lot of
spam mails. we need to update the SA or update the rules.. Please tell me
how to update SA in windows?

-- 
Sg


spam score checker

2008-01-30 Thread Sg
hi all,

In my project I am going to send newsletters to our clients. Here I need to
validate my newsletter(content) using perl. I need to check the spam score
for only body content not header. I have tried with SA-3.2.4 it will check
both header and body of the newsletter. I need to show the content's Spam
score only. I have found the *PerMsgStatus *module, in that module how to
get the score for this *get_body_only_points()*. Please help me.

Module : Mail::SpamAssassin::PerMsgStatus
Method : $score = $status->get_body_only_points()

Thanks
Geetha


Re: [Sare-users] Spam content checker

2008-01-08 Thread Sg
Hi
  Thanks for your reply. How to find the email body content(no header)
spam value using any API (php, perl, python)?

Thanks
Sg

On Jan 9, 2008 5:51 AM, Matt Kettler <[EMAIL PROTECTED]> wrote:

> Sg wrote:
> > Hi
> >
> > In the SA rules, i've hide the header test names in all the .cf files
> > and restarted the spamassassin. But i believe, it displaying wrong
> > result (compared this with lyris content checker).  Please guide me,
> > how to check the score for content checker using SA rules.
> Since SA is designed to scan email, check the message headers for the
> email message you scanned.
>
> SpamAssassin, as is, will not provide reasonable results when trying to
> scan website content. It isn't designed for that purpose, and trying to
> do so will generally result in rather strange behaviors.
>



-- 
Sg


Re: [Sare-users] Spam content checker

2008-01-08 Thread Sg
Hi

In the SA rules, i've hide the header test names in all the .cf files and
restarted the spamassassin. But i believe, it displaying wrong result
(compared this with lyris content checker).  Please guide me, how to check
the score for content checker using SA rules.

Thanks

On Jan 4, 2008 6:23 PM, Matt Kettler <[EMAIL PROTECTED]> wrote:

> Sg wrote:
> > Hi
> > Thanks your reply. Already I went through the site , but we are
> > using Linux with Spamassasin. We need to check the newsletter's body
> > content only in SA.  Please tell me the exact rules in SA for
> > spamassassin body content.
>
> There's hundreds of  rules for body content used in SA, and they change
> all the time. Look for anything Anything that's a "body", "rawbody",
> "uri" or "full" rule in the .cf files.
>
>
> 
>



-- 
Sg


Re: How to restart the spamassassin in command prompt

2008-01-07 Thread Sg
Hi

Thanks for your reply. I need to checck the body content only not
header. What are all the rules used to check only body content?

On Jan 7, 2008 5:08 PM, Diego Pomatta <[EMAIL PROTECTED]> wrote:

> Sg escribió:
> > Hi
> >
> >   After modifying the configurations and scores should we restart
> > the SA. How to start the SA-3.2.3?
> >
> > --
> > Sg
>
> Yes, you should restart SA after modifying configuration or rules/scores.
> SA comes with several control scripts that you can use to start, stop or
> restart the spamd daemon. I renamed mine to "spamdctl" and placed it in
> /usr/bin.
>
> Here it is, (I run SA 3.2.1 in a Mandrake 10 box)
>
> -
> #!/bin/sh
> #
> # spamassassin This script starts and stops the spamd daemon
> #
> # chkconfig: 2345 80 30
> #
> # description: spamd is a daemon process which uses SpamAssassin to check
> #  email messages for SPAM.  It is normally called by spamc
> #   from a MDA.
> # chkconfig: 345 40 80
>
> # Source function library.
> . /etc/rc.d/init.d/functions
>
> PATH=$PATH:/usr/local/sbin
> case "$1" in
>  start)
>cd /
>
>spamd -l -L -s stderr -r /var/run/spamd.pid \
>--siteconfigpath=/etc/mail/spamassassin --nouser-config \
>--socketpath=/tmp/spamd.sock 2>&1 | \
>/usr/local/bin/setuidgid qmaill \
>/usr/local/bin/multilog t n20 s100 /var/log/spamd &
>echo "spamd iniciado"
> ;;
>
>  stop)
>if [ -r /var/run/spamd.pid ]; then
>  pid=`cat /var/run/spamd.pid`
>  kill $pid || ( echo "spamd no pudo ser detenido" && exit 1 )
>  echo "spamd (pid $pid) detenido"
>else
>  echo "/var/run/spamd.pid no existe, se esta ejecutando spamd?"
>fi
>;;
>
>  restart)
>$0 stop && sleep 2 &&  $0 start
>;;
>
>  *)
>echo "uso: $0 (start|stop|restart)"
>;;
> esac
> ---
>



-- 
Sg


How to restart the spamassassin in command prompt

2008-01-07 Thread Sg
Hi

  After modifying the configurations and scores should we restart the
SA. How to start the SA-3.2.3?

-- 
Sg


Re: [Sare-users] Spam content checker

2008-01-04 Thread Sg
Hi
Thanks your reply. Already I went through the site , but we are using
Linux with Spamassasin. We need to check the newsletter's body content only
in SA.  Please tell me the exact rules in SA for spamassassin body content.

Thanks

On Jan 4, 2008 2:13 PM, Gareth <[EMAIL PROTECTED]> wrote:

> Have a look at a piece of software called 'Mail Them Pro'. Its what we
> use for sending newsletters and it is windows software which has an
> option to run the mail through spamassassin and display the report.
> http://www.kadmy.com/bulkemail.html
>
>
> On Fri, 2008-01-04 at 05:32, Sg wrote:
> > Hi,
> >Thanks for your reply. In my project I am going to send
> > newsletters to our clients. Here I need to validate my
> > newsletter(content) using some API(perl,  php or python). Also  I need
> > to show the content's Spam score.
> >
> > On Jan 3, 2008 9:50 PM, John D. Hardin <[EMAIL PROTECTED]> wrote:
> > On Thu, 3 Jan 2008, Sg wrote:
> >
> > > Hi,,
> > >
> > >  How to find score for content checker(validator) perl
> > or php.?
> >
> >
> > You're going to have to reword that question, and provide more
> > details
> > (like, what are you trying to do) before anyone will be able
> > to
> > provide a helpful answer.
> >
> > --
> >  John Hardin KA7OHZ
> > http://www.impsec.org/~jhardin/<http://www.impsec.org/%7Ejhardin/>
> >  [EMAIL PROTECTED]FALaholic #11174 pgpk -a
> > [EMAIL PROTECTED]
> >  key: 0xB8732E79 -- 2D8C 34F4 6411 F507 136C  AF76 D822 E6E6
> > B873 2E79
> >
> ---
> >  Users mistake widespread adoption of Microsoft Office as the
> >  development of a standard document format.
> >
> ---
> >  14 days until Benjamin Franklin's 302nd Birthday
> >
> >
> >
> >
> > --
> > Sg
> >
> > __
> > ___
> > This is being sent to: [EMAIL PROTECTED]
> > Sare-users mailing list
> > [EMAIL PROTECTED]
> > http://lists.maddoc.net/mailman/listinfo/sare-users
>
> ___
> This is being sent to: [EMAIL PROTECTED]
> Sare-users mailing list
> [EMAIL PROTECTED]
> http://lists.maddoc.net/mailman/listinfo/sare-users
>



-- 
Sg


Re: Spam content checker

2008-01-03 Thread Sg
Hi,
   Thanks for your reply. In my project I am going to send newsletters
to our clients. Here I need to validate my newsletter(content) using some
API(perl,  php or python). Also  I need to show the content's Spam score.

On Jan 3, 2008 9:50 PM, John D. Hardin <[EMAIL PROTECTED]> wrote:

> On Thu, 3 Jan 2008, Sg wrote:
>
> > Hi,,
> >
> >  How to find score for content checker(validator) perl or php.?
>
> You're going to have to reword that question, and provide more details
> (like, what are you trying to do) before anyone will be able to
> provide a helpful answer.
>
> --
>  John Hardin KA7OHZ
> http://www.impsec.org/~jhardin/<http://www.impsec.org/%7Ejhardin/>
>  [EMAIL PROTECTED]FALaholic #11174 pgpk -a [EMAIL PROTECTED]
>  key: 0xB8732E79 -- 2D8C 34F4 6411 F507 136C  AF76 D822 E6E6 B873 2E79
> ---
>  Users mistake widespread adoption of Microsoft Office as the
>  development of a standard document format.
> -------
>  14 days until Benjamin Franklin's 302nd Birthday
>
>


-- 
Sg


Spam content checker

2008-01-03 Thread Sg
Hi,,

 How to find score for content checker(validator) perl or php.?

-- 
Sg


How can I test my email to get spam score before sending?

2007-12-25 Thread Sg
hi all,

How can I test my email to get spam score before sending?

-- 
Sg


my collegue id received as spam

2007-09-03 Thread Sg
Hi

My collegue id received as spam. Already i added to them on
whitelist_from_rcvd and whitelist_to. Again it received as spam. Any
solution

-- 
Sg


ham mail marked as spam

2007-08-21 Thread Sg
Hi

Suddenly my collegue mails are recieved as spam by 3.1.7 SA. I added to them
on white list entry. Why it comes like this suddenly? any solution?

-- 
Sg


normail marked as spam

2007-08-16 Thread Sg
Hi

 One of my client domain mail marked as spam. I want to receive normal
mail from their domain. how to set rules that particular domain mails are
not spam.

-- 
Sg


how to stop the spam assassin

2007-08-14 Thread Sg
Hi,

I am running SA 3.1.7. I need to upgrade it. I have to stop the current
running SA. how to stop the service?

-- 
Sg


how to upgrade 3.1.7 to 3.2.x

2007-08-09 Thread Sg
Hi

 How to upgrage 3.1.7 to 3.2.x. Please help me.
-- 
Sg


how to upgrade 3.1.7 to higer version

2007-08-09 Thread Sg
Hi

Now I using SA 3.1.7. How to update the higher versions. Please help me.

-- 
Sg


.htm spam files

2007-07-31 Thread Sg
Hi

I am getting .htm spams. how to avoid that

-- 
Sg


sa-update error

2007-07-24 Thread Sg

Hi

I am using SA 3.1.7. I want to update it.

I tried this command

sa-update --nogpg --channel updates.spamassassin.org --channel
saupdates.openprotect.com

But i got this error  ""Argument "1.26_01" isnt numeric in subroutine entry
at sa-update line 91""


--
Sg


how to update the spam assassin

2007-07-19 Thread Sg

Hi all

I am using 3.1.7 version. shall i upgrade this or to copy the new rules to
this directory \usr\share\spamassassin. If i want to upgrade it means how to
do?

--
Sg


Spam log file

2007-07-10 Thread Sg

Hi

Where is the spam log file located?

--
Sg


What is the spam filtering for windows

2007-07-06 Thread Sg

Hi

I am working with MS Exchange 2003 on windows 2003. What is the filtering
software for spam assassin on windows?

--
Geetha. S


how to do sa-update on windows 2003

2007-07-05 Thread Sg

Hi

How to update SA on Exchange 2003 on Windows 2003 server. SA version is
3.1.7.

--
Geetha. S


how to quarantine spam mail

2007-07-05 Thread Sg

Hi

We have MS Exchange Server 2003 on windows 2003 server. We have installed
Mail-spamassassin-3.1.7, Active Perl, GUI tool for SA, ESA.

We have mail ids with 30 users. Here spam mail has detected. How to
quaratine this mail   Please help me
Spam detection software, running on the system
"ganesha-usa.Treselle.com",
has identified this incoming email as possible spam.  The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email.  If you have any questions, see [EMAIL PROTECTED] for
details.

Content preview:  Hi Geetha, Hi Geetha, [...]

Content analysis details:   (6.4 points, 5.0 required)

 pts rule name  description

 --
--

0.1 HTML_90_100BODY: Message is 90% to 100% HTML

-2.6 BAYES_00   BODY: Bayesian spam probability is 0 to 1%

   [score: 0.]

1.1 MIME_HTML_MOSTLY   BODY: Multipart message mostly text/html MIME

0.0 HTML_MESSAGE   BODY: HTML included in message

2.0 RCVD_IN_SORBS_DUL  RBL: SORBS: sent directly from dynamic IP
address

   [59.93.22.119 listed in dnsbl.sorbs.net]

1.9 RCVD_IN_NJABL_DUL  RBL: NJABL: dialup sender did non-local SMTP

   [59.93.22.119 listed in combined.njabl.org]

3.8 AWLAWL: From: address is in the auto white-list


--
Geetha. S


how filter the website

2007-07-04 Thread Sg

Hi

I am getting this spam mail -  [EMAIL PROTECTED]

How to write rules to filter this email or the website too.

--
Geetha. S


how to configure spamassassin in MS Exchange 2003 server

2007-06-12 Thread sg

hi

We are using MS Exchange 2003 server on windows 2003 server. We have
registered with domain service and using 50 mail users. We are getting lot
of spam mails. I want to know the configuring details of
Mail-spamassassin-3.1.7 and how to control the spam mails.. 
-- 
View this message in context: 
http://www.nabble.com/how-to-configure-spamassassin-in-MS-Exchange-2003-server-tf3906842.html#a11076510
Sent from the SpamAssassin - Users mailing list archive at Nabble.com.