Nathan Harris wrote: > Hi Gordon, > > I upgraded to 0.20 and now I'm getting the following in my log and > pythonfilter is dead. > > courierfilter: Module "clamav" indicated in pythonfilter.conf does not > exist.
That indicates an import error. Generally speaking, a python script (pythonfilter) doesn't know if an import failed because a module it is trying to import is missing, or if that module tries to import something else that's missing. So, "clamav" is probably present as part of your pythonfilter installation, but "pyclamav" probably is not. Run "python" and try to: import pyclamav Does that work? > I have a /etc/pythonfilter.conf and it has the proper read access for > everyone. Any ideas? Only the courier user really needs access to it. ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ courier-users mailing list [email protected] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
