/etc/zentyal/samba.conf is in zentyal-samba 2.3.3.
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 54 55 56 57 58 59 60 61 62 63 64 65 66 | # samba.conf - configuration file for zentyal-samba
#
# 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
# -- Recycle Bin settings --
# Name of the recycle bin directory
# If a full path like /tmp/foo is entered,
# the same Recycle Bin will be used for all the shares
repository = RecycleBin
# Permissions of the recycle bin directory
directory_mode = 0700
# Keep directory structure
keeptree = Yes
# Keep copies if a file is deleted more than once
versions = Yes
# Specifies whether a file's access date should be updated
# when the file is moved to the repository.
#touch = Yes
# Files that are smaller than the number of bytes
# specified by this parameter will not be put into
# the repository.
#minsize = 0
# Files that are larger than the number of bytes
# specified by this parameter will not be put into
# the Recycle Bin. (0 = disabled)
maxsize = 0
# List of files that should not be stored when deleted,
# but deleted in the regular way.
#exclude = *.tmp|*.temp
# When files from these directories are deleted,
# they are not put into the recycle bin but are deleted
# in the regular way.
excludedir = /tmp|/var/tmp
# Specifies a list of paths
# (wildcards such as * and ? are supported)
# for which no versioning should be used.
# Only useful when versions is enabled.
#noversions = *.foo|*.bar
# -- End of Recycle Bin settings --
# Listen on external interfaces
listen_external = no
|