azor-users@lists.sourceforge.net
Subject: RE: [Razor-users] Razor-check not using sha1 value inrazor-whitelist
file
What is the ehash?
The documentation indicates that I can add this line to the whitelist:
sha1 _SsH-KtgO9VSZa2dpZ4fHt9OeOcA
Jim
From: Vipul Ved Praka
TED]
Sent: Tuesday, January 02, 2007 06:00 PM
To: Jim Hermann - UUN Hostmaster; razor-users@lists.sourceforge.net
Subject: RE: [Razor-users] Razor-check not using sha1 value
inrazor-whitelist file
Hmm, looking through the code, it seems ehash whitelist
@lists.sourceforge.net
Subject: RE: [Razor-users] Razor-check not using sha1 value
inrazor-whitelist file
SHA1 sig is not used in the newer versions of Razor. Did you try listing
the ehash?
cheers,
vipul
-Original Message-
From: [EMAIL PROTECTED] on behalf of Jim Hermann -
UUN Hostmaster
Sent: Mon 1/1
SHA1 sig is not used in the newer versions of Razor. Did you try listing the
ehash?
cheers,
vipul
-Original Message-
From: [EMAIL PROTECTED] on behalf of Jim Hermann - UUN Hostmaster
Sent: Mon 1/1/2007 9:14 AM
To: razor-users@lists.sourceforge.net
Subject: Re: [Razor-users] Razor
Still waiting to hear something about this problem.
Jim
> -Original Message-
> From: Jim Hermann - UUN Hostmaster [mailto:[EMAIL PROTECTED]
> Sent: Saturday, October 28, 2006 10:37 AM
> To: 'razor-users@lists.sourceforge.net'
> Subject: RE: Razor-check not using sha1 value in razor-whit
What is the status of this Bug? I submitted it back in July.
Jim
> -Original Message-
> From: Jim Hermann - UUN Hostmaster [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 09, 2006 11:14 AM
> To: 'razor-users@lists.sourceforge.net'
> Subject: Razor-check not using sha1 value in razor-whi
Yes. razor-check doesn't require you to register.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Peggy Kam
Sent: Thursday, March 25, 2004 1:50 PM
To: [EMAIL PROTECTED]
Subject: [Razor-users] razor check
Hi,
Is it possible to use razor-check to check si
At 04:50 PM 3/25/2004, Peggy Kam wrote:
Is it possible to use razor-check to check signatures against the
catalogue server without registration?
AFAIK that should work fine, the registration is only used when you do reports.
---
This SF.Net em
At 07:57 AM 3/19/2004, Peggy Kam wrote:
May I ask how razor-check sends the signature to the server? ie. under
which protocol. The reason why I am asking is that I would want to know
if the signature will be sent to the server securely.
I don't know the details of the protocol, but secure trans
May I ask how razor-check sends the signature to the server? ie. under
which protocol. The reason why I am asking is that I would want to know
if the signature will be sent to the server securely.
Thanks in advance,
Peggy
Kelson Vibber wrote:
At 02:49 PM 3/18/2004, Peggy Kam wrote:
Can anyon
At 02:49 PM 3/18/2004, Peggy Kam wrote:
Can anyone tell me how razor-check communicates with a Razor Catalogue
Server and checks mail against the distributed Razor Catalogue? Is the
message being sent to catalogue server and then has its signature checked
against the database? I am kind of co
At 11:30 AM 1/5/2004, Peter Loleit wrote:
:0 Wc
| razor-check
:0 Wa
/home/user_name/Maildir/SPAM
why does it not recognise the pipe to razor-check? how can i test my
configuration??
Might I suggest trying a full, explicit path to razor-check?
I suspect your problem might be that razor-
On Mon, Jan 05, 2004 at 04:30:23PM -, Peter Loleit wrote:
> razor-check: razor-check: No such file or directory
> procmail: Error while writing to "razor-check"
Either razor-check isn't in your path or the #! path in razor-check
doesn't point at a valid perl.
--
Randomly Generated Tagline:
"
does anybody have an idea what causes this?
My only suggestion would be to check for two copies of razor, one in
/usr/bin and one in /usr/local/bin.
If you execute razor-check as a non-root user, /usr/local/bin will be in
the path, and will precede /usr/bin.
However, Spamassassin may not be in
Here's how I do that. @razorout is the output from the razor check. This
assumes the message to check is STDIN. You need the IPC::Open2 module if it
is not installed by default.
use IPC::Open2;
@inlines = ;
$wholemessage = join("", @inlines);
my $pid = open2(RAZOR_READ, RAZOR_WRITE, "razor-ch
On Wed, Dec 18, 2002 at 07:40:26PM -0500, Jon Oringer wrote:
> method im using isn't working.. Here is the code.. Can anybody see
> anything wrong with this?
>
> open(G,">/tmp/razor$randnum");
> print G $bod;
> close G;
> my $razor_res = `cat /tmp/razor$randnum | r
On Thursday, December 19, 2002, at 07:48 AM, Theo Van Dinter wrote:
On Thu, Dec 19, 2002 at 10:34:10AM -0500, Benjamin M Wall wrote:
my $razor_res = system("cat /tmp/razor$randnum | razor-check");
- just tell razor-check where the file is:
my $razor_res = system("razor-check /tmp/razor$ran
On Thu, Dec 19, 2002 at 11:57:20AM -0500, Benjamin M Wall wrote:
> Im bothering with true because I think that it makes it more portable. The
> "true" return value can vary on different operating systems and architectures
Well, razor-check returns 0 if the message is spam, that's the same on
any
> U. No, you're comparing integer values. '==' is numerical, 'eq'
> is string. And while we're on it:
>
> - just tell razor-check where the file is:
>
> my $razor_res = system("razor-check /tmp/razor$randnum");
>
> that's one less process to get in your way.
>
> - why bother running "true"?
On Thu, Dec 19, 2002 at 10:34:10AM -0500, Benjamin M Wall wrote:
> > my $razor_res = system("cat /tmp/razor$randnum | razor-check");
> > my $standard = system("true");
> >
> > if ($razor_res == $standard)
> > SPAM
> > else { NOT-YET-CATALOGUED-AS-SPAM}
>
> the line that reads > if ($razor_res ==
>
> my $razor_res = system("cat /tmp/razor$randnum | razor-check");
> my $standard = system("true");
>
> if ($razor_res == $standard)
> SPAM
> else { NOT-YET-CATALOGUED-AS-SPAM}
>
>
the line that reads > if ($razor_res == $standard)
should be if ($razor_res eq $standard)
-
On Thursday 19 December 2002 08:55 am, Jon Oringer wrote:
> Can anybody see anything wrong with this?
>
> I'm using Postfix.. /etc/aliases says:
>
> support: "|/usr/bin/perl /home/mailman/sql_the_mail.pl"
>
> Here is the sql_the_main.pl code
>
> while() { $bod .= $_; }
>
> my $mb = Mail::MboxParse
22 matches
Mail list logo