Message3016
the instance_config.DATABASE and files directories
are not group writeable, that caused some problems
for me (mail gw and web interface).
maybe you can incorporate some stuff like this
in dbinit.py (init function).
(not tested and certainly not thread save)
if not os.path.isdir(dbdir):
# only db and files directories should be group
# writeable
base=os.path.split(instance_config.DATABASE)[0]
if not os.path.isdir(base)
os.makedirs(base)
try:
oldMask=os.umask(0002)
os.makedirs(dbdir)
finally:
os.umask(oldMask)
greetings
uwe
|
|
Date |
User |
Action |
Args |
2009-02-03 14:23:26 | admin | link | issue550442 messages |
2009-02-03 14:23:26 | admin | create | |
|