I'm trying to setup a samba server and allow an administrative account to access (not need to browse) the users home directories. I've done this previously using mapping files and it was working perfectly. Suddenly due to an update the things stopped to work, and whenever i try to access the userfolders i get NT_ACCESS_DENIED. Very strange...
BTW here is my smb.conf (very simple)
Code:
[global]
admin users = root, smbadmin
# logon drive = P:
username map = /etc/samba/user.map
logon home = \\%L\%U\.9xprofile
wins support = true
netbios name = SERVER
netbios aliases = Server
server string = Server - SMB Suse
usershare max shares = 208
workgroup = LISCARA
os level = 65
# add user script = /usr/sbin/useradd -m %u
security = user
# add machine script = /usr/sbin/useradd -c Machine -d
#/var/lib/nobody -s /bin/false %m$
[homes]
comment = Home Dirs
valid users = %S
read only = No
browseable = No
admin users = root, smbadmin
Any idea?