From noreply at sourceforge.net Tue Jul 3 16:13:45 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 03 Jul 2007 07:13:45 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-810344 ] On Mac OS X, should use 'dbm' instead of gdbm or bsddb Message-ID: Bugs item #810344, was opened at 2003-09-21 19:56 Message generated for change (Comment added) made by montanaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=810344&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None >Group: 1.1.x Status: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: Timothy O'Malley (thisistimo) Assigned to: Skip Montanaro (montanaro) Summary: On Mac OS X, should use 'dbm' instead of gdbm or bsddb Initial Comment: The Mac OS X download for Python 2.3 does not have the gdbm, bsddb, or bsddb3 modules. It does, however, have a 'dbm' module. The dbmstorage.py file should be updated to fallback to the dbm module if there are no gdbm, bsddb, or bsddb3 modules as a way to support Mac OS X. There is patch attached to fix this. ---------------------------------------------------------------------- >Comment By: Skip Montanaro (montanaro) Date: 2007-07-03 09:13 Message: Logged In: YES user_id=44345 Originator: NO Sorry to have ignored/forgotten about this for so long. Checked in a slight modification of this patch as dbmstorage.py 1.16. ---------------------------------------------------------------------- Comment By: Graham Ashton (ashtong) Date: 2005-11-12 21:10 Message: Logged In: YES user_id=263764 Hi Skip. This isn't out of date, it still occurs. This is on Tiger (10.4.3): % python Python 2.3.5 (#1, Mar 20 2005, 20:38:20) [GCC 3.3 20030304 (Apple Computer, Inc. build 1809)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import gdbm Traceback (most recent call last): File "", line 1, in ? ImportError: No module named gdbm >>> import bsddb Traceback (most recent call last): File "", line 1, in ? File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/bsddb/__init__.py", line 40, in ? import _bsddb ImportError: No module named _bsddb >>> import bsddb3 Traceback (most recent call last): File "", line 1, in ? ImportError: No module named bsddb3 ---------------------------------------------------------------------- Comment By: Skip Montanaro (montanaro) Date: 2005-05-30 19:03 Message: Logged In: YES user_id=44345 Closing - I think this is now out-of-date. If not, let me know and I'll look into it. ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-20 21:38 Message: Logged In: YES user_id=552329 Skip: assigning to you since you're the only developer that I know has a mac :) Is this correct? Would this hurt? If not, I don't see why we couldn't add this (although people can always install bsddb or use a pickle). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=810344&group_id=61702 From noreply at sourceforge.net Wed Jul 4 13:04:31 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 04 Jul 2007 04:04:31 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-810344 ] On Mac OS X, should use 'dbm' instead of gdbm or bsddb Message-ID: Bugs item #810344, was opened at 2003-09-21 19:56 Message generated for change (Comment added) made by montanaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=810344&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: 1.1.x Status: Closed Resolution: Accepted Priority: 5 Private: No Submitted By: Timothy O'Malley (thisistimo) Assigned to: Skip Montanaro (montanaro) Summary: On Mac OS X, should use 'dbm' instead of gdbm or bsddb Initial Comment: The Mac OS X download for Python 2.3 does not have the gdbm, bsddb, or bsddb3 modules. It does, however, have a 'dbm' module. The dbmstorage.py file should be updated to fallback to the dbm module if there are no gdbm, bsddb, or bsddb3 modules as a way to support Mac OS X. There is patch attached to fix this. ---------------------------------------------------------------------- >Comment By: Skip Montanaro (montanaro) Date: 2007-07-04 06:04 Message: Logged In: YES user_id=44345 Originator: NO I reverted this change. All it does is sneak Berkeley DB 1.85 format files into the system on Macs. This file format should not be used. In any case, should people want to use it, since Python 2.3 the bsddb185 module exists which at least makes the use of this bad format explicit. ---------------------------------------------------------------------- Comment By: Skip Montanaro (montanaro) Date: 2007-07-03 09:13 Message: Logged In: YES user_id=44345 Originator: NO Sorry to have ignored/forgotten about this for so long. Checked in a slight modification of this patch as dbmstorage.py 1.16. ---------------------------------------------------------------------- Comment By: Graham Ashton (ashtong) Date: 2005-11-12 21:10 Message: Logged In: YES user_id=263764 Hi Skip. This isn't out of date, it still occurs. This is on Tiger (10.4.3): % python Python 2.3.5 (#1, Mar 20 2005, 20:38:20) [GCC 3.3 20030304 (Apple Computer, Inc. build 1809)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import gdbm Traceback (most recent call last): File "", line 1, in ? ImportError: No module named gdbm >>> import bsddb Traceback (most recent call last): File "", line 1, in ? File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/ python2.3/bsddb/__init__.py", line 40, in ? import _bsddb ImportError: No module named _bsddb >>> import bsddb3 Traceback (most recent call last): File "", line 1, in ? ImportError: No module named bsddb3 ---------------------------------------------------------------------- Comment By: Skip Montanaro (montanaro) Date: 2005-05-30 19:03 Message: Logged In: YES user_id=44345 Closing - I think this is now out-of-date. If not, let me know and I'll look into it. ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-20 21:38 Message: Logged In: YES user_id=552329 Skip: assigning to you since you're the only developer that I know has a mac :) Is this correct? Would this hurt? If not, I don't see why we couldn't add this (although people can always install bsddb or use a pickle). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=810344&group_id=61702 From noreply at sourceforge.net Thu Jul 5 18:27:34 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Thu, 05 Jul 2007 09:27:34 -0700 Subject: [spambayes-bugs] [ spambayes-Support Requests-1748595 ] Error Messages by teaching SpamBayes Message-ID: Support Requests item #1748595, was opened at 2007-07-05 18:27 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498104&aid=1748595&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Danny (iscdm) Assigned to: Nobody/Anonymous (nobody) Summary: Error Messages by teaching SpamBayes Initial Comment: Hi there, first thanks for building this software. English is not my native but I hope I can make clear what I am talking about. I've installed Spamato with Thunderbird 2.0.0.4 under WinXP Pro SP2 in German. This includes SpamBayes-Filter. When I try to learn my filter (with ham or spam) I always get errors. Unfortunately I have no idea what I do wrong. I made a screenshot to show my problem! Here is the link: http://www.schattenbewohner.de/shot.jpg Has anybody an idea what I do wrong? Kind regards, Danny ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498104&aid=1748595&group_id=61702 From noreply at sourceforge.net Thu Jul 5 19:12:06 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Thu, 05 Jul 2007 10:12:06 -0700 Subject: [spambayes-bugs] [ spambayes-Support Requests-1748595 ] Error Messages by teaching SpamBayes Message-ID: Support Requests item #1748595, was opened at 2007-07-05 11:27 Message generated for change (Comment added) made by montanaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498104&aid=1748595&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: Danny (iscdm) Assigned to: Nobody/Anonymous (nobody) Summary: Error Messages by teaching SpamBayes Initial Comment: Hi there, first thanks for building this software. English is not my native but I hope I can make clear what I am talking about. I've installed Spamato with Thunderbird 2.0.0.4 under WinXP Pro SP2 in German. This includes SpamBayes-Filter. When I try to learn my filter (with ham or spam) I always get errors. Unfortunately I have no idea what I do wrong. I made a screenshot to show my problem! Here is the link: http://www.schattenbewohner.de/shot.jpg Has anybody an idea what I do wrong? Kind regards, Danny ---------------------------------------------------------------------- >Comment By: Skip Montanaro (montanaro) Date: 2007-07-05 12:12 Message: Logged In: YES user_id=44345 Originator: NO Googling for NS_ERROR_NOT_AVAILABLE suggests that the problem rests with ThunderBayes not SpamBayes. You might want to ask the ThunderBayes folks. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498104&aid=1748595&group_id=61702 From noreply at sourceforge.net Tue Jul 10 08:37:18 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Mon, 09 Jul 2007 23:37:18 -0700 Subject: [spambayes-bugs] [ spambayes-Support Requests-1748595 ] Error Messages by teaching SpamBayes Message-ID: Support Requests item #1748595, was opened at 2007-07-06 02:27 Message generated for change (Comment added) made by mhammond You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498104&aid=1748595&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Pending Priority: 5 Private: No Submitted By: Danny (iscdm) Assigned to: Nobody/Anonymous (nobody) Summary: Error Messages by teaching SpamBayes Initial Comment: Hi there, first thanks for building this software. English is not my native but I hope I can make clear what I am talking about. I've installed Spamato with Thunderbird 2.0.0.4 under WinXP Pro SP2 in German. This includes SpamBayes-Filter. When I try to learn my filter (with ham or spam) I always get errors. Unfortunately I have no idea what I do wrong. I made a screenshot to show my problem! Here is the link: http://www.schattenbewohner.de/shot.jpg Has anybody an idea what I do wrong? Kind regards, Danny ---------------------------------------------------------------------- >Comment By: Mark Hammond (mhammond) Date: 2007-07-10 16:37 Message: Logged In: YES user_id=14198 Originator: NO Yeah - that is a "normal" mozilla xpcom exception - I'm afraid there is nothing we can do about that, but the thunderbayes guys will almost certainly have some clue (at least a clue about how you can get more information to help them or us get a clue :) ---------------------------------------------------------------------- Comment By: Skip Montanaro (montanaro) Date: 2007-07-06 03:12 Message: Logged In: YES user_id=44345 Originator: NO Googling for NS_ERROR_NOT_AVAILABLE suggests that the problem rests with ThunderBayes not SpamBayes. You might want to ask the ThunderBayes folks. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498104&aid=1748595&group_id=61702 From noreply at sourceforge.net Wed Jul 18 05:18:47 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 17 Jul 2007 20:18:47 -0700 Subject: [spambayes-bugs] [ spambayes-Patches-1755857 ] tte.py Improved ratio handling Message-ID: Patches item #1755857, was opened at 2007-07-17 22:18 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1755857&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: David Abrahams (david_abrahams) Assigned to: Nobody/Anonymous (nobody) Summary: tte.py Improved ratio handling Initial Comment: If ham and spam are more balanced than the ratio argument (e.g. ratio is 2:1 and spam and ham counts are 150 and 100, the current behavior is to train on 150 spams and 75 hams. That's really never what you want. The ratio should delimit the unbalanced-ness. The attached patch does that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1755857&group_id=61702 From noreply at sourceforge.net Wed Jul 18 05:19:24 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Tue, 17 Jul 2007 20:19:24 -0700 Subject: [spambayes-bugs] [ spambayes-Patches-1755857 ] tte.py Improved ratio handling Message-ID: Patches item #1755857, was opened at 2007-07-17 22:18 Message generated for change (Settings changed) made by david_abrahams You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1755857&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: David Abrahams (david_abrahams) >Assigned to: Skip Montanaro (montanaro) Summary: tte.py Improved ratio handling Initial Comment: If ham and spam are more balanced than the ratio argument (e.g. ratio is 2:1 and spam and ham counts are 150 and 100, the current behavior is to train on 150 spams and 75 hams. That's really never what you want. The ratio should delimit the unbalanced-ness. The attached patch does that. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498105&aid=1755857&group_id=61702 From noreply at sourceforge.net Sun Jul 22 17:13:59 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 22 Jul 2007 08:13:59 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-1758473 ] Bad __future__ imports Message-ID: Bugs item #1758473, was opened at 2007-07-22 11:13 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1758473&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: 1.0.4 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Fred L. Drake, Jr. (fdrake) Assigned to: Nobody/Anonymous (nobody) Summary: Bad __future__ imports Initial Comment: Trying to install spambayes 1.0.4 as an egg (using setuptools via zc.buildout) with Python 2.4.4 on Mac OS X resulted in these errors, caused by assignments between the module docstrings and the __future__ imports: warning: no files found matching '*.txt' under directory 'utilities' File "build/bdist.macosx-10.3-i386/egg/spambayes/Corpus.py", line 82 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "build/bdist.macosx-10.3-i386/egg/spambayes/FileCorpus.py", line 85 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "build/bdist.macosx-10.3-i386/egg/spambayes/message.py", line 78 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file zip_safe flag not set; analyzing archive contents... spambayes.resources.scanning__init__: module references __file__ File "/Users/fdrake/env/dot_buildout/eggs/tmp_Rg577/spambayes-1.0.4-py2.5.egg/spambayes/Corpus.py", line 82 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "/Users/fdrake/env/dot_buildout/eggs/tmp_Rg577/spambayes-1.0.4-py2.5.egg/spambayes/FileCorpus.py", line 85 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "/Users/fdrake/env/dot_buildout/eggs/tmp_Rg577/spambayes-1.0.4-py2.5.egg/spambayes/message.py", line 78 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1758473&group_id=61702 From noreply at sourceforge.net Tue Jul 24 02:06:34 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Mon, 23 Jul 2007 17:06:34 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-1758473 ] Bad __future__ imports Message-ID: Bugs item #1758473, was opened at 2007-07-22 10:13 Message generated for change (Comment added) made by montanaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1758473&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: 1.0.4 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Fred L. Drake, Jr. (fdrake) >Assigned to: Skip Montanaro (montanaro) Summary: Bad __future__ imports Initial Comment: Trying to install spambayes 1.0.4 as an egg (using setuptools via zc.buildout) with Python 2.4.4 on Mac OS X resulted in these errors, caused by assignments between the module docstrings and the __future__ imports: warning: no files found matching '*.txt' under directory 'utilities' File "build/bdist.macosx-10.3-i386/egg/spambayes/Corpus.py", line 82 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "build/bdist.macosx-10.3-i386/egg/spambayes/FileCorpus.py", line 85 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "build/bdist.macosx-10.3-i386/egg/spambayes/message.py", line 78 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file zip_safe flag not set; analyzing archive contents... spambayes.resources.scanning__init__: module references __file__ File "/Users/fdrake/env/dot_buildout/eggs/tmp_Rg577/spambayes-1.0.4-py2.5.egg/spambayes/Corpus.py", line 82 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "/Users/fdrake/env/dot_buildout/eggs/tmp_Rg577/spambayes-1.0.4-py2.5.egg/spambayes/FileCorpus.py", line 85 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file File "/Users/fdrake/env/dot_buildout/eggs/tmp_Rg577/spambayes-1.0.4-py2.5.egg/spambayes/message.py", line 78 from __future__ import generators SyntaxError: from __future__ imports must occur at the beginning of the file ---------------------------------------------------------------------- >Comment By: Skip Montanaro (montanaro) Date: 2007-07-23 19:06 Message: Logged In: YES user_id=44345 Originator: NO Fred, These were all fixed ages ago. It's not that the current code is incorrect, just that we haven't had anything other than an alpha release since 1.0.4 escaped. I did find one more incorrectly positioned __future__ statement just now though. That was checked into Subversion in rev 3154. Thx, Skip ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1758473&group_id=61702 From noreply at sourceforge.net Tue Jul 24 02:59:44 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Mon, 23 Jul 2007 17:59:44 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-1103976 ] Outlook.exe will not terminate when launched via mailto Message-ID: Bugs item #1103976, was opened at 2005-01-17 16:56 Message generated for change (Comment added) made by selfman You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1103976&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Outlook Group: 1.1.x Status: Open Resolution: None Priority: 5 Private: No Submitted By: robert (elitemrp) Assigned to: Kenny Pitt (kpitt) Summary: Outlook.exe will not terminate when launched via mailto Initial Comment: I first ran into this problem a few months ago at work. But at the time I thought it was related to a custom program we run here. But now I noticed I can easily reproduce the problem on any computer running SpamBayes+Outlook 2003 on Windows XP. Basically, I will open Outlook via the icon to read mail. I will then close Outlook, and if I have Task Manager open, I will see that Outlook.exe closes correctly. Now if I launch a mailto: link (or use a program that launches a new mail), where the Compose Mail window opens, but not the actual outlook program, the problem occurs. If I close the compose mail window, by either clicking Send, or closing it without sending, the OUTLOOK.EXE task will not exit. If I launch Outlook again, I'll now have multiple instances of OUTLOOK.EXE in task manager. Now the multiple instances is what caused the problem with our custom software at work, but that has nothing to do with the fact that Outlook does not exit correctly when running Spambayes and having a program/mailto link open the Compose Mail window. Yes I realize there have been 2 previous tickets about OUTLOOK.EXE closing, but none came to the conclusion that it's caused by a Compose Mail window. And both are closed without a solution. I have tested this on several computers and have tried multiple things to try to fix it (such as renaming extend.dat and other files) and nothing seems to work. ---------------------------------------------------------------------- Comment By: SelfMan (selfman) Date: 2007-07-24 02:59 Message: Logged In: YES user_id=366391 Originator: NO The unload problem occurs also while: - start outlook - connect PDA via USB/Active sync - let PDA turned On - close outlook Outlook stays open in background. Now turn off PDA. Normal behavior (without SpamBayes) - outlook closes Bad behavior (With SpamBayes) - outlook stays "hanging" on background This BUG is killing me, because I have to kill the outlook process... And that can cause a damage to the pst file. Problem exists in SpamBayes 1.1a3 and older. PLEASE FIX IT !!! ---------------------------------------------------------------------- Comment By: SelfMan (selfman) Date: 2007-03-25 04:42 Message: Logged In: YES user_id=366391 Originator: NO Its 2007 and this is still not fixed ---------------------------------------------------------------------- Comment By: Sadie (sadie_187) Date: 2006-08-17 00:05 Message: Logged In: YES user_id=1577414 Problem: Outlook 2003 does not terminate the outlook.exe process at closing of the program. Possible Solution (worked for me) : Active sync for my outlook was causing the process to hang. Removed the calendar, contacts sink option; which I rarely use. ---------------------------------------------------------------------- Comment By: Nytetears (nytetears) Date: 2006-05-24 01:12 Message: Logged In: YES user_id=1369127 To be honest Outlook 2003 was fine for a bit after disabling the spam blocker and then it started with the refusing to shut down again. I finally gave up and paid $5 for an addin that makes sure the program is shut down (http://www.daveswebsite.com/software/olshutdown/ ). I truely do not believe it is SpamBayes causing the trouble as I have it without this program. I have found it often happens if I click on an email link in a browser when the program is not open. I do know I have had this problem for years and I don't use addons in my email as a general rule. ---------------------------------------------------------------------- Comment By: Christian Blackburn (seier) Date: 2006-05-23 23:04 Message: Logged In: YES user_id=561770 Hi NyteTears, > It seems that the spam filter in outlook is causing it to >hang. I wasn't able to reproduce this in Outlook 2003, which is where the problem is at for most people. Perhaps you'd like to tell us what version you're using and the exact steps you took to resolve this. As far as I can tell the problem the rest of us are experiencing is indeed related to SpamBayes' plugin and not outlook itself, although I'm sure in the past with all those security updates the scenario you've described must have been true at least once. Thanks, Christian Blackburn ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-12-05 10:24 Message: Logged In: YES user_id=552329 See also: [ 1336405 ] Add-In breaks MAPI control http://sourceforge.net/tracker/index.php?func=detail&aid=1336405&group_id=61702&atid=498104 ---------------------------------------------------------------------- Comment By: Nytetears (nytetears) Date: 2005-10-27 21:59 Message: Logged In: YES user_id=1369127 I had this problem on my computer and tried removing various different program to fix it. Nothing worked. I have found it is not related to any program outside of outlook. It is an outlook problem. It seems that the spam filter in outlook is causing it to hang. Once I turned off the spam filter that came with outlook I never had the program hang once. I could not tell you why it does this or a fix for it beyond turning the option off but that is the cause of outlook remaining open in the task manager. ---------------------------------------------------------------------- Comment By: Kip Cartwright (kcartwri) Date: 2005-03-30 02:26 Message: Logged In: YES user_id=192708 I have the same problem on Outlook 2003. No problem with Outlook XP (2002). ---------------------------------------------------------------------- Comment By: fsnyder (fsnyder) Date: 2005-02-25 23:00 Message: Logged In: YES user_id=1227716 This behavior of the Outlook.exe not being stopped properly can be duplicated using the following VBScript code. OPTION EXPLICIT On error Resume Next err.clear Dim oOutlookApp, oOutlookNS Set oOutlookApp = GetObject(,"Outlook.Application") if Err <> 0 then MsgBox "Outlook not currently running." & VbCrLf & "Creating New Outlook Application. I'll kill it when I'm done" set oOutlookApp = CreateObject ("Outlook.Application") else MsgBox "Outlook was running. I'll kill it anyway when I'm done." End If MsgBox oOutlookApp.name & " version# " & oOutlookApp.version MsgBox "Now I'll kill the Outlook.exe process the clean way" oOutlookApp.Quit set oOutlookNS = Nothing set oOutlookApp = Nothing MsgBox "END" Run it and watch the TaskManager for when the Outlook.exe process gets created, and killed (as long as the SpamBayes Add-In is NOT activated in Outlook) This should normally kill the process unless some other add- in or anti-virus code is not allowing Outlook to exit cleanly. Hope this Helps -fsnyder ---------------------------------------------------------------------- Comment By: Hal Smith (bpu_webguy) Date: 2005-02-03 19:00 Message: Logged In: YES user_id=842378 One other source of hanging OL up, with or without Spambayes is ActiveSync for your PDA, celll phone or whatever. AS does tend to work behind your back, a little bit. One of the reasons I love Process Explorer from System Internals... -h ---------------------------------------------------------------------- Comment By: Gil (spambayes411) Date: 2005-02-02 11:52 Message: Logged In: YES user_id=1210353 I've discovered this is not limited to the mailto function. I use a program called SynchPST to keep outlook sychronized between my home computer and my laptop. When SynchPST opens, I see it in the task manager and it opens Outlook as well. After I synch my PST files, I close SynchPST. It closes but Outlook remains in the task manager. If the Spambayes add-in is not loaded, then both SynchPST and Outlook quit as they should. ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-25 00:22 Message: Logged In: YES user_id=552329 Thanks Kenny :) I don't really know what might be causing this, but I guess you could start by checking to see if the spambayes log gets to the "addin terminating" part. Let me know if I can help at all (though I don't have OL2003 anywhere). ---------------------------------------------------------------------- Comment By: Kenny Pitt (kpitt) Date: 2005-01-24 17:23 Message: Logged In: YES user_id=859086 Yep, I was able to confirm this problem on Outlook 2003. If I activate a mailto link with SpamBayes loaded and enabled, OUTLOOK.EXE will not exit when I close the compose window. If I disable SpamBayes filtering from SpamBayes Manager, OUTLOOK.EXE still doesn't exit. If I completely disable loading of SpamBayes from the COM Add-ins dialog then OUTLOOK.EXE closes properly when I close the compose window. I'll look into this further when I get a chance. ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-24 06:53 Message: Logged In: YES user_id=552329 Maybe this is specific to Outlook 2003 then? Kenny: you've got 2003, right? Can you try and replicate this? ---------------------------------------------------------------------- Comment By: robert (elitemrp) Date: 2005-01-21 12:49 Message: Logged In: YES user_id=1198932 Yes, it only happens with SpamBayes installed. I install SpamBayes, set up the toolbar, etc Close Outlook, type mailto:blah at blah.com in a browser or click a mail link and it opens the Compose Mail window. Once I close this window, Outlook.exe ramains in the task list. If I click another mailto link I'll have 2 stuck open, then 3, etc If I have only 1 process loaded and it's the main Outlook window, when I click a mailto link it will work fine since it doesn't load a separate outlook.exe process. It only does this when the main outlook program isn't loaded. Once I uninstall SpamBayes or uncheck it in the COM Add-Ins area in Outlook, this problem goes away. As soon as I close a Compose Mail window, OUTLOOK.EXE terminates correctly. I've tried this on several PCs, some with fresh installs of XP/ Outlook, some with several months old installs and other applications, it's the same on each. Thanks ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-21 04:17 Message: Logged In: YES user_id=552329 Have you tried this without SpamBayes installed? I get the same behaviour without SpamBayes, which says to me it's an Outlook problem, not a SpamBayes one. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1103976&group_id=61702 From noreply at sourceforge.net Tue Jul 24 03:43:25 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Mon, 23 Jul 2007 18:43:25 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-1103976 ] Outlook.exe will not terminate when launched via mailto Message-ID: Bugs item #1103976, was opened at 2005-01-17 09:56 Message generated for change (Comment added) made by montanaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1103976&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Outlook Group: 1.1.x Status: Open Resolution: None Priority: 5 Private: No Submitted By: robert (elitemrp) >Assigned to: Mark Hammond (mhammond) Summary: Outlook.exe will not terminate when launched via mailto Initial Comment: I first ran into this problem a few months ago at work. But at the time I thought it was related to a custom program we run here. But now I noticed I can easily reproduce the problem on any computer running SpamBayes+Outlook 2003 on Windows XP. Basically, I will open Outlook via the icon to read mail. I will then close Outlook, and if I have Task Manager open, I will see that Outlook.exe closes correctly. Now if I launch a mailto: link (or use a program that launches a new mail), where the Compose Mail window opens, but not the actual outlook program, the problem occurs. If I close the compose mail window, by either clicking Send, or closing it without sending, the OUTLOOK.EXE task will not exit. If I launch Outlook again, I'll now have multiple instances of OUTLOOK.EXE in task manager. Now the multiple instances is what caused the problem with our custom software at work, but that has nothing to do with the fact that Outlook does not exit correctly when running Spambayes and having a program/mailto link open the Compose Mail window. Yes I realize there have been 2 previous tickets about OUTLOOK.EXE closing, but none came to the conclusion that it's caused by a Compose Mail window. And both are closed without a solution. I have tested this on several computers and have tried multiple things to try to fix it (such as renaming extend.dat and other files) and nothing seems to work. ---------------------------------------------------------------------- >Comment By: Skip Montanaro (montanaro) Date: 2007-07-23 20:43 Message: Logged In: YES user_id=44345 Originator: NO Mark, I'm reassigning this to you to see if you see an easy fix for this problem. -- Skip ---------------------------------------------------------------------- Comment By: SelfMan (selfman) Date: 2007-07-23 19:59 Message: Logged In: YES user_id=366391 Originator: NO The unload problem occurs also while: - start outlook - connect PDA via USB/Active sync - let PDA turned On - close outlook Outlook stays open in background. Now turn off PDA. Normal behavior (without SpamBayes) - outlook closes Bad behavior (With SpamBayes) - outlook stays "hanging" on background This BUG is killing me, because I have to kill the outlook process... And that can cause a damage to the pst file. Problem exists in SpamBayes 1.1a3 and older. PLEASE FIX IT !!! ---------------------------------------------------------------------- Comment By: SelfMan (selfman) Date: 2007-03-24 21:42 Message: Logged In: YES user_id=366391 Originator: NO Its 2007 and this is still not fixed ---------------------------------------------------------------------- Comment By: Sadie (sadie_187) Date: 2006-08-16 17:05 Message: Logged In: YES user_id=1577414 Problem: Outlook 2003 does not terminate the outlook.exe process at closing of the program. Possible Solution (worked for me) : Active sync for my outlook was causing the process to hang. Removed the calendar, contacts sink option; which I rarely use. ---------------------------------------------------------------------- Comment By: Nytetears (nytetears) Date: 2006-05-23 18:12 Message: Logged In: YES user_id=1369127 To be honest Outlook 2003 was fine for a bit after disabling the spam blocker and then it started with the refusing to shut down again. I finally gave up and paid $5 for an addin that makes sure the program is shut down (http://www.daveswebsite.com/software/olshutdown/ ). I truely do not believe it is SpamBayes causing the trouble as I have it without this program. I have found it often happens if I click on an email link in a browser when the program is not open. I do know I have had this problem for years and I don't use addons in my email as a general rule. ---------------------------------------------------------------------- Comment By: Christian Blackburn (seier) Date: 2006-05-23 16:04 Message: Logged In: YES user_id=561770 Hi NyteTears, > It seems that the spam filter in outlook is causing it to >hang. I wasn't able to reproduce this in Outlook 2003, which is where the problem is at for most people. Perhaps you'd like to tell us what version you're using and the exact steps you took to resolve this. As far as I can tell the problem the rest of us are experiencing is indeed related to SpamBayes' plugin and not outlook itself, although I'm sure in the past with all those security updates the scenario you've described must have been true at least once. Thanks, Christian Blackburn ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-12-05 03:24 Message: Logged In: YES user_id=552329 See also: [ 1336405 ] Add-In breaks MAPI control http://sourceforge.net/tracker/index.php?func=detail&aid=1336405&group_id=61702&atid=498104 ---------------------------------------------------------------------- Comment By: Nytetears (nytetears) Date: 2005-10-27 14:59 Message: Logged In: YES user_id=1369127 I had this problem on my computer and tried removing various different program to fix it. Nothing worked. I have found it is not related to any program outside of outlook. It is an outlook problem. It seems that the spam filter in outlook is causing it to hang. Once I turned off the spam filter that came with outlook I never had the program hang once. I could not tell you why it does this or a fix for it beyond turning the option off but that is the cause of outlook remaining open in the task manager. ---------------------------------------------------------------------- Comment By: Kip Cartwright (kcartwri) Date: 2005-03-29 18:26 Message: Logged In: YES user_id=192708 I have the same problem on Outlook 2003. No problem with Outlook XP (2002). ---------------------------------------------------------------------- Comment By: fsnyder (fsnyder) Date: 2005-02-25 16:00 Message: Logged In: YES user_id=1227716 This behavior of the Outlook.exe not being stopped properly can be duplicated using the following VBScript code. OPTION EXPLICIT On error Resume Next err.clear Dim oOutlookApp, oOutlookNS Set oOutlookApp = GetObject(,"Outlook.Application") if Err <> 0 then MsgBox "Outlook not currently running." & VbCrLf & "Creating New Outlook Application. I'll kill it when I'm done" set oOutlookApp = CreateObject ("Outlook.Application") else MsgBox "Outlook was running. I'll kill it anyway when I'm done." End If MsgBox oOutlookApp.name & " version# " & oOutlookApp.version MsgBox "Now I'll kill the Outlook.exe process the clean way" oOutlookApp.Quit set oOutlookNS = Nothing set oOutlookApp = Nothing MsgBox "END" Run it and watch the TaskManager for when the Outlook.exe process gets created, and killed (as long as the SpamBayes Add-In is NOT activated in Outlook) This should normally kill the process unless some other add- in or anti-virus code is not allowing Outlook to exit cleanly. Hope this Helps -fsnyder ---------------------------------------------------------------------- Comment By: Hal Smith (bpu_webguy) Date: 2005-02-03 12:00 Message: Logged In: YES user_id=842378 One other source of hanging OL up, with or without Spambayes is ActiveSync for your PDA, celll phone or whatever. AS does tend to work behind your back, a little bit. One of the reasons I love Process Explorer from System Internals... -h ---------------------------------------------------------------------- Comment By: Gil (spambayes411) Date: 2005-02-02 04:52 Message: Logged In: YES user_id=1210353 I've discovered this is not limited to the mailto function. I use a program called SynchPST to keep outlook sychronized between my home computer and my laptop. When SynchPST opens, I see it in the task manager and it opens Outlook as well. After I synch my PST files, I close SynchPST. It closes but Outlook remains in the task manager. If the Spambayes add-in is not loaded, then both SynchPST and Outlook quit as they should. ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-24 17:22 Message: Logged In: YES user_id=552329 Thanks Kenny :) I don't really know what might be causing this, but I guess you could start by checking to see if the spambayes log gets to the "addin terminating" part. Let me know if I can help at all (though I don't have OL2003 anywhere). ---------------------------------------------------------------------- Comment By: Kenny Pitt (kpitt) Date: 2005-01-24 10:23 Message: Logged In: YES user_id=859086 Yep, I was able to confirm this problem on Outlook 2003. If I activate a mailto link with SpamBayes loaded and enabled, OUTLOOK.EXE will not exit when I close the compose window. If I disable SpamBayes filtering from SpamBayes Manager, OUTLOOK.EXE still doesn't exit. If I completely disable loading of SpamBayes from the COM Add-ins dialog then OUTLOOK.EXE closes properly when I close the compose window. I'll look into this further when I get a chance. ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-23 23:53 Message: Logged In: YES user_id=552329 Maybe this is specific to Outlook 2003 then? Kenny: you've got 2003, right? Can you try and replicate this? ---------------------------------------------------------------------- Comment By: robert (elitemrp) Date: 2005-01-21 05:49 Message: Logged In: YES user_id=1198932 Yes, it only happens with SpamBayes installed. I install SpamBayes, set up the toolbar, etc Close Outlook, type mailto:blah at blah.com in a browser or click a mail link and it opens the Compose Mail window. Once I close this window, Outlook.exe ramains in the task list. If I click another mailto link I'll have 2 stuck open, then 3, etc If I have only 1 process loaded and it's the main Outlook window, when I click a mailto link it will work fine since it doesn't load a separate outlook.exe process. It only does this when the main outlook program isn't loaded. Once I uninstall SpamBayes or uncheck it in the COM Add-Ins area in Outlook, this problem goes away. As soon as I close a Compose Mail window, OUTLOOK.EXE terminates correctly. I've tried this on several PCs, some with fresh installs of XP/ Outlook, some with several months old installs and other applications, it's the same on each. Thanks ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2005-01-20 21:17 Message: Logged In: YES user_id=552329 Have you tried this without SpamBayes installed? I get the same behaviour without SpamBayes, which says to me it's an Outlook problem, not a SpamBayes one. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1103976&group_id=61702 From noreply at sourceforge.net Thu Jul 26 04:54:24 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 25 Jul 2007 19:54:24 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-1387699 ] train_on_filter=True needs the db to be opened read/write Message-ID: Bugs item #1387699, was opened at 2005-12-21 21:14 Message generated for change (Comment added) made by david_abrahams You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1387699&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: hammie Group: 1.0.4 Status: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: aikiaboy (aikiaboy) Assigned to: Nobody/Anonymous (nobody) Summary: train_on_filter=True needs the db to be opened read/write Initial Comment: train_on_filter=True needs the db to be opened read/write for classification eg. ======================== [globals] dbm_type=db3hash verbose=True [Headers] include_score=True [html_ui] display_adv_find=True [Storage] persistent_use_database=dbm persistent_storage_file=./hammie.db [Hammie] train_on_filter=True ========================= $ sb_filter.py asdf fdsa Loading state from /u/k/a/kantor/.spambayes/./hammie.db database /u/k/a/kantor/.spambayes/./hammie.db is an existing database, with 2273 spam and 711 ham Traceback (most recent call last): File "/u/k/a/kantor/bin/sb_filter.py", line 257, in ? main() File "/u/k/a/kantor/bin/sb_filter.py", line 248, in main action(msg) File "/u/k/a/kantor/bin/sb_filter.py", line 180, in filter return self.h.filter(msg) File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/hammie.py", line 120, in filter File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/hammie.py", line 162, in train File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/classifier.py", line 273, in learn File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/classifier.py", line 384, in _add_msg File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/storage.py", line 304, in _wordinfoset File "/s/python- 2.4.1/sun4x_58/lib/python2.4/shelve.py", line 130, in __setitem__ self.dict[key] = f.getvalue() File "../spambayes//lib/python2.4/site- packages/bsddb3/__init__.py", line 218, in __setitem__ bsddb._db.DBAccessError: (13, 'Permission denied -- put: attempt to modify a read-only tree') ---------------------------------------------------------------------- Comment By: David Abrahams (david_abrahams) Date: 2007-07-25 21:54 Message: Logged In: YES user_id=52572 Originator: NO Did you ever check in this fix? I'm seeing the same error with the SVN head, but without train_on_error=True, and more importantly, without the helpful backtrace :( $ echo | sb_filter.py opened existing cache with 802 A records and 0 PTR records Loading state from /home/dave/spambayes/hammie.fs database /home/dave/spambayes/hammie.fs is an existing database, with 728 spam and 128 ham X-Spambayes-Classification: spam; 0.93 Persisting /home/dave/spambayes/hammie.fs state in database Exception bsddb._db.DBAccessError: (13, 'Permission denied -- put: attempt to modify a read-only tree') in > ignored saving 124 items to /home/dave/spambayes/imagecache.pck My .spambayesrc is attached ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2006-04-02 07:05 Message: Logged In: YES user_id=552329 Fixed (CVS is down at the moment; I'll check it in once it's done). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1387699&group_id=61702 From noreply at sourceforge.net Thu Jul 26 04:55:48 2007 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 25 Jul 2007 19:55:48 -0700 Subject: [spambayes-bugs] [ spambayes-Bugs-1387699 ] train_on_filter=True needs the db to be opened read/write Message-ID: Bugs item #1387699, was opened at 2005-12-21 21:14 Message generated for change (Comment added) made by david_abrahams You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1387699&group_id=61702 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: hammie Group: 1.0.4 Status: Closed Resolution: Fixed Priority: 5 Private: No Submitted By: aikiaboy (aikiaboy) Assigned to: Nobody/Anonymous (nobody) Summary: train_on_filter=True needs the db to be opened read/write Initial Comment: train_on_filter=True needs the db to be opened read/write for classification eg. ======================== [globals] dbm_type=db3hash verbose=True [Headers] include_score=True [html_ui] display_adv_find=True [Storage] persistent_use_database=dbm persistent_storage_file=./hammie.db [Hammie] train_on_filter=True ========================= $ sb_filter.py asdf fdsa Loading state from /u/k/a/kantor/.spambayes/./hammie.db database /u/k/a/kantor/.spambayes/./hammie.db is an existing database, with 2273 spam and 711 ham Traceback (most recent call last): File "/u/k/a/kantor/bin/sb_filter.py", line 257, in ? main() File "/u/k/a/kantor/bin/sb_filter.py", line 248, in main action(msg) File "/u/k/a/kantor/bin/sb_filter.py", line 180, in filter return self.h.filter(msg) File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/hammie.py", line 120, in filter File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/hammie.py", line 162, in train File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/classifier.py", line 273, in learn File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/classifier.py", line 384, in _add_msg File "/u/k/a/kantor/bin/spambayes/lib/python2.4/site- packages/spambayes/storage.py", line 304, in _wordinfoset File "/s/python- 2.4.1/sun4x_58/lib/python2.4/shelve.py", line 130, in __setitem__ self.dict[key] = f.getvalue() File "../spambayes//lib/python2.4/site- packages/bsddb3/__init__.py", line 218, in __setitem__ bsddb._db.DBAccessError: (13, 'Permission denied -- put: attempt to modify a read-only tree') ---------------------------------------------------------------------- Comment By: David Abrahams (david_abrahams) Date: 2007-07-25 21:55 Message: Logged In: YES user_id=52572 Originator: NO For some reason SF won't give me an option to attach files, so here it is: [imap] server:localhost username:dave password:CeNsOrEd use_ssl:True spam_folder:INBOX.spam unsure_folder:INBOX.unsure ham_train_folders:INBOX.sb-training.ham spam_train_folders:INBOX.sb-training.spam [html_ui] port:8004 display_adv_find:True allow_remote_connections:localhost http_authentication:Basic http_password:CeNsOrEd [Storage] messageinfo_storage_file:/home/dave/spambayes/messageinfo.fs persistent_storage_file:/home/dave/spambayes/hammie.fs persistent_use_database:dbm [Headers] include_evidence:False include_score:True [Tokenizer] x-search_for_habeas_headers:True x-lookup_ip:True lookup_ip_cache:/home/dave/spambayes/dnscache x-pick_apart_urls:True x-ocr_engine:gocr max_image_size:100000 crack_images:True crack_image_cache:/home/dave/spambayes/imagecache.pck image_size:True record_header_absence:True summarize_email_prefixes:True summarize_email_suffixes:True mine_received_headers:True [URLRetriever] x-cache_directory:/home/dave/spambayes/url-cache [globals] verbose:True ---------------------------------------------------------------------- Comment By: David Abrahams (david_abrahams) Date: 2007-07-25 21:54 Message: Logged In: YES user_id=52572 Originator: NO Did you ever check in this fix? I'm seeing the same error with the SVN head, but without train_on_error=True, and more importantly, without the helpful backtrace :( $ echo | sb_filter.py opened existing cache with 802 A records and 0 PTR records Loading state from /home/dave/spambayes/hammie.fs database /home/dave/spambayes/hammie.fs is an existing database, with 728 spam and 128 ham X-Spambayes-Classification: spam; 0.93 Persisting /home/dave/spambayes/hammie.fs state in database Exception bsddb._db.DBAccessError: (13, 'Permission denied -- put: attempt to modify a read-only tree') in > ignored saving 124 items to /home/dave/spambayes/imagecache.pck My .spambayesrc is attached ---------------------------------------------------------------------- Comment By: Tony Meyer (anadelonbrin) Date: 2006-04-02 07:05 Message: Logged In: YES user_id=552329 Fixed (CVS is down at the moment; I'll check it in once it's done). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=498103&aid=1387699&group_id=61702