2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch## Settings specific to SMTP Submission
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# SMTP Submission logout format string:
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# %i - total number of bytes read from client
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# %o - total number of bytes sent to client
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# %{command_count} - Number of commands received from client
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# %{reply_count} - Number of replies sent to client
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# %{session} - Session ID of the login session
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# %{transaction_id} - ID of the current transaction, if any
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_logout_format = in=%i out=%o
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Host name reported by the SMTP service, for example to the client in the
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# initial greeting and to the relay server in the HELO/EHLO command.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Default is the system's real hostname@domain.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Maximum size of messages accepted for relay. This announced in the SIZE
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# capability. If not configured, this is either determined from the relay
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# server or left unlimited if no limit is known (relay will reply with error
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# if some unknown limit exists there, which is duly passed to our client).
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_max_mail_size =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Maximum number of recipients accepted per connection (default: unlimited)
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_max_recipients =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Relay server configuration:
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# The Dovecot SMTP submission service directly proxies the mail transaction
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# to the SMTP relay configured here.
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Host name for the relay server (required)
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_host =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Port for the relay server
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_port = 25
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Is the relay server trusted? This determines whether we try to send
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# (Postfix-specific) XCLIENT data to the relay server
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_trusted = no
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Authentication data for the relay server if authentication is required
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_user =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_master_user =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_password =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# SSL configuration for connection to relay server
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# submission_relay_ssl:
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# Indicates whether SSL is used for the connection to the relay server. The
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# following values are defined for this setting:
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# no - No SSL is used
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# smtps - An SMTPS connection (immediate SSL) is used
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# starttls - The STARTTLS command is used to establish SSL layer
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_ssl = no
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# submission_relay_ssl_verify:
9166602da091ee9445d0b044474d3f89383504ddStephan Bosch# Configures whether the SSL certificate of the relay server is to be
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_ssl_verify = yes
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# Write protocol logs for relay connection to this directory for debugging
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch#submission_relay_rawlog_dir =
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch# BURL is configured implicitly by IMAP URLAUTH
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch # Space-separated list of plugins to load (default is global mail_plugins).
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch # Maximum number of SMTP submission connections allowed for a user from
2cbbe9b4829adb184c83dbf780316f4144559054Stephan Bosch # NOTE: The username is compared case-sensitively.