From chasprowland at comcast.net Thu Jun 3 15:42:23 2010 From: chasprowland at comcast.net (Charley Rowland) Date: Thu, 3 Jun 2010 06:42:23 -0700 Subject: [Spambayes] missing incoming e mail Message-ID: <001a01cb0322$991c6f20$cb554d60$@net> Hello, Spam bayes I bleive is taking some messages and removing them from my inbox and placing them somewhere else or deleting them. But, I cannot find them. Can you tell me where to look? Thanks Charley Rowland, President Air Systems Sales & Rentals 2032 Wembley Pl., Lake Oswego, OR 97034 P.503-635-9670 F.503-675-0278 chasprowland at comcast.net www.airsysrent.com cid:image001.jpg at 01CA9B44.0230BB70 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 3465 bytes Desc: not available URL: From support at softsea.com Fri Jun 4 15:20:58 2010 From: support at softsea.com (SoftSea Support) Date: Fri, 4 Jun 2010 09:20:58 -0400 Subject: [Spambayes] Your software is excellent Message-ID: <513272d3fe824f9401db9f1500d38014@www.softsea.com> Hello Sir, Your software SpamBayes is excellent (5 Star Award and 100% Clean), we like it very much. We have updated it to our SoftSea software directory: http://www.softsea.com/review/SpamBayes.html Your software has also been sent to our exclusive SoftSea RSS Feed. Please let us know once your software have new version, and we expect more new software from you. Thank you very much. To Your Software Success! http://www.softsea.com/ From susanne at arthurmorganhouse.com Sat Jun 5 19:12:32 2010 From: susanne at arthurmorganhouse.com (Susanne Oldham) Date: Sat, 5 Jun 2010 13:12:32 -0400 Subject: [Spambayes] spambayes problem Message-ID: <7F563A4E4C70403C9EE4BF8D8EFEC756@OFFICE> Hi, I have read the troubleshooting guide, and cannot get anywhere. My spambayes has stopped working, and the toolbar that allows me to train spambayes is gone. Windows xp; don't know how to determine the version of spambayes I have. What's a log file? * the version of Windows you are using * the version of SpamBayes * any log files. Thanks for your help. - Susanne Susanne Oldham www.ArthurMorganHouse.com 937-767-1761 -------------- next part -------------- An HTML attachment was scrubbed... URL: From greg at bahns.com Sun Jun 6 00:09:16 2010 From: greg at bahns.com (Greg Bahns) Date: Sat, 5 Jun 2010 18:09:16 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit Message-ID: According the posts I've seen in recent months, there's no sign that anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I'm giving it a try. Here's what I've tried: 1. Install 64-bit Python (http://www.python.org/download/) a. Python 2.6.5 Windows X86-64 installer 2. Install Distribute (http://pypi.python.org/pypi/distribute) 3. Install 64-bit pywin32 ( http://sourceforge.net/projects/pywin32/files/) a. pywin32-214.win-amd64-py2.6.exe 4. Installed Spambayes from source a. Download 1.1a6 source b. Extracted to C:\spambayes-1.1a6 c. python setup.py install d. It apparently installed to C:\Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg 5. permissions to write in spambayes Program Files folder a. cd \Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg b. icacls spambayes /grant users:F /T 6. Install Outlook add-in a. Cd \spambayes-1.1a6\Outlook2000 b. Python addin.py Everything appears to have executed successfully, but when I start Outlook and view the COM add-ins, SpamBayes is disabled. It says "Not loaded. A runtime error occurred during the loading of the COM Add-in." I've looked for more details on the error in several places: 1. C:\Users\greg\AppData\Roaming\SpamBayes 2. C:\Users\greg\AppData\Local\SpamBayes 3. NT Event Log 4. Python Trace Collector in PythonWIn I was really hopeful that useful troubleshooting info would appear in PythonWin, but nothing, which makes me think Outlook is probably failing to load the Add-in at all. Any suggestions on what I can try from here? Thanks, Greg -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 14769 bytes Desc: image001.png URL: From skippy.hammond at gmail.com Mon Jun 7 08:49:41 2010 From: skippy.hammond at gmail.com (Mark Hammond) Date: Mon, 07 Jun 2010 16:49:41 +1000 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: References: Message-ID: <4C0C9685.8020905@gmail.com> I got a bit further with this and I've got things partially working. 1) There seems to be an issue with how we detect if we are running as a console for debugging purposes. In the Outlook2000\addin.py file there is a block: try: win32api.GetConsoleTitle() except win32api.error: # No console - if we are running from Python sources, # redirect to win32traceutil, but if running from a binary This does *not* enter the exception handler as expected. If you modify that block so the exception block is always entered, you should get the logging back and should avoid an error caused by attempting to 'print' in a GUI program. 2) After this things work for me, except that as with all versions of SpamBayes, there is a problem filtering IMAP messages - and I didn't get to test the POP behaviour. Apart from that the spambayes manager and toolbar items all worked fine. This was on Windows 7 x64. HTH, Mark On 6/06/2010 8:09 AM, Greg Bahns wrote: > According the posts I?ve seen in recent months, there?s no sign that > anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I?m > giving it a try. > > Here?s what I?ve tried: > > 1. Install 64-bit Python (http://www.python.org/download/) > > a. Python 2.6.5 Windows X86-64 installer > > 2. Install Distribute (http://pypi.python.org/pypi/distribute) > > 3. Install 64-bit pywin32 (http://sourceforge.net/projects/pywin32/files/) > > a. pywin32-214.win-amd64-py2.6.exe > > 4. Installed Spambayes from source > > a. Download 1.1a6 source > > b. Extracted to C:\spambayes-1.1a6 > > c. python setup.py install > > d. It apparently installed to C:\Program > Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > 5. permissions to write in spambayes Program Files folder > > a. cd \Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > b. icacls spambayes /grant users:F /T > > 6. Install Outlook add-in > > a. Cd \spambayes-1.1a6\Outlook2000 > > b. Python addin.py > > Everything appears to have executed successfully, but when I start > Outlook and view the COM add-ins, SpamBayes is disabled. It says ?Not > loaded. A runtime error occurred during the loading of the COM Add-in.? > > I?ve looked for more details on the error in several places: > > 1. C:\Users\greg\AppData\Roaming\SpamBayes > > 2. C:\Users\greg\AppData\Local\SpamBayes > > 3. NT Event Log > > 4. Python Trace Collector in PythonWIn > > I was really hopeful that useful troubleshooting info would appear in > PythonWin, but nothing, which makes me think Outlook is probably failing > to load the Add-in at all. Any suggestions on what I can try from here? > > Thanks, > > Greg > > > > _______________________________________________ > 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 greg at bahns.com Mon Jun 7 15:39:48 2010 From: greg at bahns.com (Greg Bahns) Date: Mon, 7 Jun 2010 09:39:48 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit References: <4C0C9685.8020905@gmail.com> Message-ID: Mi Mark, Thanks for the reply. I'll try playing with that later today. Point of clarification: you mentioned that you're on Win7 x64. I'm also running Outlook 2010 x64. Same for you? Thanks, Greg ________________________________ From: Mark Hammond [mailto:skippy.hammond at gmail.com] Sent: Mon 6/7/2010 2:49 AM To: Greg Bahns Cc: spambayes at python.org Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit I got a bit further with this and I've got things partially working. 1) There seems to be an issue with how we detect if we are running as a console for debugging purposes. In the Outlook2000\addin.py file there is a block: try: win32api.GetConsoleTitle() except win32api.error: # No console - if we are running from Python sources, # redirect to win32traceutil, but if running from a binary This does *not* enter the exception handler as expected. If you modify that block so the exception block is always entered, you should get the logging back and should avoid an error caused by attempting to 'print' in a GUI program. 2) After this things work for me, except that as with all versions of SpamBayes, there is a problem filtering IMAP messages - and I didn't get to test the POP behaviour. Apart from that the spambayes manager and toolbar items all worked fine. This was on Windows 7 x64. HTH, Mark On 6/06/2010 8:09 AM, Greg Bahns wrote: > According the posts I've seen in recent months, there's no sign that > anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I'm > giving it a try. > > Here's what I've tried: > > 1. Install 64-bit Python (http://www.python.org/download/) > > a. Python 2.6.5 Windows X86-64 installer > > 2. Install Distribute (http://pypi.python.org/pypi/distribute) > > 3. Install 64-bit pywin32 (http://sourceforge.net/projects/pywin32/files/) > > a. pywin32-214.win-amd64-py2.6.exe > > 4. Installed Spambayes from source > > a. Download 1.1a6 source > > b. Extracted to C:\spambayes-1.1a6 > > c. python setup.py install > > d. It apparently installed to C:\Program > Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > 5. permissions to write in spambayes Program Files folder > > a. cd \Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > b. icacls spambayes /grant users:F /T > > 6. Install Outlook add-in > > a. Cd \spambayes-1.1a6\Outlook2000 > > b. Python addin.py > > Everything appears to have executed successfully, but when I start > Outlook and view the COM add-ins, SpamBayes is disabled. It says "Not > loaded. A runtime error occurred during the loading of the COM Add-in." > > I've looked for more details on the error in several places: > > 1. C:\Users\greg\AppData\Roaming\SpamBayes > > 2. C:\Users\greg\AppData\Local\SpamBayes > > 3. NT Event Log > > 4. Python Trace Collector in PythonWIn > > I was really hopeful that useful troubleshooting info would appear in > PythonWin, but nothing, which makes me think Outlook is probably failing > to load the Add-in at all. Any suggestions on what I can try from here? > > Thanks, > > Greg > > > > _______________________________________________ > 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 mhammond at skippinet.com.au Tue Jun 8 00:21:43 2010 From: mhammond at skippinet.com.au (Mark Hammond) Date: Tue, 08 Jun 2010 08:21:43 +1000 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: References: <4C0C9685.8020905@gmail.com> Message-ID: <4C0D70F7.3020304@skippinet.com.au> Nope - I'm on the 32bit version of Office - I wasn't aware a 64bit version was available, and I don't have a licence anyway - I'm still playing with a beta. I should have noticed this when you mentioned the 64it versions of Python and related tools... Good luck, and ping me if I can be of any help (although I am traveling for the next week so may be slow to reply) Mark On 7/06/2010 11:39 PM, Greg Bahns wrote: > Mi Mark, > > Thanks for the reply. I'll try playing with that later today. > > Point of clarification: you mentioned that you're on Win7 x64. I'm also running Outlook 2010 x64. Same for you? > > Thanks, > Greg > > ________________________________ > > From: Mark Hammond [mailto:skippy.hammond at gmail.com] > Sent: Mon 6/7/2010 2:49 AM > To: Greg Bahns > Cc: spambayes at python.org > Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit > > > > I got a bit further with this and I've got things partially working. > > 1) There seems to be an issue with how we detect if we are running as a > console for debugging purposes. In the Outlook2000\addin.py file there > is a block: > > try: > win32api.GetConsoleTitle() > except win32api.error: > # No console - if we are running from Python sources, > # redirect to win32traceutil, but if running from a binary > > This does *not* enter the exception handler as expected. If you modify > that block so the exception block is always entered, you should get the > logging back and should avoid an error caused by attempting to 'print' > in a GUI program. > > 2) After this things work for me, except that as with all versions of > SpamBayes, there is a problem filtering IMAP messages - and I didn't get > to test the POP behaviour. > > Apart from that the spambayes manager and toolbar items all worked fine. > This was on Windows 7 x64. > > HTH, > > Mark > > On 6/06/2010 8:09 AM, Greg Bahns wrote: >> According the posts I've seen in recent months, there's no sign that >> anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I'm >> giving it a try. >> >> Here's what I've tried: >> >> 1. Install 64-bit Python (http://www.python.org/download/) >> >> a. Python 2.6.5 Windows X86-64 installer >> >> 2. Install Distribute (http://pypi.python.org/pypi/distribute) >> >> 3. Install 64-bit pywin32 (http://sourceforge.net/projects/pywin32/files/) >> >> a. pywin32-214.win-amd64-py2.6.exe >> >> 4. Installed Spambayes from source >> >> a. Download 1.1a6 source >> >> b. Extracted to C:\spambayes-1.1a6 >> >> c. python setup.py install >> >> d. It apparently installed to C:\Program >> Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg >> >> 5. permissions to write in spambayes Program Files folder >> >> a. cd \Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg >> >> b. icacls spambayes /grant users:F /T >> >> 6. Install Outlook add-in >> >> a. Cd \spambayes-1.1a6\Outlook2000 >> >> b. Python addin.py >> >> Everything appears to have executed successfully, but when I start >> Outlook and view the COM add-ins, SpamBayes is disabled. It says "Not >> loaded. A runtime error occurred during the loading of the COM Add-in." >> >> I've looked for more details on the error in several places: >> >> 1. C:\Users\greg\AppData\Roaming\SpamBayes >> >> 2. C:\Users\greg\AppData\Local\SpamBayes >> >> 3. NT Event Log >> >> 4. Python Trace Collector in PythonWIn >> >> I was really hopeful that useful troubleshooting info would appear in >> PythonWin, but nothing, which makes me think Outlook is probably failing >> to load the Add-in at all. Any suggestions on what I can try from here? >> >> Thanks, >> >> Greg >> >> >> >> _______________________________________________ >> 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 greg at bahns.com Tue Jun 8 03:21:17 2010 From: greg at bahns.com (Greg Bahns) Date: Mon, 7 Jun 2010 21:21:17 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: <4C0D70F7.3020304@skippinet.com.au> References: <4C0C9685.8020905@gmail.com> <4C0D70F7.3020304@skippinet.com.au> Message-ID: I was able to capture the error below when trying to enable the add-in. Looks like write permissions in the win32com folder. I changed directory to the parent folder "C:\\Program Files\\Python26\\lib\\site-packages\\win32com\\gen_py\\" and ran this: C:\Program Files\Python26\Lib\site-packages> C:\Program Files\Python26\Lib\site-packages After this, I seem to have gotten past the write permissions, because I see the dicts.dat file now, with the current date and time. But now it just crashes Outlook. I'm going to try to figure out what's happening. Any troubleshooting tips would be appreciated. I'm a developer, but haven't done Python in years, and have never done Outlook add-ins. For starters it would help to know what the entry point is when Outlook tries to load the add-in. In the Outlook add-in dialog it shows that the add-in is pythoncom26.dll, but I don't see what script it's executing. Thanks, Greg pythoncom error: ERROR: server.policy could not create an instance. Traceback (most recent call last): File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 136, in CreateInstance return retObj._CreateInstance_(clsid, reqIID) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 194, in _CreateInstance_ myob = call_func(classSpec) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 727, in call_func return resolve_func(spec)(*args) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 716, in resolve_func module = _import_module(mname) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 735, in _import_module __import__(mname) File "C:\spambayes-1.1a6\Outlook2000\addin.py", line 101, in bForDemand=True, bValidateFile=bValidateGencache) File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 393, in EnsureModule module = GetModuleForTypelib(typelibCLSID, lcid, major, minor) File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 262, in GetModuleForTypelib AddModuleToCache(typelibCLSID, lcid, major, minor) File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 575, in AddModuleToCache _SaveDicts() File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 65, in _SaveDicts f = open(os.path.join(GetGeneratePath(), "dicts.dat"), "wb") IOError: [Errno 13] Permission denied: 'C:\\Program Files\\Python26\\lib\\site-packages\\win32com\\gen_py\\dicts.dat' pythoncom error: Unexpected gateway error Traceback (most recent call last): File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 136, in CreateInstance return retObj._CreateInstance_(clsid, reqIID) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 194, in _CreateInstance_ myob = call_func(classSpec) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 727, in call_func return resolve_func(spec)(*args) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 716, in resolve_func module = _import_module(mname) File "C:\Program Files\Python26\lib\site-packages\win32com\server\policy.py", line 735, in _import_module __import__(mname) File "C:\spambayes-1.1a6\Outlook2000\addin.py", line 101, in bForDemand=True, bValidateFile=bValidateGencache) File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 393, in EnsureModule module = GetModuleForTypelib(typelibCLSID, lcid, major, minor) File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 262, in GetModuleForTypelib AddModuleToCache(typelibCLSID, lcid, major, minor) File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 575, in AddModuleToCache _SaveDicts() File "C:\Program Files\Python26\lib\site-packages\win32com\client\gencache.py", line 65, in _SaveDicts f = open(os.path.join(GetGeneratePath(), "dicts.dat"), "wb") IOError: [Errno 13] Permission denied: 'C:\\Program Files\\Python26\\lib\\site-packages\\win32com\\gen_py\\dicts.dat' pythoncom error: CPyFactory::CreateInstance failed to create instance. (80004005) pythoncom error: ERROR: server.policy could not create an instance. -----Original Message----- From: Mark Hammond [mailto:mhammond at skippinet.com.au] Sent: Monday, June 07, 2010 6:22 PM To: Greg Bahns Cc: spambayes at python.org Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit Nope - I'm on the 32bit version of Office - I wasn't aware a 64bit version was available, and I don't have a licence anyway - I'm still playing with a beta. I should have noticed this when you mentioned the 64it versions of Python and related tools... Good luck, and ping me if I can be of any help (although I am traveling for the next week so may be slow to reply) Mark On 7/06/2010 11:39 PM, Greg Bahns wrote: > Mi Mark, > > Thanks for the reply. I'll try playing with that later today. > > Point of clarification: you mentioned that you're on Win7 x64. I'm also running Outlook 2010 x64. Same for you? > > Thanks, > Greg > > ________________________________ > > From: Mark Hammond [mailto:skippy.hammond at gmail.com] > Sent: Mon 6/7/2010 2:49 AM > To: Greg Bahns > Cc: spambayes at python.org > Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit > > > > I got a bit further with this and I've got things partially working. > > 1) There seems to be an issue with how we detect if we are running as > a console for debugging purposes. In the Outlook2000\addin.py file > there is a block: > > try: > win32api.GetConsoleTitle() > except win32api.error: > # No console - if we are running from Python sources, > # redirect to win32traceutil, but if running from a binary > > This does *not* enter the exception handler as expected. If you > modify that block so the exception block is always entered, you should > get the logging back and should avoid an error caused by attempting to 'print' > in a GUI program. > > 2) After this things work for me, except that as with all versions of > SpamBayes, there is a problem filtering IMAP messages - and I didn't > get to test the POP behaviour. > > Apart from that the spambayes manager and toolbar items all worked fine. > This was on Windows 7 x64. > > HTH, > > Mark > > On 6/06/2010 8:09 AM, Greg Bahns wrote: >> According the posts I've seen in recent months, there's no sign that >> anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I'm >> giving it a try. >> >> Here's what I've tried: >> >> 1. Install 64-bit Python (http://www.python.org/download/) >> >> a. Python 2.6.5 Windows X86-64 installer >> >> 2. Install Distribute (http://pypi.python.org/pypi/distribute) >> >> 3. Install 64-bit pywin32 >> (http://sourceforge.net/projects/pywin32/files/) >> >> a. pywin32-214.win-amd64-py2.6.exe >> >> 4. Installed Spambayes from source >> >> a. Download 1.1a6 source >> >> b. Extracted to C:\spambayes-1.1a6 >> >> c. python setup.py install >> >> d. It apparently installed to C:\Program >> Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg >> >> 5. permissions to write in spambayes Program Files folder >> >> a. cd \Program >> Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg >> >> b. icacls spambayes /grant users:F /T >> >> 6. Install Outlook add-in >> >> a. Cd \spambayes-1.1a6\Outlook2000 >> >> b. Python addin.py >> >> Everything appears to have executed successfully, but when I start >> Outlook and view the COM add-ins, SpamBayes is disabled. It says "Not >> loaded. A runtime error occurred during the loading of the COM Add-in." >> >> I've looked for more details on the error in several places: >> >> 1. C:\Users\greg\AppData\Roaming\SpamBayes >> >> 2. C:\Users\greg\AppData\Local\SpamBayes >> >> 3. NT Event Log >> >> 4. Python Trace Collector in PythonWIn >> >> I was really hopeful that useful troubleshooting info would appear in >> PythonWin, but nothing, which makes me think Outlook is probably >> failing to load the Add-in at all. Any suggestions on what I can try from here? >> >> Thanks, >> >> Greg >> >> >> >> _______________________________________________ >> 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 mhammond at skippinet.com.au Tue Jun 8 03:26:03 2010 From: mhammond at skippinet.com.au (Mark Hammond) Date: Tue, 08 Jun 2010 11:26:03 +1000 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: References: <4C0C9685.8020905@gmail.com> <4C0D70F7.3020304@skippinet.com.au> Message-ID: <4C0D9C2B.3050007@skippinet.com.au> On 8/06/2010 11:21 AM, Greg Bahns wrote: > I was able to capture the error below when trying to enable the add-in. > Looks like write permissions in the win32com folder. I changed > directory to the parent folder "C:\\Program > Files\\Python26\\lib\\site-packages\\win32com\\gen_py\\" and ran this: > > C:\Program Files\Python26\Lib\site-packages> *C:\Program > Files\Python26\Lib\site-packages* > > After this, I seem to have gotten past the write permissions, because I > see the dicts.dat file now, with the current date and time. Right - permissions is one reason Python doesn't install in Program Files by default. > > But now it just crashes Outlook. I?m going to try to figure out what?s > happening. Any troubleshooting tips would be appreciated. I?m a > developer, but haven?t done Python in years, and have never done Outlook > add-ins. For starters it would help to know what the entry point is when > Outlook tries to load the add-in. In the Outlook add-in dialog it shows > that the add-in is pythoncom26.dll, but I don?t see what script it?s > executing. Outlook2000\addin.py is the 'entry-point' - although the entry-point is actually the COM classes in that file, hence there is no __main__ block. You will notice all the initialization done in the mainline (eg, the code-block I mentioned yesterday) which would be a good place to start. Sadly, crashers like this can be hard to pin down without a debugger and debug versions of Python installed... Mark From greg at bahns.com Tue Jun 8 04:10:25 2010 From: greg at bahns.com (Greg Bahns) Date: Mon, 7 Jun 2010 22:10:25 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: <4C0D9C2B.3050007@skippinet.com.au> References: <4C0C9685.8020905@gmail.com> <4C0D70F7.3020304@skippinet.com.au> <4C0D9C2B.3050007@skippinet.com.au> Message-ID: What would you recommend for a debugging environment? -----Original Message----- From: Mark Hammond [mailto:mhammond at skippinet.com.au] Sent: Monday, June 07, 2010 9:26 PM To: Greg Bahns Cc: spambayes at python.org Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit On 8/06/2010 11:21 AM, Greg Bahns wrote: > I was able to capture the error below when trying to enable the add-in. > Looks like write permissions in the win32com folder. I changed > directory to the parent folder "C:\\Program > Files\\Python26\\lib\\site-packages\\win32com\\gen_py\\" and ran this: > > C:\Program Files\Python26\Lib\site-packages> *C:\Program > Files\Python26\Lib\site-packages* > > After this, I seem to have gotten past the write permissions, because > I see the dicts.dat file now, with the current date and time. Right - permissions is one reason Python doesn't install in Program Files by default. > > But now it just crashes Outlook. I'm going to try to figure out what's > happening. Any troubleshooting tips would be appreciated. I'm a > developer, but haven't done Python in years, and have never done > Outlook add-ins. For starters it would help to know what the entry > point is when Outlook tries to load the add-in. In the Outlook add-in > dialog it shows that the add-in is pythoncom26.dll, but I don't see > what script it's executing. Outlook2000\addin.py is the 'entry-point' - although the entry-point is actually the COM classes in that file, hence there is no __main__ block. You will notice all the initialization done in the mainline (eg, the code-block I mentioned yesterday) which would be a good place to start. Sadly, crashers like this can be hard to pin down without a debugger and debug versions of Python installed... Mark From greg at bahns.com Tue Jun 8 05:06:06 2010 From: greg at bahns.com (Greg Bahns) Date: Mon, 7 Jun 2010 23:06:06 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: References: <4C0C9685.8020905@gmail.com><4C0D70F7.3020304@skippinet.com.au><4C0D9C2B.3050007@skippinet.com.au> Message-ID: Well... I've added a print statement as the first and last line in every method in the OutlookAddin class in addin.py. It appears that it's calling and returning from __init__ successfully, but it crashes before getting to the print statement in any other method. I wonder if it's a problem with the COM interface with the win32com module. Greg -----Original Message----- From: spambayes-bounces+greg=bahns.com at python.org [mailto:spambayes-bounces+greg=bahns.com at python.org] On Behalf Of Greg Bahns Sent: Monday, June 07, 2010 10:10 PM To: Mark Hammond Cc: spambayes at python.org Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit What would you recommend for a debugging environment? -----Original Message----- From: Mark Hammond [mailto:mhammond at skippinet.com.au] Sent: Monday, June 07, 2010 9:26 PM To: Greg Bahns Cc: spambayes at python.org Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit On 8/06/2010 11:21 AM, Greg Bahns wrote: > I was able to capture the error below when trying to enable the add-in. > Looks like write permissions in the win32com folder. I changed > directory to the parent folder "C:\\Program > Files\\Python26\\lib\\site-packages\\win32com\\gen_py\\" and ran this: > > C:\Program Files\Python26\Lib\site-packages> *C:\Program > Files\Python26\Lib\site-packages* > > After this, I seem to have gotten past the write permissions, because > I see the dicts.dat file now, with the current date and time. Right - permissions is one reason Python doesn't install in Program Files by default. > > But now it just crashes Outlook. I'm going to try to figure out what's > happening. Any troubleshooting tips would be appreciated. I'm a > developer, but haven't done Python in years, and have never done > Outlook add-ins. For starters it would help to know what the entry > point is when Outlook tries to load the add-in. In the Outlook add-in > dialog it shows that the add-in is pythoncom26.dll, but I don't see > what script it's executing. Outlook2000\addin.py is the 'entry-point' - although the entry-point is actually the COM classes in that file, hence there is no __main__ block. You will notice all the initialization done in the mainline (eg, the code-block I mentioned yesterday) which would be a good place to start. Sadly, crashers like this can be hard to pin down without a debugger and debug versions of Python installed... Mark _______________________________________________ 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 Ocean at cobaltnight.com Tue Jun 8 15:29:47 2010 From: Ocean at cobaltnight.com (Ocean) Date: Tue, 8 Jun 2010 09:29:47 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit In-Reply-To: <4C0C9685.8020905@gmail.com> References: <4C0C9685.8020905@gmail.com> Message-ID: <000001cb070e$b3caf3b0$1b60db10$@com> I tried REM'ing out those three lines (from "try" to "except"). That allowed Outlook to start without the customary error, which I was very happy to see. However, the toolbar buttons don't work. When I try to click on the main SpamBayes button, nothing happens. There is also no log file in my temp directory. A few things to note: 1. I did not uninstall and re-install the add-in after making that change to the source. 2. I'm running 1.1a4 from source. 3. I still have the changes I told you about before, such as making sure the logging goes to an actual file even though it's running from source. 4. I'm running Outlook 2007 32-bit on Win 7 x64. If I made a mistake anywhere above in my procedure, please let me know. Otherwise, I'd appreciate any advice you have on rectifying the current predicament. :) > -----Original Message----- > From: spambayes-bounces+ocean=cobaltnight.com at python.org [mailto:spambayes- > bounces+ocean=cobaltnight.com at python.org] On Behalf Of Mark Hammond > Sent: Monday, June 07, 2010 2:50 AM > To: Greg Bahns > Cc: spambayes at python.org > Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit > > I got a bit further with this and I've got things partially working. > > 1) There seems to be an issue with how we detect if we are running as a > console for debugging purposes. In the Outlook2000\addin.py file there > is a block: > > try: > win32api.GetConsoleTitle() > except win32api.error: > # No console - if we are running from Python sources, > # redirect to win32traceutil, but if running from a binary > > This does *not* enter the exception handler as expected. If you modify > that block so the exception block is always entered, you should get the > logging back and should avoid an error caused by attempting to 'print' > in a GUI program. > > 2) After this things work for me, except that as with all versions of > SpamBayes, there is a problem filtering IMAP messages - and I didn't get > to test the POP behaviour. > > Apart from that the spambayes manager and toolbar items all worked fine. > This was on Windows 7 x64. > > HTH, > > Mark > > On 6/06/2010 8:09 AM, Greg Bahns wrote: > > According the posts I've seen in recent months, there's no sign that > > anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I'm > > giving it a try. > > > > Here's what I've tried: > > > > 1. Install 64-bit Python (http://www.python.org/download/) > > > > a. Python 2.6.5 Windows X86-64 installer > > > > 2. Install Distribute (http://pypi.python.org/pypi/distribute) > > > > 3. Install 64-bit pywin32 (http://sourceforge.net/projects/pywin32/files/) > > > > a. pywin32-214.win-amd64-py2.6.exe > > > > 4. Installed Spambayes from source > > > > a. Download 1.1a6 source > > > > b. Extracted to C:\spambayes-1.1a6 > > > > c. python setup.py install > > > > d. It apparently installed to C:\Program > > Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > > > 5. permissions to write in spambayes Program Files folder > > > > a. cd \Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > > > b. icacls spambayes /grant users:F /T > > > > 6. Install Outlook add-in > > > > a. Cd \spambayes-1.1a6\Outlook2000 > > > > b. Python addin.py > > > > Everything appears to have executed successfully, but when I start > > Outlook and view the COM add-ins, SpamBayes is disabled. It says "Not > > loaded. A runtime error occurred during the loading of the COM Add-in." > > > > I've looked for more details on the error in several places: > > > > 1. C:\Users\greg\AppData\Roaming\SpamBayes > > > > 2. C:\Users\greg\AppData\Local\SpamBayes > > > > 3. NT Event Log > > > > 4. Python Trace Collector in PythonWIn > > > > I was really hopeful that useful troubleshooting info would appear in > > PythonWin, but nothing, which makes me think Outlook is probably failing > > to load the Add-in at all. Any suggestions on what I can try from here? > > > > Thanks, > > > > Greg > > > > > > > > _______________________________________________ > > 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 > > _______________________________________________ > 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 Ocean at cobaltnight.com Sun Jun 13 17:54:18 2010 From: Ocean at cobaltnight.com (Ocean) Date: Sun, 13 Jun 2010 11:54:18 -0400 Subject: [Spambayes] Win7 and Outlook 2010 64-bit References: <4C0C9685.8020905@gmail.com> Message-ID: <000601cb0b10$b6114b00$2233e100$@com> To clarify, I went into the COM manager, and saw that it read that a runtime error occurred during the loading of it. > -----Original Message----- > From: Ocean [mailto:Ocean at cobaltnight.com] > Sent: Tuesday, June 08, 2010 9:30 AM > To: 'mhammond at skippinet.com.au' > Cc: 'spambayes at python.org' > Subject: RE: [Spambayes] Win7 and Outlook 2010 64-bit > > > I tried REM'ing out those three lines (from "try" to "except"). That allowed Outlook > to start without the customary error, which I was very happy to see. > > However, the toolbar buttons don't work. When I try to click on the main > SpamBayes button, nothing happens. There is also no log file in my temp directory. > > > A few things to note: > > 1. I did not uninstall and re-install the add-in after making that change to the source. > > 2. I'm running 1.1a4 from source. > > 3. I still have the changes I told you about before, such as making sure the logging goes to > an actual file even though it's running from source. > > 4. I'm running Outlook 2007 32-bit on Win 7 x64. > > > If I made a mistake anywhere above in my procedure, please let me know. > Otherwise, I'd appreciate any advice you have on rectifying the current predicament. :) > > > > > > > -----Original Message----- > > From: spambayes-bounces+ocean=cobaltnight.com at python.org [mailto:spambayes- > > bounces+ocean=cobaltnight.com at python.org] On Behalf Of Mark Hammond > > Sent: Monday, June 07, 2010 2:50 AM > > To: Greg Bahns > > Cc: spambayes at python.org > > Subject: Re: [Spambayes] Win7 and Outlook 2010 64-bit > > > > I got a bit further with this and I've got things partially working. > > > > 1) There seems to be an issue with how we detect if we are running as a > > console for debugging purposes. In the Outlook2000\addin.py file there > > is a block: > > > > try: > > win32api.GetConsoleTitle() > > except win32api.error: > > # No console - if we are running from Python sources, > > # redirect to win32traceutil, but if running from a binary > > > > This does *not* enter the exception handler as expected. If you modify > > that block so the exception block is always entered, you should get the > > logging back and should avoid an error caused by attempting to 'print' > > in a GUI program. > > > > 2) After this things work for me, except that as with all versions of > > SpamBayes, there is a problem filtering IMAP messages - and I didn't get > > to test the POP behaviour. > > > > Apart from that the spambayes manager and toolbar items all worked fine. > > This was on Windows 7 x64. > > > > HTH, > > > > Mark > > > > On 6/06/2010 8:09 AM, Greg Bahns wrote: > > > According the posts I've seen in recent months, there's no sign that > > > anyone has gotten SpamBayes to work with Outlook 2010 64-bit, so I'm > > > giving it a try. > > > > > > Here's what I've tried: > > > > > > 1. Install 64-bit Python (http://www.python.org/download/) > > > > > > a. Python 2.6.5 Windows X86-64 installer > > > > > > 2. Install Distribute (http://pypi.python.org/pypi/distribute) > > > > > > 3. Install 64-bit pywin32 (http://sourceforge.net/projects/pywin32/files/) > > > > > > a. pywin32-214.win-amd64-py2.6.exe > > > > > > 4. Installed Spambayes from source > > > > > > a. Download 1.1a6 source > > > > > > b. Extracted to C:\spambayes-1.1a6 > > > > > > c. python setup.py install > > > > > > d. It apparently installed to C:\Program > > > Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > > > > > 5. permissions to write in spambayes Program Files folder > > > > > > a. cd \Program Files\Python26\Lib\site-packages\spambayes-1.1a6-py2.6.egg > > > > > > b. icacls spambayes /grant users:F /T > > > > > > 6. Install Outlook add-in > > > > > > a. Cd \spambayes-1.1a6\Outlook2000 > > > > > > b. Python addin.py > > > > > > Everything appears to have executed successfully, but when I start > > > Outlook and view the COM add-ins, SpamBayes is disabled. It says "Not > > > loaded. A runtime error occurred during the loading of the COM Add-in." > > > > > > I've looked for more details on the error in several places: > > > > > > 1. C:\Users\greg\AppData\Roaming\SpamBayes > > > > > > 2. C:\Users\greg\AppData\Local\SpamBayes > > > > > > 3. NT Event Log > > > > > > 4. Python Trace Collector in PythonWIn > > > > > > I was really hopeful that useful troubleshooting info would appear in > > > PythonWin, but nothing, which makes me think Outlook is probably failing > > > to load the Add-in at all. Any suggestions on what I can try from here? > > > > > > Thanks, > > > > > > Greg > > > > > > > > > > > > _______________________________________________ > > > 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 > > > > _______________________________________________ > > 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 mfinnegan3 at aol.com Mon Jun 14 15:35:26 2010 From: mfinnegan3 at aol.com (Michael Finnegan) Date: Mon, 14 Jun 2010 09:35:26 -0400 Subject: [Spambayes] Still Deciding Message-ID: <000001cb0bc6$73e3cc10$5bab6430$@com> I have an iMac computer, three email addresses, (with AOL, GMAIL and Apple's Me). I use the Mail program and unfortunately have to use Microsoft Outlook in a virtual machine with Microsoft XP. I receive the same three email accounts mail on both the Mac side and the Windows side in "Mail" and "Outlook" respectively. How would I use SpamBayes in my situation? Thanks, Mike Finnegan -------------- next part -------------- An HTML attachment was scrubbed... URL: From p_buddhika at yahoo.com Mon Jun 14 16:47:18 2010 From: p_buddhika at yahoo.com (Prasanna Buddhika) Date: Mon, 14 Jun 2010 14:47:18 +0000 (GMT) Subject: [Spambayes] Spambayes filtering problem Message-ID: <540411.64079.qm@web29011.mail.ird.yahoo.com> Hi, ? I have a problem with our spambayes software. One of our user is asking a question (Richard) why our company users (peter) email going in to junk suspect even after he train the email from this user. I can not see why but I have attached the scores for emails which was in the junk suspect and also in the inbox from the same sender. Is there anything I can do to white list our own domain. Also appreciate if any body can explain what exactly causing to put this email in to the junk suspect. ? Thank you, Prasanna -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: scores.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 15758 bytes Desc: not available URL: From fgerlak at apk.net Mon Jun 14 18:46:58 2010 From: fgerlak at apk.net (Frank Gerlak) Date: Mon, 14 Jun 2010 12:46:58 -0400 Subject: [Spambayes] Problem Message-ID: <001c01cb0be1$34791a10$9d6b4e30$@net> I have received emails that showed up for a second, disappeared from my in box, and could not be found anywhere. As I investigated I noticed that my "Junk Suspects" folder is missing. I created a new folder named Junk Suspects. Will that work. I am using Windows XP and Outlook 7. In Spambays the item is checked for sending suspect spam to Junk Suspects, but "Junk Suspects" is grayed out. I created my "Junk Suspects" folder under the browse in that option. Frank Gerlak -------------- next part -------------- An HTML attachment was scrubbed... URL: From stevesag at gmail.com Thu Jun 17 02:06:22 2010 From: stevesag at gmail.com (Steve) Date: Wed, 16 Jun 2010 17:06:22 -0700 Subject: [Spambayes] SpamBayes & Outlook 2010 Message-ID: <000001cb0db0$ec7c85e0$c57591a0$@gmail.com> First I want to say thanks for all the work in building and maintaining SpamBayes. I've used SB now for many, many years and am very happy with it. Encouraging friends, family and clients to install and use SB. Today I rebuilt my system, installed MS Office 2010, installed SP 1.04 only to find that SB does not show up on the new ribbon bar/menu that Outlook 2010 now has (of course this worked fine in Office 2007). The SB installed appeared to recognize that Outlook was installed, and it doesn't surprise me that the SB tools don't show up on the ribbon menu, but, is there any way to configure SB in this situation? I presume that getting SB to play nice with Outlook 2010 is something that the SB team has on its list of changes, hopefully that will not be too long in coming. Steve Sagnotti KulaKiko.com ComputerScribe.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From rferrelli at ppgsd.com Fri Jun 18 17:46:46 2010 From: rferrelli at ppgsd.com (Ryan Ferrelli) Date: Fri, 18 Jun 2010 08:46:46 -0700 Subject: [Spambayes] Spambayes not working Message-ID: <673C356D772340798C513E67A5F5CF88@RFerrelli> I just installed spambayes and it doesn't work, each time I try to train it tells me I have to enable spambayes. What's going on???? Ryan -------------- next part -------------- An HTML attachment was scrubbed... URL: From rferrelli at ppgsd.com Fri Jun 18 19:14:21 2010 From: rferrelli at ppgsd.com (Ryan Ferrelli) Date: Fri, 18 Jun 2010 10:14:21 -0700 Subject: [Spambayes] this is what I am seeing what is the problem? Message-ID: <292831F409774ABFAAC3649647C458C7@RFerrelli> Ryan -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 12953 bytes Desc: not available URL: From ytam at rsui.com Mon Jun 21 15:17:39 2010 From: ytam at rsui.com (Tam, Yu-Lai) Date: Mon, 21 Jun 2010 09:17:39 -0400 Subject: [Spambayes] Windows 7 Compatibility? Message-ID: <45F23FBC03690A479089AC1B854FA76C0452ED061E@rsuiatlex1.rsui.com> Do you have a version of spambayes that is compatible to windows 7, office 2007 & 2010? Regards, Yu-Lai Tam RSUI PH: 404-682-7632 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sparx1 at cox.net Tue Jun 22 03:32:03 2010 From: sparx1 at cox.net (jsparx) Date: Mon, 21 Jun 2010 18:32:03 -0700 Subject: [Spambayes] Spam Bayes not working Message-ID: <000301cb11aa$b7f154b0$27d3fe10$@net> I previously used spam bayes and thought it was top quality. Had a hard drive failure.and had to reload windows..and strange things happened. The Spam Bayes reference exists at the top of my inbox page (upper left)...but if you highlight a message, and hit delete as SPAM.it tells you that you need to instead manually move the message to the SPAM folder. I no longer have a subfolder named SPAM. Just Junk and junk suspects. I previously had a SPAM folder. So I downloaded SPAMBayes once again and it said it installed. Told me to close Outlook during installation which I did..then opened Outlook and get an error message saying : "There appears to be a problem with the Spam Bayes configuration. Please select Spambayes Manager and run the configuration wizard to reconfigure the filter". I have no clue what that means..and am up a stump (I still have no SPAM sub-folder either). HELP!! Jim Sparks Sparx1 at cox.net -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at vangasse.eu Tue Jun 22 10:19:34 2010 From: amedee at vangasse.eu (Amedee Van Gasse) Date: Tue, 22 Jun 2010 10:19:34 +0200 (CEST) Subject: [Spambayes] Windows 7 Compatibility? In-Reply-To: <45F23FBC03690A479089AC1B854FA76C0452ED061E@rsuiatlex1.rsui.com> References: <45F23FBC03690A479089AC1B854FA76C0452ED061E@rsuiatlex1.rsui.com> Message-ID: On Mon, June 21, 2010 15:17, Tam, Yu-Lai wrote: > > Do you have a version of spambayes that is compatible to windows 7, office > 2007 & 2010? Perhaps this should be added to the FAQ? Because it really is a frequently asked question. Perhaps http://spambayes.sourceforge.net/windows.html and http://spambayes.sourceforge.net/index.html too? From amedee at amedee.be Tue Jun 22 10:46:55 2010 From: amedee at amedee.be (Amedee Van Gasse (be)) Date: Tue, 22 Jun 2010 10:46:55 +0200 (CEST) Subject: [Spambayes] sb_mboxtrain.py: Trained 11 out of 16 messages Message-ID: Any ideas why Spambayes (sb_mboxtrain.py) doesn't want to train on 5 emails? ---------------------------- Original Message ---------------------------- Subject: Cron which sb_mboxtrain.py > /dev/null && sb_mboxtrain.py -r -d $HOME/.hammie.db -g $HOME/Maildir/.ztrain.confirmed-ham -s $HOME/Maildir/.ztrain.confirmed-spam From: "Cron Daemon" Date: Sun, June 20, 2010 00:00 To: amedee at amedee.be -------------------------------------------------------------------------- Training ham (/home/amedee/Maildir/.ztrain.confirmed-ham): Reading /home/amedee/Maildir/.ztrain.confirmed-ham/cur as Maildir 10 16 Trained 11 out of 16 messages Training spam (/home/amedee/Maildir/.ztrain.confirmed-spam): Reading /home/amedee/Maildir/.ztrain.confirmed-spam/cur as Maildir 3 Trained 3 out of 3 messages -- From 4tking at bellsouth.net Thu Jun 24 14:36:04 2010 From: 4tking at bellsouth.net (Bill King) Date: Thu, 24 Jun 2010 08:36:04 -0400 Subject: [Spambayes] for Win7 x64 and Outlook 2010 Message-ID: <000001cb1399$cfeb9d00$6fc2d700$@bellsouth.net> Tried your most recent non-beta version (1.04 I believe) and Outlook never restart successfully without disabling the add-on. Had to remove it. I tried re-download and install twice to be sure. If you come up with something for this combination of Win7 x64 and Outlook 2010, please let me know and I will be happy to be an early beta tester. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From lhark at cox.net Thu Jun 24 14:30:45 2010 From: lhark at cox.net (Leigh Hark) Date: Thu, 24 Jun 2010 05:30:45 -0700 Subject: [Spambayes] (no subject) Message-ID: <6579D871A443417F926EC204468C165E@harksu0g9i5hgp> Greetings, How do I get the junk suspects icon back on my computer? Thanx, Leigh Ann Hark -------------- next part -------------- An HTML attachment was scrubbed... URL: From greg at bahns.com Thu Jun 24 15:42:43 2010 From: greg at bahns.com (Greg Bahns) Date: Thu, 24 Jun 2010 09:42:43 -0400 Subject: [Spambayes] for Win7 x64 and Outlook 2010 In-Reply-To: <000001cb1399$cfeb9d00$6fc2d700$@bellsouth.net> References: <000001cb1399$cfeb9d00$6fc2d700$@bellsouth.net> Message-ID: Hi Bill, Question: are you running Outlook x64? Greg From: spambayes-bounces+greg=bahns.com at python.org [mailto:spambayes-bounces+greg=bahns.com at python.org] On Behalf Of Bill King Sent: Thursday, June 24, 2010 8:36 AM To: spambayes at python.org Subject: [Spambayes] for Win7 x64 and Outlook 2010 Tried your most recent non-beta version (1.04 I believe) and Outlook never restart successfully without disabling the add-on. Had to remove it. I tried re-download and install twice to be sure. If you come up with something for this combination of Win7 x64 and Outlook 2010, please let me know and I will be happy to be an early beta tester. Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From amedee at vangasse.eu Sat Jun 26 15:05:26 2010 From: amedee at vangasse.eu (Amedee Van Gasse) Date: Sat, 26 Jun 2010 15:05:26 +0200 Subject: [Spambayes] sb_mboxtrain.py: Trained 11 out of 16 messages In-Reply-To: <19493.63492.159950.194350@montanaro.dyndns.org> References: <19493.63492.159950.194350@montanaro.dyndns.org> Message-ID: <4C25FB16.4040404@vangasse.eu> On 26-06-10 14:52, skip at pobox.com wrote: > > Amedee> Any ideas why Spambayes (sb_mboxtrain.py) doesn't want to train > Amedee> on 5 emails? > > Most likely it probably thought it had already trained on those other five > messages. Try adding the -f flag and see if that helps: > > % sb_mboxtrain.py -h > Usage: /Users/skip/local/bin/sb_mboxtrain.py [OPTIONS] ... > > Where OPTIONS is one or more of: > ... > -f > force training, ignoring the trained header. Use this if you > need to rebuild your database from scratch. > ... > > Skip > That's possible, I have been experimenting with Spambayes on Windows and Linux. My previous experiments may have left some headers. From skip at pobox.com Sat Jun 26 15:53:15 2010 From: skip at pobox.com (skip at pobox.com) Date: Sat, 26 Jun 2010 08:53:15 -0500 Subject: [Spambayes] Still Deciding In-Reply-To: <000001cb0bc6$73e3cc10$5bab6430$@com> References: <000001cb0bc6$73e3cc10$5bab6430$@com> Message-ID: <19494.1611.150864.602423@montanaro.dyndns.org> Mike> I have an iMac computer, three email addresses, (with AOL, GMAIL Mike> and Apple's Me). I use the Mail program and unfortunately have to Mike> use Microsoft Outlook in a virtual machine with Microsoft XP. I Mike> receive the same three email accounts mail on both the Mac side Mike> and the Windows side in "Mail" and "Outlook" respectively. Mike> How would I use SpamBayes in my situation? Wow. Quite the schizophrenic net presence... I suppose what you choose depends on how completely you want SpamBayes to cover your bases for you. It clearly works with Outlook, so that's an option I suspect, at least as long as you're using POP3. I've experimented with using Gmail's IMAP protocol but it didn't work too well. (Gmail has its own spam filtering and SpamBayes and Gmail tended to "fight" as I recall.) Practically speaking, it might be best to just use whatever spam filters your email providers give you then apply SpamBayes where you can easily. Stacking them together if possible seems to work pretty well. For example, I get email via pobox.com (skip at pobox.com) which is then relayed to GMail (skip.montanaro at gmail.com). Both pobox.com and GMail apply spam filters. I then run the result through SpamBayes. Needless to say, SpamBayes generally has very little work to do. For you maybe just install the Outlook plugin and be done with it. You could use the POP3 proxy or the IMAP filter on the Mac side of things, though which you use depends on how you retrieve email from your providers. -- Skip Montanaro - skip at pobox.com - http://www.smontanaro.net/ From skip at pobox.com Sat Jun 26 16:03:57 2010 From: skip at pobox.com (skip at pobox.com) Date: Sat, 26 Jun 2010 09:03:57 -0500 Subject: [Spambayes] Spambayes filtering problem In-Reply-To: <540411.64079.qm@web29011.mail.ird.yahoo.com> References: <540411.64079.qm@web29011.mail.ird.yahoo.com> Message-ID: <19494.2253.440512.17552@montanaro.dyndns.org> Prasanna> I have a problem with our spambayes software. One of our user Prasanna> is asking a question (Richard) why our company users (peter) Prasanna> email going in to junk suspect even after he train the email Prasanna> from this user. While Richard has trained one email from Peter as ham, he's trained two emails as spam, so emails "from:addr:Peter" or "from:name:Peter at latinagood.com" are scored as relative spammy. My guess is that Richard made some training mistakes. The best course is to probably retrain from scratch. -- Skip Montanaro - skip at pobox.com - http://www.smontanaro.net/ From skip at pobox.com Sat Jun 26 16:08:50 2010 From: skip at pobox.com (skip at pobox.com) Date: Sat, 26 Jun 2010 09:08:50 -0500 Subject: [Spambayes] Problem In-Reply-To: <001c01cb0be1$34791a10$9d6b4e30$@net> References: <001c01cb0be1$34791a10$9d6b4e30$@net> Message-ID: <19494.2546.840165.766266@montanaro.dyndns.org> Frank> I have received emails that showed up for a second, disappeared Frank> from my in box, and could not be found anywhere. As I Frank> investigated I noticed that my "Junk Suspects" folder is missing. Frank> I created a new folder named Junk Suspects. Will that work. I don't know if that will work, but I thought there is a question/answer in the FAQ or something in the troubleshooting document about retrieving your Junk Suspects folder from the trash. I couldn't find that quickly, but stumbled upon this page: http://www.cs.umd.edu/faq/spambayes/restoreSpambayes.html which might provide the necessary clues you need. -- Skip Montanaro - skip at pobox.com - http://www.smontanaro.net/ From info at torenbeek.nl Tue Jun 29 09:11:12 2010 From: info at torenbeek.nl (Richard Torenbeek) Date: Tue, 29 Jun 2010 09:11:12 +0200 Subject: [Spambayes] SpamBayes stopped working with Outlook 2007 Message-ID: <69CA8992A3321446B9E882C8F5D6E7E71A005D@server.Torenbeek.local> Beste Peter, Ik zit in het Nederlandse menu te zoeken naar de add-inns...weet je toevallig hoe ik daar moet komen? Beste groet, Richard -------------- next part -------------- An HTML attachment was scrubbed... URL: From gliding at reeder.co.uk Wed Jun 30 11:06:47 2010 From: gliding at reeder.co.uk (Richard Reeder) Date: Wed, 30 Jun 2010 10:06:47 +0100 Subject: [Spambayes] outlook 2007 and windows 7 permissions Message-ID: <000001cb1833$9808bfa0$c81a3ee0$@co.uk> I have been running Spambayes 1.1a4, on outlook 2007 under windows 7 64 bit, for quite some time very successfully. Last week outlook started to give error messages at startup saying spambayes addin could not be loaded, try restarting outlook. I have found some posts suggesting excluding from DEP this did not work for me, I found the new version of spambayes 1.1a6, this still did not work. Another post suggested removing the com addin from outlook and adding it again. I just got the message only administrators can remove this (although I am an admin) so I found the outlook.exe and opened using run as administrator, Spambayes loaded and worked fine. So looks like some permissions that are required by spambayes need changing for spambayes to work, these must have been changed by a windows update. Any ideas what permissions it could be requiring? Thanks, Richard -------------- next part -------------- An HTML attachment was scrubbed... URL: