Good day all, CentOS 5/Latest Vanilla Samba that comes with CentOS. I have a folder on a samba share that has the following permissions: [root at server]# getfacl TechnicalReports/ # file: TechnicalReports # owner: root # group: projectteam user::rwx user:dnk:rwx group::rwx mask::rwx other::--- default:user::rwx default:user:dnk:rwx default:group::rwx default:mask::rwx default:other::--- now the user dnk is not a member of the "projectteam" group. And for some reason the dnk user is denied access to this folder even though through setfacl the id was given full access to the folder. I had set the permissions like so: chown -R root:projectteam $BASE/TechnicalReports chmod -R 770 $BASE/TechnicalReports chmod g+s $BASE/TechnicalReports setfacl -R -m u:dnk:rwx $BASE/TechnicalReports setfacl -m d:u:dnk:rwx $BASE/TechnicalReports Ideas? dnk