mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
"Zulip Voyager" was a name invented during the Hack Week to open source Zulip for what a single-system Zulip server might be called, as a Star Trek pun on the code it was based on, "Zulip Enterprise". At the time, we just needed a name quickly, but it was never a good name, just a placeholder. This removes that placeholder name from much of the codebase. A bit more work will be required to transition the `zulip::voyager` Puppet class, as that has some migration work involved.
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# This file is managed by puppet; local changes will be overridden.
|
|
|
|
smtpd_banner = $myhostname ESMTP $mail_name (Zulip)
|
|
biff = no
|
|
|
|
# appending .domain is the MUA's job.
|
|
append_dot_mydomain = no
|
|
|
|
readme_directory = no
|
|
|
|
# TLS parameters
|
|
smtpd_tls_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
|
|
smtpd_tls_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
|
|
smtpd_use_tls=yes
|
|
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
|
|
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
|
|
|
|
smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination
|
|
myhostname = <%= @fqdn %>
|
|
alias_maps = hash:/etc/aliases
|
|
alias_database = hash:/etc/aliases
|
|
transport_maps = hash:/etc/postfix/transport
|
|
myorigin = /etc/mailname
|
|
mydestination = localhost, <%= @postfix_mailname %>
|
|
relayhost =
|
|
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
|
|
mailbox_size_limit = 0
|
|
recipient_delimiter = +
|
|
inet_interfaces = all
|
|
inet_protocols = all
|
|
|
|
# This enables us to do a catchall
|
|
virtual_alias_maps = regexp:/etc/postfix/virtual
|
|
|
|
# Needed to accept mail with percents without trying to interpret as
|
|
# percent-style routing.
|
|
allow_percent_hack = no
|
|
allow_untrusted_routing = yes
|
|
strict_rfc821_envelopes = no
|