# Installation anomalies describes any special instructions to follow when
# installing files from the skel/install directory.

# PERMISSIONS is a dictionary of filenames and what octal permissions should be
# assigned to them.
PERMISSIONS = {".tmda/crypt_key": 0600}

# VIRT_TEST is a regular expression test which can be applied to a user's HOME
# directory.  If the test matches, then the user is assumed to be a virtual
# user.
VIRTUAL_TEST = "^/home/vpopmail/domains/"

# REAL_ONLY is a list of files which should only be copied if the user logging
# in is "real" (i.e. VIRTUAL_TEST did not match the user's HOME directory).
REAL_ONLY = [".qmail", ".qmail-default"]

# VIRTUAL_ONLY is a list of files which should only be copied if the user 
# logging in is a virtual user (i.e. VIRTUAL_TEST matched the user's HOME 
# directory).
VIRTUAL_ONLY = \
  ["%(Parent)s/.qmail-%(User)s", "%(Parent)s/.qmail-%(User)s-default"]
