Automounters and permissions
The issue
When something like udisks, the freedesktop automounter, mounts a non-*nix filesystem like FAT or NTFS, it has to choose how to map permissions from a different model -- FAT is itself permissionless, and NTFS has ACLs but resolving those to users only makes sense if you match identities between systems (possibly federate them).
That might make sense for your network-based profiles in LDAP-like domain setups, but basically for anything else.
So instead it fakes permissions, pretending on the linux side that each directory and each file has a pretedetmined set of permission bits, and not really translating that to the other side.
Because it mounts as the current user, and it decides that in some situations you don't want your mount open to the world, this brings up the potential problem that files copied from such a mount won't allow group or other to do anything.
That's nice and strict, but there are a good number of situations (e.g. shared computers) where you'll just end up with files you can'd do anything with without a bunch of permission bother.
Solutions
Details
To read
https://wiki.archlinux.org/index.php/Udev#Mount_drives_as_a_normal_user
http://ubuntuforums.org/showthread.php?t=168221
http://www.reactivated.net/writing_udev_rules.html#ownership