From lainie at ezeir.ws Tue Jul 1 03:05:59 2008 From: lainie at ezeir.ws (Lainie Ezeir) Date: Mon, 30 Jun 2008 18:05:59 -0700 Subject: [Spambayes] help with spambayes - toolbar not working Message-ID: <20080701010605.YNHJ2063.cdptpa-omta02.mail.rr.com@LainieEzeir> * The toolbar is not working, and the spam is not filtering properly. * Please ensure this mail contains: * the version of Windows you are using, - Windows XP Professional * the version of SpamBayes, - no idea, can't get into the toolbar menue * any log files. attache If you also mention that you read this trouble-shooting guide and are still stuck, then you will be more likely to get answered! I read, and tried and I'm still stuck :0). -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: spambayes1.log Type: application/octet-stream Size: 59 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: spambayes2.log Type: application/octet-stream Size: 4472 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: spambayes4.log Type: application/octet-stream Size: 6668 bytes Desc: not available URL: From mhammond at skippinet.com.au Tue Jul 1 03:50:23 2008 From: mhammond at skippinet.com.au (Mark Hammond) Date: Tue, 1 Jul 2008 11:50:23 +1000 Subject: [Spambayes] help with spambayes - toolbar not working In-Reply-To: <20080701010605.YNHJ2063.cdptpa-omta02.mail.rr.com@LainieEzeir> References: <20080701010605.YNHJ2063.cdptpa-omta02.mail.rr.com@LainieEzeir> Message-ID: <006201c8db1c$d6c91a10$845b4e30$@com.au> The logs show spambayes is filtering, but I can't explain why you don't see the toolbar (there are no errors in the logs). If you right-click on the main toolbar, do you see a Spambayes entry at all? What about if you right-click, select "Customize", then select "Toolbars" - is Spambayes listed and its checkbox selected? Did you try resetting the toolbars as mentioned in the FAQ? Did it have any affect (ie, did your other toolbars reset too?) Sorry to throw so many more questions, but there are no other clues for me to use. Cheers, Mark From: spambayes-bounces at python.org [mailto:spambayes-bounces at python.org] On Behalf Of Lainie Ezeir Sent: Tuesday, 1 July 2008 11:06 AM To: spambayes at python.org Subject: [Spambayes] help with spambayes - toolbar not working Importance: High . The toolbar is not working, and the spam is not filtering properly. . Please ensure this mail contains: * the version of Windows you are using, - Windows XP Professional * the version of SpamBayes, - no idea, can't get into the toolbar menue * any log files. attache If you also mention that you read this trouble-shooting guide and are still stuck, then you will be more likely to get answered! I read, and tried and I'm still stuck :0). -------------- next part -------------- An HTML attachment was scrubbed... URL: From esj at harvee.org Tue Jul 1 16:09:05 2008 From: esj at harvee.org (Eric S. Johansson) Date: Tue, 01 Jul 2008 10:09:05 -0400 Subject: [Spambayes] training problems Message-ID: after successfully incorporating spambayes into my project, I'm now having some training problems which I suspect are my own fault. Are there any good references on training models? The particular problem I'm having is that very early on in the training process I got the bimodal hump of scores but now I'm getting more and more messages scoring in the uncertain zone. My current training process is everything above 0.2 is considered good and delivered. Everything below 0.8 is considered bad and dumpstered. Everything in the middle is presented to the user and what ever the user chooses (Spam versus ham) is trained that way. Like I said, I suspect I'm doing something wrong but I'm not sure what which is why I'm looking for training guidance. Thanks for any education. ---eric From skip at pobox.com Tue Jul 1 19:57:08 2008 From: skip at pobox.com (skip at pobox.com) Date: Tue, 1 Jul 2008 12:57:08 -0500 Subject: [Spambayes] training problems In-Reply-To: References: Message-ID: <18538.28660.979785.940822@montanaro-dyndns-org.local> Eric> My current training process is everything above 0.2 is considered Eric> good and delivered. Everything below 0.8 is considered bad and Eric> dumpstered. Kind of a large overlap there. Do you mean everything *below* 0.2 is good and everything *above* 0.8 is spam? Skip From esj at harvee.org Tue Jul 1 20:49:14 2008 From: esj at harvee.org (Eric S. Johansson) Date: Tue, 01 Jul 2008 14:49:14 -0400 Subject: [Spambayes] training problems In-Reply-To: <18538.28660.979785.940822@montanaro-dyndns-org.local> References: <18538.28660.979785.940822@montanaro-dyndns-org.local> Message-ID: skip at pobox.com wrote: > Eric> My current training process is everything above 0.2 is considered > Eric> good and delivered. Everything below 0.8 is considered bad and > Eric> dumpstered. > > Kind of a large overlap there. Do you mean everything *below* 0.2 is good > and everything *above* 0.8 is spam? whoops. above as in greater than. that is what I get for writing while distracted. the real code logic is: on first pass, messages scoring < 0.2 are delivered. messages scoring >= 0.8 are dumpstered. the rest are presented to the user. after the user determines which message is good or bad, train as follows. if message is considered good (scoring >= 0.2), train as good if message is considered bad (scoring < 0.8), train as bad. for example: if score >= 0.2: log( "train it green %s"% (score,),1) # retrain as green because the user said so. lock_file = file(configuration_data["sb_lock"], "w+") locker = simple_locker.locker() locker.lock(lock_file, simple_locker.LOCK_EX) bayesian_storage = storage.open_storage( configuration_data['sb_features'], "dbm" ) filter_x = hammie.Hammie(bayesian_storage) filter_x.train(tpblue_message.message,False) # unlock and close access to lock file locker.unlock(lock_file) lock_file.close() log("TAG learned %s" % result,1) # update yellow limits # yellow_limit.do_injection(configuration_data['user_ID'],score) # save reputation hanky = common_services.reputation_DBM() hanky.add_good_reputation(tpblue_message.meta['xforward'], "10") hanky = None # change state to 'good' tpblue_message.alter_state('delivered') I think I see an unrelated bug. I release the lock before flushing the spambayes data file to disk. From ml at bortal.de Wed Jul 2 10:05:06 2008 From: ml at bortal.de (ml at bortal.de) Date: Wed, 02 Jul 2008 10:05:06 +0200 Subject: [Spambayes] The spam folder is invalid: MsgStoreException Message-ID: <486B36B2.5040603@bortal.de> Hello List, we are using Outlook XP and Spambayes 1.0.4. When starting Outlook i get the error: "The spam folder is invalid: MsgStoreException: Exception 0x80004005 (unbekannter fehler): Unbekannter Fehler" I _guess_ the spam folder was renamed, deleted or moved. Where can i find out what folder spambayes is looking for in order to create it again?! How could i fix this otherwise? Reinstalling Spambayes did not help. Thanks, Mario From jsp at PKC.com Wed Jul 2 13:55:01 2008 From: jsp at PKC.com (Jesse Pelton) Date: Wed, 2 Jul 2008 07:55:01 -0400 Subject: [Spambayes] The spam folder is invalid: MsgStoreException In-Reply-To: <486B36B2.5040603@bortal.de> References: <486B36B2.5040603@bortal.de> Message-ID: <16E2027582CDB74180896CDB4B8CC1F906D0B001@PKCVT01.pkc.com> I imagine you're right: the spam folder no longer exists. Because of the way Outlook works, simply creating a new folder with the same name won't help, so you'll need to create a new folder (by whatever name you like, wherever you like), and then run the SpamBayes Manager to tell SpamBayes about it. Click the SpamBayes button on the Outlook toolbar, select SpamBayes Manager from the menu, click the Filtering tab, and set the controls in Certain Spam section appropriately. (I'm using a later alpha version of SpamBayes, so my directions may not be completely accurate for 1.0.4.) -----Original Message----- From: spambayes-bounces at python.org [mailto:spambayes-bounces at python.org] On Behalf Of ml at bortal.de Sent: Wednesday, July 02, 2008 4:05 AM To: spambayes at python.org Subject: [Spambayes] The spam folder is invalid: MsgStoreException Hello List, we are using Outlook XP and Spambayes 1.0.4. When starting Outlook i get the error: "The spam folder is invalid: MsgStoreException: Exception 0x80004005 (unbekannter fehler): Unbekannter Fehler" I _guess_ the spam folder was renamed, deleted or moved. Where can i find out what folder spambayes is looking for in order to create it again?! How could i fix this otherwise? Reinstalling Spambayes did not help. Thanks, Mario _______________________________________________ SpamBayes at python.org http://mail.python.org/mailman/listinfo/spambayes Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes Check the FAQ before asking: http://spambayes.sf.net/faq.html From paulhuffsteter at gmail.com Wed Jul 2 23:06:43 2008 From: paulhuffsteter at gmail.com (paulhuffsteter at gmail.com) Date: Wed, 2 Jul 2008 14:06:43 -0700 Subject: [Spambayes] NEC-2008 - National Electrical Code 2008 / 864 pages, Message-ID: <002601c8dc87$88becb00$4701a8c0@cheekymouthful> How can I get this download? -------------- next part -------------- An HTML attachment was scrubbed... URL: From rojo.editor at verizon.net Thu Jul 3 00:04:41 2008 From: rojo.editor at verizon.net (Joel Rosenthal) Date: Wed, 02 Jul 2008 17:04:41 -0500 (CDT) Subject: [Spambayes] NEC-2008 - National Electrical Code 2008 / 864 pages, Message-ID: <16700607.8595571215036281407.JavaMail.javamailuser@localhost> Why on Earth would you send a request for the National Electrical Code to Spambayes? On Wed, Jul 2, 2008 at 5:06 PM, paulhuffsteter at gmail.com wrote: How can I get this download? ------------------------------ _______________________________________________ SpamBayes at python.org ? http://mail.python.org/mailman/listinfo/spambayes ? Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes ? Check the FAQ before asking: http://spambayes.sf.net/faq.html ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Thu Jul 3 00:39:27 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Thu, 03 Jul 2008 00:39:27 +0200 Subject: [Spambayes] NEC-2008 - National Electrical Code 2008 / 864 pages, In-Reply-To: <16700607.8595571215036281407.JavaMail.javamailuser@localhost> References: <16700607.8595571215036281407.JavaMail.javamailuser@localhost> Message-ID: <1215038367.27326.0.camel@localhost> Op woensdag 02-07-2008 om 17:04 uur [tijdzone -0500], schreef Joel Rosenthal: > Why on Earth would you send a request for the National Electrical > Code to Spambayes? > > On Wed, Jul 2, 2008 at 5:06 PM, paulhuffsteter at gmail.com wrote: > > How can I get this download? > Because he is a spammer and this mailinglist is about antispam software? ;-) From agriffin at aug.com Fri Jul 4 00:42:01 2008 From: agriffin at aug.com (Annelle Griffin) Date: Thu, 3 Jul 2008 18:42:01 -0400 Subject: [Spambayes] NEED HELP!!!!!!!!! Message-ID: <000a01c8dd5e$050299e0$6401a8c0@STATIONZ> Per Kim Komando newsletter, I have just downloaded & installed SpamBayes 1.0.4.............was so excited to have a free spam filter - uninstalled Norton Internet Security a few weeks ago, I'm being bombarded with spam. I have Windows XP, Outlook Express, ver 6.00.2900.2180. Have read all instructions (On page headed "SpamBayes Outlook Plugion" to get it started, but I think they must refer to Outlook Express 7, as none of instructions in the "Viewing & Using the Spam Score Field" section match what I have! I am at a complete loss....help! Thanks, Annelle Griffin, St. Aug., FL _______________________________________ No viruses found in this outgoing message Scanned by iolo AntiVirus 1.5.3.5 http://www.iolo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From mhammond at skippinet.com.au Fri Jul 4 02:36:16 2008 From: mhammond at skippinet.com.au (Mark Hammond) Date: Fri, 4 Jul 2008 10:36:16 +1000 Subject: [Spambayes] NEED HELP!!!!!!!!! In-Reply-To: <000a01c8dd5e$050299e0$6401a8c0@STATIONZ> References: <000a01c8dd5e$050299e0$6401a8c0@STATIONZ> Message-ID: <037501c8dd6d$fad81ca0$f08855e0$@com.au> Note that "Outlook Express" isn't the same as Outlook. so it can't use the plugin. Please see http://spambayes.sourceforge.net/faq.html#does-spambayes-work-with-outlook-e xpress for more information. Cheers, Mark From: spambayes-bounces at python.org [mailto:spambayes-bounces at python.org] On Behalf Of Annelle Griffin Sent: Friday, 4 July 2008 8:42 AM To: spambayes at python.org Subject: [Spambayes] NEED HELP!!!!!!!!! Importance: High Per Kim Komando newsletter, I have just downloaded & installed SpamBayes 1.0.4.............was so excited to have a free spam filter - uninstalled Norton Internet Security a few weeks ago, I'm being bombarded with spam. I have Windows XP, Outlook Express, ver 6.00.2900.2180. Have read all instructions (On page headed "SpamBayes Outlook Plugion" to get it started, but I think they must refer to Outlook Express 7, as none of instructions in the "Viewing & Using the Spam Score Field" section match what I have! I am at a complete loss....help! Thanks, Annelle Griffin, St. Aug., FL _____ No viruses found in this outgoing message Scanned by iolo AntiVirus 1.5.3.5 http://www.iolo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mdbinnyc at aol.com Fri Jul 4 03:27:13 2008 From: Mdbinnyc at aol.com (Mdbinnyc at aol.com) Date: Thu, 3 Jul 2008 21:27:13 EDT Subject: [Spambayes] retrieving a deleted spam e-mail Message-ID: please let us know how we can retrieve deleted spam that was deleted from our mail on 7/3/2008. **************Gas prices getting you down? Search AOL Autos for fuel-efficient used cars. (http://autos.aol.com/used?ncid=aolaut00050000000007) -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Fri Jul 4 20:29:50 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Fri, 04 Jul 2008 20:29:50 +0200 Subject: [Spambayes] retrieving a deleted spam e-mail In-Reply-To: References: Message-ID: <1215196190.6654.1.camel@localhost> Op donderdag 03-07-2008 om 21:27 uur [tijdzone -0400], schreef Mdbinnyc at aol.com: > please let us know how we can retrieve deleted spam that was deleted > from our mail on 7/3/2008. You just undelete it from your "Deleted Items" folder. Spambayes does not delete emails. -- Amedee From longdawg at cox.net Sun Jul 6 09:18:05 2008 From: longdawg at cox.net (longdawg) Date: Sun, 06 Jul 2008 00:18:05 -0700 Subject: [Spambayes] question Message-ID: <487071AD.7060303@cox.net> hi y'all.... i prefer my netscape browser and netscape mail to IE and whatever-mail-program. (i know - i know... my head must be screwed on backwards - maybe both of them are). will SpamBayes work with this or will i be forced to kick and scream and holler and use the clunky, hard-to-manage microsoft products? thanks much.... longdawg -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Sun Jul 6 15:17:13 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Sun, 06 Jul 2008 15:17:13 +0200 Subject: [Spambayes] question In-Reply-To: <487071AD.7060303@cox.net> References: <487071AD.7060303@cox.net> Message-ID: <1215350233.13219.6.camel@localhost> Op zondag 06-07-2008 om 00:18 uur [tijdzone -0700], schreef longdawg: > hi y'all.... > > i prefer my netscape browser and netscape mail to IE and > whatever-mail-program. (i know - i know... my head must be screwed on > backwards - maybe both of them are). will SpamBayes work with this or > will i be forced to kick and scream and holler and use the clunky, > hard-to-manage microsoft products? According to your mail header, you are using hard-to-manage Microsoft products: ? Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) Why not totally dump Windows and use Linux or OSX or FreeBSD or OpenSolaris? ;-) Anyway, AFAIK Netscape is EOL. Why not use Mozilla Thunderbird and Mozilla Firefox, from the same company? I'm a 100% Linux user (at home), and I'm a Spambayes user. That should give you if you need Microsoft products for Spambayes. You don't. You can use Spambayes as a POP or IMAP proxy. It's described in the documentation on the website. Or switch to Linux and use it as a procmail filter, like I do. Have fun! -- Amedee From fhoegler43 at mybluelight.com Sun Jul 6 19:07:04 2008 From: fhoegler43 at mybluelight.com (Frank & Angie Hoegler) Date: Sun, 06 Jul 2008 11:07:04 -0600 Subject: [Spambayes] Thunderbayes options Message-ID: <4870FBB8.5090007@mybluelight.com> I'm using Thunderbayes and in the tools>add-ons>thunderbayes options when I try to direct "spam" and "ham" to another folder it always reverts back to the default folders "spam on local folders " and "Inbox on local folders" Thank, Frank --- avast! Antivirus: Outbound message clean. Virus Database (VPS): 080705-0, 07/05/2008 Tested on: 7/6/2008 11:07:07 AM avast! - copyright (c) 1988-2008 ALWIL Software. http://www.avast.com ____________________________________________________________ Free information on a POS system that meets your needs. Click here. http://thirdpartyoffers.mybluelight.com/TGL2341/fc/Ioyw6i5zv3QXAG2fsspYczgLoLjpGA4ViZjP8FevqkUgb4UKBoCrbh/ From jfelts at centex.net Mon Jul 7 03:31:21 2008 From: jfelts at centex.net (John Felts) Date: Sun, 6 Jul 2008 20:31:21 -0500 Subject: [Spambayes] the program Message-ID: <000601c8dfd1$29a42000$020fa8c0@CPQ16496304923> The description that I read before I installed SpamBayes said it would work with Outlook Express, but since installing, it does not seem to work at all. When I look at the troubleshooting, only Outlook is mentioned (not Express). Help please. Thanks, John -------------- next part -------------- An HTML attachment was scrubbed... URL: From jfelts at centex.net Mon Jul 7 03:35:45 2008 From: jfelts at centex.net (John Felts) Date: Sun, 6 Jul 2008 20:35:45 -0500 Subject: [Spambayes] ps program Message-ID: <000801c8dfd1$c6e05a50$020fa8c0@CPQ16496304923> The description that I read before I installed SpamBayes said it would work with Outlook Express, but since installing, it does not seem to work at all. When I look at the troubleshooting, only Outlook is mentioned (not Express). Help please. Thanks, John PS -- my computer does not have a c:\windows\application data folder. -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Mon Jul 7 13:33:32 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Mon, 7 Jul 2008 13:33:32 +0200 (CEST) Subject: [Spambayes] ps program In-Reply-To: <000801c8dfd1$c6e05a50$020fa8c0@CPQ16496304923> References: <000801c8dfd1$c6e05a50$020fa8c0@CPQ16496304923> Message-ID: <2371.143.169.166.114.1215430412.squirrel@intrepid.warp.be> On Mon, July 7, 2008 03:35, John Felts wrote: > The description that I read before I installed SpamBayes said it would > work with Outlook Express, but since installing, it does not seem to work > at all. When I look at the troubleshooting, only Outlook is mentioned (not > Express). Help please. > Thanks, John > PS -- my computer does not have a c:\windows\application data > folder._______________________________________________ http://spambayes.sourceforge.net/faq.html#does-spambayes-work-with-outlook-express http://spambayes.sourceforge.net/faq.html#how-do-i-set-up-spambayes-and-outlook-express From jsp at PKC.com Mon Jul 7 14:19:04 2008 From: jsp at PKC.com (Jesse Pelton) Date: Mon, 7 Jul 2008 08:19:04 -0400 Subject: [Spambayes] Thunderbayes options In-Reply-To: <4870FBB8.5090007@mybluelight.com> References: <4870FBB8.5090007@mybluelight.com> Message-ID: <16E2027582CDB74180896CDB4B8CC1F906D0B2DF@PKCVT01.pkc.com> Sounds like a problem in ThunderBayes, which is distinct from SpamBayes. https://addons.mozilla.org/en-US/thunderbird/addon/4025 says ThunderBayes "1.0.1 is a bug fix release. It fixes issues with loading and saving ThunderBayes settings." If you don't have that version, an upgrade might fix your problem. Otherwise, you should probably contact the ThunderBayes developers. -----Original Message----- From: spambayes-bounces at python.org [mailto:spambayes-bounces at python.org] On Behalf Of Frank & Angie Hoegler Sent: Sunday, July 06, 2008 1:07 PM To: spambayes at python.org Subject: [Spambayes] Thunderbayes options I'm using Thunderbayes and in the tools>add-ons>thunderbayes options when I try to direct "spam" and "ham" to another folder it always reverts back to the default folders "spam on local folders " and "Inbox on local folders" Thank, Frank --- avast! Antivirus: Outbound message clean. Virus Database (VPS): 080705-0, 07/05/2008 Tested on: 7/6/2008 11:07:07 AM avast! - copyright (c) 1988-2008 ALWIL Software. http://www.avast.com ____________________________________________________________ Free information on a POS system that meets your needs. Click here. http://thirdpartyoffers.mybluelight.com/TGL2341/fc/Ioyw6i5zv3QXAG2fsspYc zgLoLjpGA4ViZjP8FevqkUgb4UKBoCrbh/ _______________________________________________ SpamBayes at python.org http://mail.python.org/mailman/listinfo/spambayes Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes Check the FAQ before asking: http://spambayes.sf.net/faq.html From amedee at amedee.be Mon Jul 7 17:51:00 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Mon, 07 Jul 2008 17:51:00 +0200 Subject: [Spambayes] ps program In-Reply-To: <000f01c8e03b$a7a1cbf0$020fa8c0@CPQ16496304923> References: <000801c8dfd1$c6e05a50$020fa8c0@CPQ16496304923> <2371.143.169.166.114.1215430412.squirrel@intrepid.warp.be> <000f01c8e03b$a7a1cbf0$020fa8c0@CPQ16496304923> Message-ID: <1215445860.6968.1.camel@localhost> Op maandag 07-07-2008 om 09:13 uur [tijdzone -0500], schreef John Felts: > Thanks a lot for your reply. I've already downloaded & run the > installer, so I can't now choose "sb-server" (I guess). I can't use > Outlook itself since there's something missing from my computer about > it. I like Express, but spam irritates me. > Sincerely, John Please reply to the mailinglist, not to me personally. Use "reply all" if you do not understand what "reply to mailinglist" means. -- Amedee From skip at pobox.com Mon Jul 7 21:35:46 2008 From: skip at pobox.com (skip at pobox.com) Date: Mon, 7 Jul 2008 14:35:46 -0500 Subject: [Spambayes] Thunderbayes options In-Reply-To: <16E2027582CDB74180896CDB4B8CC1F906D0B2DF@PKCVT01.pkc.com> References: <4870FBB8.5090007@mybluelight.com> <16E2027582CDB74180896CDB4B8CC1F906D0B2DF@PKCVT01.pkc.com> Message-ID: <18546.28690.512762.863668@montanaro-dyndns-org.local> Jesse> Sounds like a problem in ThunderBayes, which is distinct from Jesse> SpamBayes. https://addons.mozilla.org/en-US/thunderbird/addon/4025 Jesse> says ThunderBayes "1.0.1 is a bug fix release. It fixes issues with Jesse> loading and saving ThunderBayes settings." If you don't have that Jesse> version, an upgrade might fix your problem. Otherwise, you should Jesse> probably contact the ThunderBayes developers. I exchanged email with the ThunderBayes author several months ago about sucking its source into the SpamBayes repository. He's discontinued development, so it makes some sense to pick it up. OTOH, the SpamBayes crew isn't overburdened with developers just sitting around twiddling their thumbs, so we might not be able to give it much more love than it's currently receiving. Is there *anyone* in the SpamBayes community with an interest in ThunderBayes and some time to devote to making sure it works with the current version of SpamBayes? Since it's (probably?) written in JavaScript it might be worthwhile to cast our net into that community. -- Skip Montanaro - skip at pobox.com - http://www.webfast.com/~skip/ ------ ELON MUSK: If fuel cells were good, don't think you'd see them somewhere, like maybe in a laptop or a cell phone or a $200 million military satellite maybe? And yet, where do you see them? SPENCER MICHELS: You don't. ELON MUSK: Exactly. Jesse> -----Original Message----- Jesse> From: spambayes-bounces at python.org [mailto:spambayes-bounces at python.org] Jesse> On Behalf Of Frank & Angie Hoegler Jesse> Sent: Sunday, July 06, 2008 1:07 PM Jesse> To: spambayes at python.org Jesse> Subject: [Spambayes] Thunderbayes options Jesse> I'm using Thunderbayes and in the tools>add-ons>thunderbayes options Jesse> when I try to direct "spam" and "ham" to another folder it always Jesse> reverts back to the default folders "spam on local folders " and "Inbox Jesse> on local folders" Jesse> Thank, Frank Jesse> --- Jesse> avast! Antivirus: Outbound message clean. Jesse> Virus Database (VPS): 080705-0, 07/05/2008 Jesse> Tested on: 7/6/2008 11:07:07 AM Jesse> avast! - copyright (c) 1988-2008 ALWIL Software. Jesse> http://www.avast.com Jesse> ____________________________________________________________ Jesse> Free information on a POS system that meets your needs. Click here. Jesse> http://thirdpartyoffers.mybluelight.com/TGL2341/fc/Ioyw6i5zv3QXAG2fsspYc Jesse> zgLoLjpGA4ViZjP8FevqkUgb4UKBoCrbh/ Jesse> _______________________________________________ Jesse> SpamBayes at python.org Jesse> http://mail.python.org/mailman/listinfo/spambayes Jesse> Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes Jesse> Check the FAQ before asking: http://spambayes.sf.net/faq.html Jesse> _______________________________________________ Jesse> SpamBayes at python.org Jesse> http://mail.python.org/mailman/listinfo/spambayes Jesse> Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes Jesse> Check the FAQ before asking: http://spambayes.sf.net/faq.html From info at thegrantinstitute.com Mon Jul 7 21:52:48 2008 From: info at thegrantinstitute.com (Anthony Jones) Date: 07 Jul 2008 12:52:48 -0700 Subject: [Spambayes] Professional Grant Proposal Workshop (September 2008: Miami, Florida) Message-ID: <20080707125248.C085CBAF9E683003@thegrantinstitute.com> An HTML attachment was scrubbed... URL: From Denversdot at aol.com Tue Jul 8 01:08:15 2008 From: Denversdot at aol.com (Denversdot at aol.com) Date: Mon, 7 Jul 2008 19:08:15 EDT Subject: [Spambayes] Help......on deleted mail Message-ID: I have deleted a spam email by mistake. I use aol 9.0. How do I get it back? I see no deleted folder> where do I find that? Thanks, Dot **************Gas prices getting you down? Search AOL Autos for fuel-efficient used cars. (http://autos.aol.com/used?ncid=aolaut00050000000007) -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Tue Jul 8 13:02:45 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Tue, 8 Jul 2008 13:02:45 +0200 (CEST) Subject: [Spambayes] Help......on deleted mail In-Reply-To: References: Message-ID: <24172.193.121.250.194.1215514965.squirrel@amedee.be> On Tue, July 8, 2008 01:08, Denversdot at aol.com wrote: > I have deleted a spam email by mistake. I use aol 9.0. How do I get it > back? > I see no deleted folder> where do I find that? SpamBayes does not delete emails. To recover a deleted email, restore it from your "deleted items" folder, or restore it from a recent backup. -- Amedee From amedee at amedee.be Wed Jul 9 09:32:06 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Wed, 9 Jul 2008 09:32:06 +0200 (CEST) Subject: [Spambayes] ps program In-Reply-To: References: <000801c8dfd1$c6e05a50$020fa8c0@CPQ16496304923> <2371.143.169.166.114.1215430412.squirrel@intrepid.warp.be> <000f01c8e03b$a7a1cbf0$020fa8c0@CPQ16496304923> <1215445860.6968.1.camel@localhost> Message-ID: <1469.193.121.250.194.1215588726.squirrel@intrepid.warp.be> On Tue, July 8, 2008 13:29, ???????? ?????????????? wrote: > 2008/7/7, Amedee Van Gasse : >> >> Op maandag 07-07-2008 om 09:13 uur [tijdzone -0500], schreef John Felts: >> > Thanks a lot for your reply. I've already downloaded & run the >> > installer, so I can't now choose "sb-server" (I guess). I can't use >> > Outlook itself since there's something missing from my computer about >> > it. I like Express, but spam irritates me. >> > Sincerely, John >> >> Please reply to the mailinglist, not to me personally. >> Use "reply all" if you do not understand what "reply to mailinglist" >> means. >> >> -- >> Amedee >> >> _______________________________________________ >> SpamBayes at python.org >> http://mail.python.org/mailman/listinfo/spambayes >> Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes >> Check the FAQ before asking: http://spambayes.sf.net/faq.html >> > > > > -- > ???????? ?????????????? > I'm sorry, I don't understand. Was there anything you wanted to say? From helen at nstnetwork.com Wed Jul 9 10:51:07 2008 From: helen at nstnetwork.com (helen at nstnetwork.com) Date: Wed, 9 Jul 2008 16:51:07 +0800 Subject: [Spambayes] Sell Cisco Systems equipment items Message-ID: <20080709095424.722FF1A8F32@Linux-Mail.com> Hello, We have following original Cisco,Card,GBIC/SFP,WIC,cables items for sale If you are interested, pls feel free to contact me. example of the products: CWDM-SFP-1G 39dB (Ultra long-haul)--1510nm,1530nm,1550nm,1570nm,1590nm,1610nm WS-G5483, GLC-SX-MM SFP-GE-L WS-G5487, WS-G5484, WS-G5486, GLC-SX-MM, GLC-LH-SM, GLC-ZX-SM, GLC-T, ...... NM-2FE2W-T1, NM-2FE2W-E1, NM-2FE2W-V2, WIC-1T, WIC-2T, WIC-2A/S, WIC-1B/ST, WIC-1ENET, VWIC-1MFT-T1, VWIC-1MFT-E1, VWIC-2MFT-T1, VWIC-2MFT-E1, VWIC-1MFT-G703, VWIC-2MFT-G703, VWIC-1MFT-T1-DI, VWIC-2MFT-T1-DI, NM-1E, NM-4E, ...... WS-C2950-24, WS-C2950T-24, WS-C2950G-24-EI, WS-C2950G-48-EI, ...... CONSOLE CABLE, CAB-STACK-1M/3M, CAB-V35MT, CAB-V35FC, CAB-SS-V.35MT, CAB-SS-V.35FC, CAB-SS-232MT, CAB-SS-232FC, CAB-232MT, CAB-232FC, CAB-SS-X21MT, CAB-SS-X21FC, CAB-X21MT, ...... MEM-npe400-512MB, MEM-3660-128mb, MEM2600-32D, MEM2600-16FS, MEM2600XM-64D, MEM-S1-128MB, MEM-S2-256MB, MEM-S2-512MB, MEM-MSFC-128MB, MEM2801-256D, MEM3800-256D, MEM3800-512, MEM3745-256D, MEM1841-256D, MEM180X-256D, WS-X6K-MSFC2-KIT, .... and so on. Regards Helen.Zhou NEWSTAR NETWORKING TECHNOLOGY www.nstnetwork.com MSN: Helen at nstnetwork.com Email: Helen at nstnetwork.com AOL helenxuezhou Icq 320-880-606 From mrars at bigpond.com Mon Jul 14 15:15:24 2008 From: mrars at bigpond.com (Mark Hutchinson) Date: Mon, 14 Jul 2008 22:45:24 +0930 Subject: [Spambayes] Problem - SpamBayes tool bar not responding Message-ID: <000001c8e5b3$adb6bc80$0100000a@HUTCHINSONPC> Have run SpamBayes for several years and think it is excellent. Have hit a problem that mystifies me. The plug-in has stopped working, and I can't get it going again because the SpamBayes tool bar does not respond - can't get to its menus. Have tried de-installing and reinstalling. No change. Had a look at the FAQs but nothing there seemed to match what I was seeing. Help. Mark Hutchinson -------------- next part -------------- An HTML attachment was scrubbed... URL: From skip at pobox.com Tue Jul 15 13:42:39 2008 From: skip at pobox.com (skip at pobox.com) Date: Tue, 15 Jul 2008 06:42:39 -0500 Subject: [Spambayes] Problem - SpamBayes tool bar not responding In-Reply-To: <000001c8e5b3$adb6bc80$0100000a@HUTCHINSONPC> References: <000001c8e5b3$adb6bc80$0100000a@HUTCHINSONPC> Message-ID: <18556.36143.876748.899178@montanaro-dyndns-org.local> Mark> Have run SpamBayes for several years and think it is excellent. Mark> Have hit a problem that mystifies me. The plug-in has stopped Mark> working, and I can't get it going again because the SpamBayes tool Mark> bar does not respond - can't get to its menus. Have tried Mark> de-installing and reinstalling. No change. Mark> Had a look at the FAQs but nothing there seemed to match what I Mark> was seeing. Mark, Try manually deleting your training database and retraining from scratch. Your database is probably corrupt. -- Skip Montanaro - skip at pobox.com - http://www.webfast.com/~skip/ ------ ELON MUSK: If fuel cells were good, don't think you'd see them somewhere, like maybe in a laptop or a cell phone or a $200 million military satellite maybe? And yet, where do you see them? SPENCER MICHELS: You don't. ELON MUSK: Exactly. From DWilliams at menath.com Wed Jul 16 17:21:25 2008 From: DWilliams at menath.com (Debra Williams) Date: Wed, 16 Jul 2008 08:21:25 -0700 Subject: [Spambayes] (no subject) Message-ID: <000001c8e757$a21957c0$2901a8c0@menath.int> Debra Williams, License #563659 Life & Health Account Manager Mike Menath Insurance, Inc. 931 Tahoe Blvd, Ste 4 Incline Village, NV 89451 Tel 775-831-3132 x 1124 * 800-756-6507 Fax 775-831-6235 CONFIDENTIALITY -- This message is intended to be confidential and directed only to the person/entity as addressed above. If the reader of this message is not the intended recipient, or as the employee or agent responsible for delivering it to the intended recipient you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this message in error, please reply by e-mail to inform us and delete any copies from your hard drive. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From fianoblaise at rocketmail.com Wed Jul 16 22:04:22 2008 From: fianoblaise at rocketmail.com (Dr. Blaise Fiano) Date: Wed, 16 Jul 2008 13:04:22 -0700 (PDT) Subject: [Spambayes] A HIGH IMPORTANT MAIL Message-ID: <941088.84126.qm@web59812.mail.ac4.yahoo.com> FROM : DR?BLAISE FIANO?(AUDITING DEPARTMENT) ECOWAS BANK FOR INVESTMENT AND DEVELOPEMENT. LOME TOGO. TEL:(00228) 929 55 07. Attn/Friend , Please I would appreciate your urgent call after you go through my mail.I have a proposal for you - this however is not mandatory nor will I in any manner compel you to honour against your will. I am 50, and work with a bank (one of the African leading Banks in the West Coast). Here in this Bank existed a dormant account for the past 8 years which belong to an American national who is now late Mr.Raymond Beck. Mr Raymond Beck however died on EgyptAir Flight 990. Please view related site: http://en.wikipedia.org/wiki/EgyptAir_Flight_990 http://www.cnn.com/US/9910/31/egyptair.04/ http://www.ntsb.gov/events/ea990/default.htm http://news.bbc.co.uk/1/world/americas/502503.stm http://www.cbsnews.com/stories/1999/11/01/iran/main49778.shtml There have not been any withdrawals from this account for this long period, I decided to carry out a system investigation and discovered that non of the family member nor relations of the late person is aware of this account. This is the story in a nutshell. Now I want an account overseas where the bank will transfer this funds.Thereafter, I had planned to destroy all related documents for this account. It is a careful network and for the past eleven months I have worked out everything to ensure a hitch-free operation. The amount is not so much at the moment and plus all the accumulated interest the balance in this account stands at-(US$ 9.5 million US dollars). Now my questions are:- 1. Can you handle this project? 2. Can I give you this trust? 3. What will be your commission? If you can sponsor this transfer. 4. mail with phone & fax number........... Consider this and get back to?me as soon as possible. Finally, it is my humble prayer that the information as contained herein be accorded the necessary attention, urgency as well as the secrecy it deserves. I Expect your urgent response if you can handle this project. after sending a mail for confirmation. Respectfully yours, Dr Blaise Fiano. (00228) 929 55 07 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sheila3 at sky.com Wed Jul 16 22:57:57 2008 From: sheila3 at sky.com (Sheila Sharratt) Date: Wed, 16 Jul 2008 21:57:57 +0100 Subject: [Spambayes] Enroll your card with Verify By Visa program Message-ID: <000001c8e786$aa4658b0$0200a8c0@shala79bf8687d> No virus found in this outgoing message. Checked by AVG. Version: 7.5.524 / Virus Database: 270.5.0/1555 - Release Date: 16/07/2008 06:43 -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Thu Jul 17 10:21:50 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Thu, 17 Jul 2008 10:21:50 +0200 (CEST) Subject: [Spambayes] (no subject) In-Reply-To: <000001c8e757$a21957c0$2901a8c0@menath.int> References: <000001c8e757$a21957c0$2901a8c0@menath.int> Message-ID: <26747.193.121.250.194.1216282910.squirrel@intrepid.warp.be> ***** IMPORTANT INFORMATION/DISCLAIMER ***** This document should be read only by those persons to whom it is addressed. If you have received this message it was obviously addressed to you and therefore you can read it, even it we didn't mean to send it to you. However, if the contents of this email make no sense whatsoever then you probably were not the intended recipient, or, you are a mindless cretin; either way, you should immediately delete yourself & destroy your computer! Once you have taken this action please contact us.. no you idiot, you cant use your computer, you just destroyed it, and by the way, you are also deleted, but we digress...... The Originator of this email is not liable for the transmission of the information contained in this communication, unless they are the originator in which case they probably are liable and rightly so considering the content of the aforementioned communication. In the event that the originator did not send this email to you, then please return it to us and attach a scanned-in picture of your mothers brothers wife wearing nothing but cami-knickers, and we will immediately refund you exactly half of what you paid for the can of Pal Meaty-Bites you bought when you went to Woolies yesterday. We take no responsibility for non-receipt of this email because we are running Windows NT & everyone knows how glitchy that can be. In the event that you do get this message then please note that we take no responsibility for that either. Nor will we accept any liability, tacit or implied, for any damage you may or may not incur as a result of receiving, or not, as the case may be, from time to time, notwithstanding all liabilities implied or otherwise, ummm, shit, where was I... umm, no matter what happens, IT'S NOT, and NEVER WILL BE, OUR FAULT! The comments & opinions expressed herein are my own and NOT those of my employer, who, if he knew I was sending emails and surfing porno sites,would cut off my gonads and feed them to me for afternoon tea. On Wed, July 16, 2008 17:21, Debra Williams wrote: > > > > > Debra Williams, License #563659 > Life & Health Account Manager > Mike Menath Insurance, Inc. > 931 Tahoe Blvd, Ste 4 > Incline Village, NV 89451 > Tel 775-831-3132 x 1124 * 800-756-6507 > Fax 775-831-6235 > > CONFIDENTIALITY -- This message is intended to be confidential and > directed > only to the person/entity as addressed above. If the reader of this > message is not the intended recipient, or as the employee or agent > responsible for delivering it to the intended recipient you are hereby > notified that any dissemination, distribution or copying of this > communication is strictly prohibited. If you have received this message > in > error, please reply by e-mail to inform us and delete any copies from your > hard drive. Thank you. > > > > _______________________________________________ > SpamBayes at python.org > http://mail.python.org/mailman/listinfo/spambayes > Info/Unsubscribe: http://mail.python.org/mailman/listinfo/spambayes > Check the FAQ before asking: http://spambayes.sf.net/faq.html From bill.hely at helyholdings.com Sun Jul 20 01:22:44 2008 From: bill.hely at helyholdings.com (Bill Hely) Date: Sun, 20 Jul 2008 09:22:44 +1000 Subject: [Spambayes] NEO: Nelson e-mail organiser Message-ID: Does anybody have any experience of using SpamBayes with Nelson E-Mail Organiser, aka NEO Pro: http://www.caelo.com It's an add-on to Microsoft Outlook 98/2000/2002(XP)/2003/2007 - POP3 only, not IMAP. I'm guessing it should work OK, but one of our members who is committed to Neo Pro and is contemplating installing SpamBayes understandably would like confirmation first. I've been intending to check out Neo Pro for some time now as it looks like a significant productivity booster, but unfortunately just haven't had time to get around to it. Anyone? TIA From amedee at amedee.be Sun Jul 20 10:04:29 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Sun, 20 Jul 2008 10:04:29 +0200 (CEST) Subject: [Spambayes] NEO: Nelson e-mail organiser In-Reply-To: References: Message-ID: <37126.81.82.2.91.1216541069.squirrel@intrepid.warp.be> On Sun, July 20, 2008 01:22, Bill Hely wrote: > > Does anybody have any experience of using SpamBayes with Nelson E-Mail > Organiser, aka NEO Pro: http://www.caelo.com > > It's an add-on to Microsoft Outlook 98/2000/2002(XP)/2003/2007 - POP3 > only, > not IMAP. > > I'm guessing it should work OK, but one of our members who is committed to > Neo Pro and is contemplating installing SpamBayes understandably would > like > confirmation first. > > I've been intending to check out Neo Pro for some time now as it looks > like > a significant productivity booster, but unfortunately just haven't had > time > to get around to it. > > Anyone? Chances are that you are the first person ever to try the combination Outlook+Spambayes+Neo Pro, if you didn't find any reference to it in the mailing list archive. Just try it and report back to the mailing list. I can't imagine why it wouldn't work, because Spambayes is a cleanly written program. -- Amedee From willl at planet.nl Wed Jul 23 11:43:07 2008 From: willl at planet.nl (W.Spapens) Date: Wed, 23 Jul 2008 11:43:07 +0200 Subject: [Spambayes] (no subject) Message-ID: <000601c8eca8$82f6c390$0202a8c0@acera0b1a665a8> dank u zeer -------------- next part -------------- An HTML attachment was scrubbed... URL: From vinograd at multics.org Wed Jul 23 18:07:15 2008 From: vinograd at multics.org (David Vinograd) Date: Wed, 23 Jul 2008 12:07:15 -0400 Subject: [Spambayes] Backward compatibility Message-ID: People, Have been using spambayes for a number of years with great success and look forward to the next release. If I install 1.1a4, how do I revert to 1.0.4 if there is a problem? The 1.1 installer mentions a DB conversion, which is where I stopped, pending an answer. Dave -------------------------------------------- David Vinograd vinograd.multics.org vinograd at multics.org 128 Richmond Hill 8 Grassy Path Richmond Peaks Island TW10 6RN Portland ME 04108 44-(0)208-940-5723 1-(1)-207-766-5840 No virus found in this outgoing message. Checked by AVG - http://www.avg.com Version: 8.0.138 / Virus Database: 270.5.5/1568 - Release Date: 7/23/2008 6:55 AM From paloma.fernandez-varela at synchrotron-soleil.fr Fri Jul 25 14:30:18 2008 From: paloma.fernandez-varela at synchrotron-soleil.fr (FERNANDEZ-VARELA Paloma) Date: Fri, 25 Jul 2008 14:30:18 +0200 Subject: [Spambayes] Filters don't work Message-ID: Hello, When I start Outlook I receive a message indicating that SpamBayes could not be initialized. Why I can solve the problem? I cannot find any spambayes*.log files Thank you, Paloma Paloma FERNANDEZ-VARELA Responsable du Laboratoire de Biologie Synchrotron SOLEIL L'Orme des Merisiers Saint Aubin BP 48 F-91192 GIF-sur-YVETTE Cedex T.bureau:+33(0)1 69 35 97 28 T.labo: +33(0)1 69 35 97 79 Mobile: +33(0)6 31 95 69 59 Fax: +33(0)1 69 35 94 56 -------------- next part -------------- An HTML attachment was scrubbed... URL: From areyes16 at coqui.net Sun Jul 27 03:21:15 2008 From: areyes16 at coqui.net (Angel Reyes) Date: Sat, 26 Jul 2008 21:21:15 -0400 Subject: [Spambayes] NEC-2008 - National Electrical Code 2008 / 864 pages, Download now Message-ID: <000001c8ef87$1106f070$3314d150$@net> -------------- next part -------------- An HTML attachment was scrubbed... URL: From skip at pobox.com Sun Jul 27 16:00:43 2008 From: skip at pobox.com (skip at pobox.com) Date: Sun, 27 Jul 2008 09:00:43 -0500 Subject: [Spambayes] How to retrain from scratch in pop3 web interface? Message-ID: <18572.32651.66951.343483@montanaro-dyndns-org.local> I've used the pop3 proxy's web interface as the GUI for a SpamBayes plugin for Roundup. While I'm the author of the code, other people are responsible for actually twiddling the bits on the server, so I have no access to the SpamByaes instance except through the web interface. I don't see any way to retrain from scratch via that interface. Am I missing something? Thx, Skip From richie at entrian.com Mon Jul 28 10:13:07 2008 From: richie at entrian.com (Richie Hindle) Date: Mon, 28 Jul 2008 09:13:07 +0100 Subject: [Spambayes] [spambayes-dev] How to retrain from scratch in pop3 web interface? In-Reply-To: <18572.32651.66951.343483@montanaro-dyndns-org.local> References: <18572.32651.66951.343483@montanaro-dyndns-org.local> Message-ID: <8a6ba1da0807280113k29526daen5e23938e987e9460@mail.gmail.com> HI Skip, > I've used the pop3 proxy's web interface as the GUI for a SpamBayes plugin > for Roundup. While I'm the author of the code, other people are responsible > for actually twiddling the bits on the server, so I have no access to the > SpamByaes instance except through the web interface. I don't see any way to > retrain from scratch via that interface. Am I missing something? It's been a long time, but no, I don't think you've missed anything. -- Richie Hindle richie at entrian.com From amedee at amedee.be Mon Jul 28 11:45:56 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Mon, 28 Jul 2008 11:45:56 +0200 (CEST) Subject: [Spambayes] Exception bsddb.db.DBAccessError Message-ID: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> Hi, I get a lot of these in my procmail logfile: >From rvb+bounces-6042-amedee=tik.be at pub.telenet.be Sun Jul 6 07:24:39 2008 Subject: -=: Buy 88% Cheaper pills online from US DrugStore! FREE 4 Bonus BLUE Folder: /dev/null 3500 Exception bsddb.db.DBAccessError: (13, 'Permission denied -- DB->put: attempt to modify a read-only database') in > ignored Spambayes is invoked in .procmailrc by: :0 fw:hamlock * < 1000000 | /usr/bin/sb_filter.py -o Headers:include_evidence:True -d $HOME/.hammiedb $HOME/.hammiedb seems to have proper permissions: amedee at intrepid { ~ }$ ls -al .hammiedb -rw-rw-rw- 1 amedee users 10539008 2008-07-27 23:50 .hammiedb The last update time, 2008-07-27 23:50, is from when I last ran sb_mboxtrain.py using a cron job: 50 23 * * * /usr/bin/sb_mboxtrain.py -g /home/amedee/Maildir/.ztrain.confirmed-ham -s /home/amedee/Maildir/.ztrain.confirmed-spam -n -r > /dev/null 2>&1 What else should I check? Googling for "Exception bsddb.db.DBAccessError HammieFilter.close" didn't give any results. -- Amedee From info at thegrantinstitute.com Mon Jul 28 18:12:30 2008 From: info at thegrantinstitute.com (Anthony Jones) Date: 28 Jul 2008 09:12:30 -0700 Subject: [Spambayes] Professional Grant Proposal Writing Workshop (August 2008: Manchester, New Hampshire) Message-ID: <20080728091230.1F38F7CF781CEA8A@thegrantinstitute.com> An HTML attachment was scrubbed... URL: From richie at entrian.com Mon Jul 28 21:31:25 2008 From: richie at entrian.com (Richie Hindle) Date: Mon, 28 Jul 2008 20:31:25 +0100 Subject: [Spambayes] Professional Grant Proposal Writing Workshop (August 2008: Manchester, New Hampshire) In-Reply-To: <20080728091230.1F38F7CF781CEA8A@thegrantinstitute.com> References: <20080728091230.1F38F7CF781CEA8A@thegrantinstitute.com> Message-ID: <8a6ba1da0807281231p2361ebadtf6fa65ed60a3f309@mail.gmail.com> Hi Anthony, Please remove spambayes at python.org from your mailing list. (I asked you to do this on 7 July 2008 via your unlist at thegrantinstitute.com address - perhaps you didn't receive the message?) Thanks, -- Richie Hindle richie at entrian.com From phyllis_s at rothgeb.net Mon Jul 28 23:07:33 2008 From: phyllis_s at rothgeb.net (Phyllis Schenkkan) Date: Mon, 28 Jul 2008 16:07:33 -0500 Subject: [Spambayes] Lost mail Message-ID: Spam has eliminated some emails that I want and I don't know how to retrieve them. I used to have a "Recover from Spam" notation. Thanks. Phyllis Schenkkan From skip at pobox.com Wed Jul 30 04:20:41 2008 From: skip at pobox.com (skip at pobox.com) Date: Tue, 29 Jul 2008 21:20:41 -0500 Subject: [Spambayes] Exception bsddb.db.DBAccessError In-Reply-To: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> References: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> Message-ID: <18575.53241.50274.275444@montanaro-dyndns-org.local> Amedee> Exception bsddb.db.DBAccessError: (13, 'Permission denied -- Amedee> DB->put: attempt to modify a read-only database') in method HammieFilter.close of <__main__.HammieFilter object at Amedee> 0x2afabb1053d0>> ignored Can you open it and manipulate it from a Python session? For example: % python ... >>> import bsddb >>> db = bsddb.hashopen("/home/amedee/.hammiedb") >>> len(db.keys()) Skip From amedee at amedee.be Wed Jul 30 09:44:22 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Wed, 30 Jul 2008 09:44:22 +0200 (CEST) Subject: [Spambayes] Exception bsddb.db.DBAccessError In-Reply-To: <18575.53241.50274.275444@montanaro-dyndns-org.local> References: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> <18575.53241.50274.275444@montanaro-dyndns-org.local> Message-ID: <37382.193.121.250.194.1217403862.squirrel@intrepid.warp.be> On Wed, July 30, 2008 04:20, skip at pobox.com wrote: > > Amedee> Exception bsddb.db.DBAccessError: (13, 'Permission denied -- > Amedee> DB->put: attempt to modify a read-only database') in Amedee> method HammieFilter.close of <__main__.HammieFilter object at > Amedee> 0x2afabb1053d0>> ignored > > Can you open it and manipulate it from a Python session? For example: > > % python > ... > >>> import bsddb > >>> db = bsddb.hashopen("/home/amedee/.hammiedb") > >>> len(db.keys()) > > Skip > > Yes: amedee at intrepid { ~ }$ python Python 2.4.4 (#2, Apr 16 2008, 17:58:59) [GCC 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import bsddb >>> db = bsddb.hashopen("/home/amedee/.hammiedb") >>> len(db.keys()) 222550 >>> -- Amedee From skip at pobox.com Wed Jul 30 19:15:19 2008 From: skip at pobox.com (skip at pobox.com) Date: Wed, 30 Jul 2008 12:15:19 -0500 Subject: [Spambayes] Exception bsddb.db.DBAccessError In-Reply-To: <37382.193.121.250.194.1217403862.squirrel@intrepid.warp.be> References: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> <18575.53241.50274.275444@montanaro-dyndns-org.local> <37382.193.121.250.194.1217403862.squirrel@intrepid.warp.be> Message-ID: <18576.41383.869856.866276@montanaro-dyndns-org.local> >> Can you open it and manipulate it from a Python session? For example: ... Amedee> Yes: ... I see that Dave Abrahams submitted a patch for such an error: https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1803127&group_id=61702 Can you apply it and see if it works for you? Skip From amedee at amedee.be Thu Jul 31 00:01:54 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Thu, 31 Jul 2008 00:01:54 +0200 (CEST) Subject: [Spambayes] Exception bsddb.db.DBAccessError In-Reply-To: <18576.41383.869856.866276@montanaro-dyndns-org.local> References: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> <18575.53241.50274.275444@montanaro-dyndns-org.local> <37382.193.121.250.194.1217403862.squirrel@intrepid.warp.be> <18576.41383.869856.866276@montanaro-dyndns-org.local> Message-ID: <19122.81.82.3.9.1217455314.squirrel@intrepid.warp.be> On Wed, July 30, 2008 19:15, skip at pobox.com wrote: > >> Can you open it and manipulate it from a Python session? For > example: > ... > Amedee> Yes: > ... > > I see that Dave Abrahams submitted a patch for such an error: > > https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1803127&group_id=61702 > > Can you apply it and see if it works for you? I haven't done enough testing yet, but based on the two emails that arrived since applying the patch, it seems to work. Thank you, Skip. -- Amedee From amedee at amedee.be Thu Jul 31 09:33:34 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Thu, 31 Jul 2008 09:33:34 +0200 (CEST) Subject: [Spambayes] Exception bsddb.db.DBAccessError In-Reply-To: <19122.81.82.3.9.1217455314.squirrel@intrepid.warp.be> References: <25999.193.121.250.194.1217238356.squirrel@intrepid.warp.be> <18575.53241.50274.275444@montanaro-dyndns-org.local> <37382.193.121.250.194.1217403862.squirrel@intrepid.warp.be> <18576.41383.869856.866276@montanaro-dyndns-org.local> <19122.81.82.3.9.1217455314.squirrel@intrepid.warp.be> Message-ID: <19972.193.121.250.194.1217489614.squirrel@intrepid.warp.be> On Thu, July 31, 2008 00:01, Amedee Van Gasse wrote: > On Wed, July 30, 2008 19:15, skip at pobox.com wrote: >> >> Can you open it and manipulate it from a Python session? For >> example: >> ... >> Amedee> Yes: >> ... >> >> I see that Dave Abrahams submitted a patch for such an error: >> >> https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1803127&group_id=61702 >> >> Can you apply it and see if it works for you? > > I haven't done enough testing yet, but based on the two emails that > arrived since applying the patch, it seems to work. > > Thank you, Skip. I can now confirm that it works perfectly, just look at this nice procmail log: >From lulled0 at northshorelawfirm.com Thu Jul 31 04:03:21 2008 Subject: November Folder: /dev/null 9484 >From neutrinowj903 at ncalccim.com Thu Jul 31 04:04:31 2008 Subject: July Folder: /dev/null 9669 >From purportedly at airwaychat.com Thu Jul 31 04:27:20 2008 Subject: :o) Folder: .ztrain.spam/new/1217471240.3862_3.intrepid 4807 >From kili27 at omewireless.net Thu Jul 31 04:27:32 2008 Subject: F.B.I. Watching Hezbollah in Facebook Folder: .ztrain.confirmed-spam/new/1217471252.3869_3.intrepid 3999 -- Amedee