This file is indexed.

/etc/chasquid/chasquid.conf is in chasquid 0.01+git20161124.6479138-2+b2.

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
67
68
69
70
71
72
# Default hostname to use when saying hello.
# This is used to say hello to clients, for aesthetic purposes.
# Default: the system's hostname.
#hostname: "mx.example.com"

# Maximum email size, in megabytes.
# Default: 50.
#max_data_size_mb: 50

# Addresses to listen on for SMTP (usually port 25).
# Default: "systemd", which means systemd passes sockets to us.
# systemd sockets must be named with "FileDescriptorName=smtp".
#smtp_address: "systemd"
#smtp_address: ":25"

# Addresses to listen on for submission (usually port 587).
# Default: "systemd", which means systemd passes sockets to us.
# systemd sockets must be named with "FileDescriptorName=submission".
#submission_address: "systemd"
#submission_address: ":587"

# Address for the monitoring http server.
# Do NOT expose this to the public internet.
# Default: no monitoring http server.
#monitoring_address: "127.0.0.1:1099"

# Mail delivery agent (MDA, also known as LDA) to use.
# This should point to the binary to use to deliver email to local users.
# The content of the email will be passed via stdin.
# If it exits unsuccessfully, we assume the mail was not delivered.
# Default: "procmail".
#mail_delivery_agent_bin: "procmail"

# Command line arguments for the mail delivery agent. One per argument.
# Some replacements will be done.
# On an email sent from marsnik@mars to venera@venus:
#  - %from%        -> from address (marsnik@mars)
#  - %from_user%   -> from user (marsnik)
#  - %from_domain% -> from domain (mars)
#  - %to%        -> to address (venera@venus)
#  - %to_user%   -> to user (venera)
#  - %to_domain% -> to domain (venus)
#
# Default: "-f", "%from%", "-d", "%to_user%"  (adequate for procmail and
# maildrop).
#mail_delivery_agent_args: "-f"
#mail_delivery_agent_args: "%from%"
#mail_delivery_agent_args: "-d"
#mail_delivery_agent_args: "%to_user%"

# Directory where we store our persistent data.
# Default: "/var/lib/chasquid"
#data_dir: "/var/lib/chasquid"

# Suffix separator, to perform suffix removal of local users.
# For example, if you set this to "-+", email to local user
# "user-blah" and "user+blah" will be delivered to "user".
# Including "+" is strongly encouraged, as it is assumed for email
# forwarding.
# Default: "+".
#suffix_separators: "+"

# Characters to drop from the user part on local emails.
# For example, if you set this to "._", email to local user
# "u.se_r" will be delivered to "user".
# Default: ".".
#drop_characters: "."

# Path where to write the mail log to.
# If "<syslog>", log using the syslog (at MAIL|INFO priority).
# Default: <syslog>
#mail_log_path: "<syslog>"