I know it used to work... thats how the comuter biz goes:
Everything that failed worked before it failed
Apple should provide this setting as a default, but they don't.
This setting addresses your exact issue and if its not enabled then you certainly should enable it.
Open Terminal and paste this command (it changes nothing)
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server AclsEnabled -bool YES
If the command does NOT return a '1' or true, then you need to change the setting
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server AclsEnabled -bool YES
sudo serveradmin stop smb
sudo serveradmin start smb
Try it... let me know if this works.
Jeff
Only f the setting above does not fix the issue, I need a little more info:
Using an SMB client connection, create a new folder then a file inside that folder.
I need to see the permissions of the folder and test file, here's the best way (in Terminal of course)
Open Terminal and type:
sudo ls -ale
# put a space after the "-ale", but don't hit return yet.
# now drag the test folder into the Terminal window and you should end up with
sudo ls -ale /Path/toYour/Folder
The output will look something like this
$ sudo ls -ale /Path/ToFolder
total 0
drwxr-xr-x@ 7 root staff 238 Feb 8 09:11 .
0: user:_spotlight inherited allow list,search,file_inherit,directory_inherit
1: group:staff allow list,add_file,search,delete,add_subdirectory,delete_child,readattr,writeattr,re adextattr,writeextattr,readsecurity,file_inherit,directory_inherit
drwx------@ 68 uptimejeff staff 2312 Feb 8 08:56 ..
0: group:com.apple.sharepoint.group.5 allow search
-rw-r--r--@ 1 uptimejeff staff 0 Feb 8 09:11 file-1.txt
0: user:_spotlight inherited allow read,execute
1: group:staff inherited allow read,write,execute,delete,append,readattr,writeattr,readextattr,writeextattr,re adsecurity
Thats what I need to see to assist more.
Jeff