From skip at pobox.com Fri Aug 1 00:23:09 2008 From: skip at pobox.com (skip at pobox.com) Date: Thu, 31 Jul 2008 17:23:09 -0500 Subject: [spambayes-dev] [Spambayes] Exception bsddb.db.DBAccessError In-Reply-To: <19972.193.121.250.194.1217489614.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> <19972.193.121.250.194.1217489614.squirrel@intrepid.warp.be> Message-ID: <18578.15181.77916.743729@montanaro-dyndns-org.local> > Excellent. I'll apply it to the source and check it in. Actually, I had already checked it in (last October). We just haven't had a release since then. I think it's time for a beta. Mark, how are you fixed for Windows installer creating time? Skip From test1 at digitalglue.in Tue Aug 5 09:25:18 2008 From: test1 at digitalglue.in (Test 1) Date: Tue, 5 Aug 2008 12:55:18 +0530 Subject: [spambayes-dev] Directory-structure in Outlook Express Message-ID: <000a01c8f6cc$69ae96f0$1c01010a@dg.in> Hi, I am facing problem to display directory of Outlook Express.I know that all folder and subfolder information contain in Folder.dbx. How can get directory structure from Outlook Express using python programming. It is very complicated find directory structure in OE. So please help me. How can get dirctory structure using python programming. I will appreciate your suggestion. thanks, sanjeet kumar. ------------------ DigitalGlue, India -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at amedee.be Tue Aug 5 11:14:04 2008 From: amedee at amedee.be (Amedee Van Gasse) Date: Tue, 5 Aug 2008 11:14:04 +0200 (CEST) Subject: [spambayes-dev] Directory-structure in Outlook Express In-Reply-To: <000a01c8f6cc$69ae96f0$1c01010a@dg.in> References: <000a01c8f6cc$69ae96f0$1c01010a@dg.in> Message-ID: <52982.193.121.250.194.1217927644.squirrel@intrepid.warp.be> On Tue, August 5, 2008 09:25, Test 1 wrote: > Hi, > I am facing problem to display directory of Outlook Express.I know > that all folder and subfolder information contain in Folder.dbx. > How can get directory structure from Outlook Express using python > programming. It is very complicated find directory structure in > OE. So please help me. How can get dirctory structure using python > programming. I will appreciate your suggestion. > > thanks, > sanjeet kumar. Hi Sanjeet, Have you tried this Usenet group? news:microsoft.public.outlookexpress.general (or http://groups.google.com/group/microsoft.public.outlookexpress.general if you prefer the Google groups interface). There are a couple of MVPs following that group, I'm sure they will be able to tell you everything about programmatically accessing the OE directory structure. It could be that they give code examples in C# or VB.NET but if you are a good programmer, translating to python will be trivial. Kind regards, Amedee From anthonyt at berkeley.edu Thu Aug 14 19:52:00 2008 From: anthonyt at berkeley.edu (Anthony Tran) Date: Thu, 14 Aug 2008 10:52:00 -0700 (PDT) Subject: [spambayes-dev] Help with research project Message-ID: <52259.216.113.169.239.1218736320.squirrel@calmail.berkeley.edu> Hi, I'm doing a research project on bayesian spam filtering and I had a few questions regarding spambayes. I'm trying to write a script that creates a db in which all the words that I give it as input are put into the db with nham=0 and nspam=0 set for each of the word's wordinfos. Currently, my plan to do this is to take the set of words and put them in an mbox with the "to" and "subject" headers set to some arbitrary value and the message set to the words I gave it as input. I then pass this mbox to sbmboxtrain as the spam/ham file, creating the db. Then I iterate through each of the words and set each of the word's nham and nspam to 0, remembering to get rid of the arbitrary to and subject header tokens. Would this work? Is there an easier way to do this? I'm pretty sure that using "h", the output of hammie.open() and could probably make this much easier but tracing through the code is a bit hard. Is there an easy way to create a blank db and add new wordinfos into them? Further, I'm not sure how header files are tokenized. From the output I usually see, it seems that they're tokenized as header:headername:headercontent. If in the body of the message has the same header:headername:headercontent, would this be seen to spambayes as the same as a header with the same header name and header content? Thanks for your time, Anthony