/etc/zentyal/users.conf is in zentyal-users 2.3.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | # users.conf - configuration file for zentyal-users
#
# This file contains the most basic settings, most other stuff is configured
# using the web interface.
#
# Everything after a '#' character is ignored
#
# All whitespace is ignored
#
# Config keys are set this way:
#
# key = value
#
# They may contain comments at the end:
#
# key = value # this is ignored
# supported paswords formats: sha1, md5, lm, nt, digest (base64) and realm (hex)
# default password format in LDAP (should be either sha1 or md5)
default_password_format = sha1
# password formats to store
password_formats = sha1,md5,lm,nt,digest,realm
# whether to create user homes or not
mk_home = yes
# default mode for home directory (umask mode)
dir_umask = 0077
# list of groups new users will be added to
#extra_groups = cdrom,floppy,audio,video,plugdev
# enable quota support
enable_quota = yes
# adsync base DN used to bind to AD
# (if not defined will try to detect it automatically)
#adsync_dn =
# additional backup domain controller allowed to push passwd changes
# you can add 127.0.0.1 here for debbuging purposes
#adsync_bdc = 127.0.0.1,192.168.1.200,10.0.5.200
# synchronization frequency with LDAP slaves
slave_time = 5
# synchronization frequency with Active Directory
adsync_time = 5
# port for AD synchronization
adsync_port = 6677
|