##############
- # umask sets a permission mask for all file creations. the mask used here
- # disallows writes by the "group" and disallows "others" completely.
- umask 027
+ # umask sets a permission mask for all file creations.
+ # this mask disallows writes by "group" and "others".
+ umask 022
+ # this mask disallows writes by the "group" and disallows "others" completely.
+ #umask 027
+
# ulimit sets user limits. we set the maximum allowed core dump file size
# to zero, because it is obnoxious to see the core dumps from crashed
# programs lying around everywhere.