After trying for some time, i accidently figured it out...
So, maybe this is usefulle to anyone else:
If you want to achieve the settings as i mentioned earlier, here's the config:
Code:
DefaultRoot /myftproot !MySpecialGroup
DefaultRoot /otherroot MySpecialGroup //note the ! being absent.
Now, i wanted to have a limitedgroup also, but this didnt work:
Code:
DefaultRoot /myftproot !MySpecialGroup
DefaultRoot /otherroot MySpecialGroup //note the ! being absent.
DefaultRoot /LimitedRoot LimitedGroup
You MUST add !limitedgroup to the first defaultroot it "could" belong to...:
Working conf:
Code:
DefaultRoot /myftproot !MySpecialGroup !LimitedGroup
DefaultRoot /otherroot MySpecialGroup //note the ! being absent.
DefaultRoot /LimitedRoot LimitedGroup
Happy proftpd'ing....