I may have caught my white whale; I'm still checking to make sure it's not just a guppy fish that those dam kids down the road have painted white.
First thing is the ACL's against some of the folders in ~/Library are meant to be there. They are there to stop anyone, including the account holder, from deleting important well known directories. Like the Printers directory. From what I've seen they look like this (when using "ls -leh"):
drwx------+ 196 aaron staff 6.5K 8 Feb 20:44 Preferences
0: group:everyone deny delete
Which is fine, but my ~/Library directory also had this:
drwx------+ 196 aaron staff 6.5K 15 Jan 22:48 Preferences
0: group:everyone deny add
file,delete,add_subdirectory,deletechild,writeattr,writeextattr,chown
1: group:everyone deny delete
That's a lot of bad mojo hanging around. So I removed the first entry in the ACL on Preferences using 2 (recently) live chickens and executing the following from ~/Library:
sudo chmod -a# 0 Preferences
The directory listing now looks like this:
drwx------+ 196 aaron staff 6.5K 8 Feb 20:53 Preferences
0: group:everyone deny delete
From this position I could do things that had previously been out of reach:
- Change my desktop picture
- Change mail preferences
- Change subscriptions in New Fire
I don't know why I did not see this ACL entry last time. Nor do I know what is creating it, so I keep an eye on it and see if it returns.
Let me know if this helps anyone.
Aaron