context.acl_users.userFolderAddUser(username, pass, roles, 0) context.user_folders.manage_addFolder(username,'',0,0) context.user_folders.username.manage_addProperty('First Name', fname, 'string')
context.user_folders[username].manage_addProperty('First Name', fname, 'string')
context.acl_users.getUser('test').getRoles()
and I get a list back. But the list contains "Authenticated" in addition to the actual roles of the user. I haven't logged in as this user, I am running the script as the Manager user (admin), so getRoles() shouldn't return "Authenticated" right? Does anybody know what is going on with and/or how to solve either of these problems?
this is normal and not a problem. any user with roles other than Anonymous will have "Authenticated" added to the list of roles. that does not mean the user is currently logged in. jens