cancel
Showing results for 
Search instead for 
Did you mean: 

Default Permission in Home Space

etzapata
Champ in-the-making
Champ in-the-making
Hello Everyone!
     I was wondering how to change the default permission of a user for his/her homespace. Everytime I create a user, the dafault permission for the users' HOME SPACE is set to 'ALL' so I have to change the user's permission manually. This was tedious work for me when I created 400+ users and I have to change their permission into 'READ ONLY' permission.
     Is there some config file (which file?) that needs to be configure?
     I hope someone can help :lol:

     Thank you very much! :lol:

EriC
4 REPLIES 4

jey
Champ in-the-making
Champ in-the-making
Ok have a look at the reply I posted here.

Your answer is in the same file. And the problem is closely the same!

The bean you need to modify is userHomesHomeFolderProvider.
In the file Alfresco\tomcat\webapps\alfresco\WEB-INF\classes\alfresco\authority-services-context.xml

You can modify default rights given to users on their personal home folders.
<property name="userPemissions">
            <set>
                <value>All</value>
            </set>
        </property>

You can also read the second advice I have written in the end of the post mentionned before.

etzapata
Champ in-the-making
Champ in-the-making
Thank you very much jey!
You have been very helpful!
Cheers!

EriC

guhann
Champ in-the-making
Champ in-the-making
In authentication-services-context.xml file … in companyHomeFolderProvider i added
<property name="userPemissions">
            <set>
                <value>Consumer</value>
            </set>
        </property>

now for the newly created users,both roles are displaying(Consumer and ALL). How do i remoe ALL permission?? i also tried
<property name="clearExistingPermissionsOnCreate">
           <value>true</value>
       </property>

but still both the roles are displaying, Can anyone help me?

andy
Champ on-the-rise
Champ on-the-rise
Hi

For creating user via the UI the permissions are set in a different place.

It is part of the UI config. At some point this will all be matched up.

Andy