Get desktop application:
View/edit binary Protocol Buffers messages
Default hostname to use when saying hello. This is used: 1) To say hello to clients, for aesthetic purposes. 2) As the HELO/EHLO domain on outgoing SMTP connections, so ideally it would resolve back to the server. In practice, it's not a big deal if it isn't, but it makes troubleshooting easier. Default: the system's hostname.
Maximum email size, in megabytes. Default: 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".
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".
Addresses to listen on for submission-over-TLS (usually port 465). Default: "systemd", which means systemd passes sockets to us. systemd sockets must be named with "FileDescriptorName=submission_tls".
Address for the monitoring http server. Do NOT expose this to the public internet. Default: no monitoring http server.
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: "maildrop".
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).
Directory where we store our persistent data. Default: "/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: "+".
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: ".".
Path where to write the mail log to. If "<syslog>", log using the syslog (at MAIL|INFO priority). If "<stdout>", log to stdout; if "<stderr>", log to stderr. Default: <syslog>
Enable dovecot authentication. Domains that don't have an user database will be authenticated via dovecot.
Dovecot userdb path. If dovecot_auth is set and this is not, we will try to autodetect it. Example: /var/run/dovecot/auth-userdb
Dovecot client path. If dovecot_auth is set and this is not, we will try to autodetect it. Example: /var/run/dovecot/auth-client
Expect incoming SMTP connections to use the HAProxy protocol. This allows deploying chasquid behind a HAProxy server, as the address information is preserved.