Sebastian Sippl wrote: > I need to get the name of the current user , in a python script.... In a recent Zope, you should be able to use: from AccessControl import getSecurityManager user = getSecurityManager().getUser() Cheers, Evan @ Zope