From owner-freebsd-questions@FreeBSD.ORG Fri Dec 5 04:15:43 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C68C716A4CE for ; Fri, 5 Dec 2003 04:15:43 -0800 (PST) Received: from oz.twisted.net (oz.twisted.net [209.172.186.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id A419143FDD for ; Fri, 5 Dec 2003 04:15:42 -0800 (PST) (envelope-from troy@twisted.net) Received: from localhost (localhost [127.0.0.1]) by oz.twisted.net (Postfix) with ESMTP id 1B85A598F21 for ; Fri, 5 Dec 2003 06:15:42 -0600 (CST) Received: from oz.twisted.net ([127.0.0.1]) by localhost (oz.twisted.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00284-04 for ; Fri, 5 Dec 2003 06:15:41 -0600 (CST) Received: by oz.twisted.net (Postfix, from userid 1000) id 01FE9598FFE; Fri, 5 Dec 2003 06:15:40 -0600 (CST) Date: Fri, 5 Dec 2003 06:15:40 -0600 From: Troy To: freebsd-questions@freebsd.org Message-ID: <20031205121540.GA18902@twisted.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new at twisted.net Subject: Spamassassin - uninitialized value in Bayes.pm X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: troy@twisted.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Dec 2003 12:15:43 -0000 Recently I have been seeing the following in my maillog as it relates to spamassassin running. It appears the filter is running, but would like to know what these errors mean. Any ideas? -Troy Dec 5 06:11:07 localhost spamd[18901]: Use of uninitialized value at /usr/local/lib/perl5/site_perl/5.005/Mail/SpamAssassin/Bayes.pm line 515. Dec 5 06:11:07 localhost spamd[18901]: Use of uninitialized value at /usr/local/lib/perl5/site_perl/5.005/Mail/SpamAssassin/Bayes.pm line 515. Dec 5 06:11:07 localhost spamd[18901]: Use of uninitialized value at /usr/local/lib/perl5/site_perl/5.005/Mail/SpamAssassin/Bayes.pm line 517. Dec 5 06:11:07 localhost spamd[18901]: Use of uninitialized value at /usr/local/lib/perl5/site_perl/5.005/Mail/SpamAssassin/Bayes.pm line 517. Dec 5 06:11:07 localhost spamd[18901]: Use of uninitialized value at /usr/local/lib/perl5/site_perl/5.005/Mail/SpamAssassin/Bayes.pm line 518. Dec 5 06:11:07 localhost spamd[18901]: Use of uninitialized value at /usr/local/lib/perl5/site_perl/5.005/Mail/SpamAssassin/Bayes.pm line 518. The lines in bayes.pm appear to be: $boundary =~ s/[a-fA-F0-9]/H/gs; # break up blocks of separator chars so they become their own tokens $boundary =~ s/([-_\.=]+)/ $1 /gs; $val .= $boundary;