When the admin user create the user, I customize the code to switch on and off "homeFolderCreationEager" but it can only delay the creation of the folder. When the corresponding user logs in, the folder for that user is automatically created.
How can I prevent this from happening ? Any kind help is appreciated.
As stated in the wiki, you can configure the users to share the Company Home space. If you're using LDAP synchronization, you can configure it with
Otherwise you need to overrule the default Spring configuration and define the following bean (the
name
attribute is of course important as you need to override default configurations):There are other default providers available, have a look at
authentication-services-context.xml
for more.Hi Every user has a 'home folder' this is a location to an existing space and if no one is supplied it will create an home folder.
You can see this very clearly by connecting an AD/LDAP to Alfresco, there you can supply the home folder. Hence you don't need to disable the homefoldercreation, you need to supply homefolder = app:company or something.
So you need to find out where this property is and how you can set it. Then you wont have this problem.
I studied the source and found that
getHomeFolder method of class PortableHomeFolderManager class create the folder automatically.
So I commented out that part and return home space node like following
Use the second property to disable home folder creation completely. The properties are meant to be static and system-wide.
If you want to fine-tune the creation according to some other logic, you can wire in your own homeFolderManager bean.