2 Oct
2006
2 Oct
'06
4:29 a.m.
From: "Sinang, Danny" <D.Sinang@spi-bpo.com> Sent: Monday, 2 de October de 2006 4:02 Hello.
In Unix, there's the "su" command which admins can use to log in as another user.
Is there a similar facility in Zope ?
If not, is there a way for admins to view the passwords of their users ?
Depending of your Zope version, if you don't encrypt the user passwords ( check "properties" tab of your User Folder ) you can retrieve the user password. External method example: def getPasswordByName(self, username): user = self.acl_users.getUser(username) password = user._getPassword() return password Best regards, @228, Nbk