smtpd.conf man page on OpenBSD

Man page or keyword search:  
man Server   11362 pages
apropos Keyword Search (all sections)
Output format
OpenBSD logo
[printable version]

SMTPD.CONF(5)		  OpenBSD Programmer's Manual		 SMTPD.CONF(5)

NAME
     smtpd.conf - Simple Mail Transfer Protocol daemon configuration file

DESCRIPTION
     smtpd.conf is the configuration file for the mail daemon smtpd(8).

     Comments can be put anywhere in the file using a hash mark (#), and
     extend to the end of the current line.  Arguments containing whitespace
     should be surrounded by double quotes (").

     Macros can be defined that will later be expanded in context.  Macro
     names must start with a letter, and may contain letters, digits and
     underscores.  Macro names may not be reserved words (for example listen,
     accept, port).  Macros are not expanded inside quotes.

     For example:

	   wan_if = "fxp0"
	   listen on $wan_if
	   listen on $wan_if tls enable auth

     Some configuration directives expect expansion of their parameters at
     runtime.  Such directives (for example deliver to maildir, deliver to
     mda, relay via) may use format specifiers which will be expanded before
     delivery or relaying.  The following formats are currently supported: %a
     expands to the user part of the email address prior to the resolution of
     aliases; %u expands to the user part after aliases resolution and will
     typically be the system account; %d expands to the domain part of the
     email address; %U expands to the user part of the sender email address;
     %D expands to the domain part of the sender email address.

     Additional configuration files can be included with the include keyword,
     for example:

	   include "/etc/mail/smtpd.conf.local"

     The syntax of smtpd.conf is described below.

     expire n {s|m|h|d}
	     Specify how long a message can stay in the queue.	The default
	     value is 4 days.  For example:

		   expire 4d	   # expire after 4 days
		   expire 10h	   # expire after 10 hours

     hostname name
	     Specify the domain name of the server.  By default the current
	     host name is used, as returned by hostname(1).

     listen on interface [port port] [tls | smtps] [certificate name] [enable
	      auth]
	     Specify an interface and port to listen on.  An IP address or
	     domain name may be used in place of interface.

	     Secured connections are provided either using STARTTLS (tls), by
	     default on port 25, or SMTPS (smtps), by default on port 465.
	     Host certificates may be used for these connections, and are
	     searched for in the /etc/mail/certs directory.  If certificate is
	     specified, a certificate <name>.crt and key <name>.key are
	     searched for.  If no certificate is specified, the default
	     interface name is instead used, for example fxp0.crt and
	     fxp0.key.	Creation of certificates is documented in starttls(8).

	     If the enable auth parameter is used, any remote sender that
	     passed SMTPAUTH is treated as if it was the server's local user
	     that was sending the mail.	 This means that filter rules using
	     "from local" will be matched.

     map map { source type source }
	     Maps are used to provide additional configuration information for
	     smtpd(8).

	     map may be named freely.

	     type may be one of the following:

	     db	      Mappings are stored in a file created using makemap(8).
		      This is the default type if none is specified.
	     dns      Not implemented yet.
	     plain    Mappings are stored in a plain text file using the same
		      format as used to generate makemap(8) mappings.

	     source specifies the source of the map data.  It must be an
	     absolute path to a file for the ``file'' and ``db'' map types, or
	     a domain name for the ``dns'' map type.

     size n  Specify a maximum message size of n bytes.	 The argument may
	     contain a multiplier, as documented in scan_scaled(3).

     accept | reject
	     smtpd(8) accepts and rejects messages based on information
	     gathered during the SMTP session.

	     For each message processed by the daemon, the filter rules are
	     evaluated in sequential order, from first to last.	 The first
	     matching rule decides what action is taken.  If no rule matches
	     the message, the default action is to reject the message.

	     Following the accept/reject decision comes the client's IP
	     address filter:

	     from all
		     Make the rule match regardless of the IP of connecting
		     client.

	     from local
		     The rule matches only locally originating connections.
		     This is the default, and may be omitted.

	     from network
		     The rule matches if the connection is made from the
		     specified network.

	     Next comes the selection based on the domain the message is sent
	     to:

	     for all
		     Make the rule match regardless of the domain it is sent
		     to.

	     for domain domain [alias map]
		     This rule applies to mail destined for the specified
		     domain.  This parameter supports the `*' wildcard, so
		     that a single rule for all sub-domains can be used, for
		     example:

			   accept for domain "*.example.com" deliver to mbox

		     If specified, map is used for looking up alternative
		     destinations for addresses in this domain.

	     for local [alias map]
		     This rule applies to mail destined to ``localhost'' and
		     to the server's fully qualified domain name, as returned
		     by hostname(1).

	     for virtual map
		     This rule applies to mail destined for the virtual
		     domains specified in the map map.	For an example of how
		     to configure a virtual map, see makemap(8).

	     Finally, the method of delivery is specified:

	     deliver to maildir path
		     Mail is added to a maildir.  Its location, path, may
		     contain format specifiers that are expanded before use
		     (see above).  If path is not provided, then ~/Maildir is
		     assumed.

	     deliver to mbox
		     Mail is delivered to the local user's system mailbox in
		     /var/mail.

	     deliver to mda program
		     Mail is piped to the specified program, which is run with
		     the privileges of the user the message is destined to.
		     This parameter may use conversion specifiers that are
		     expanded before use (see above).

	     relay   Mail is relayed.  The routing decision is based on the
		     DNS system.

	     relay via host [port port] [tls | smtps | ssl] [certificate name]
		      [auth map]
		     Mail is relayed through the specified host and port.

		     The communication channel may be secured using the tls or
		     smtps options.  The special keyword ssl means that any of
		     the two is acceptable: SMTPS is tried first, STARTTLS
		     second.  If a certificate name is specified and exists in
		     the /etc/mail/certs directory with a .crt extension, it
		     will be used if the remote server requests a client
		     certificate.  Creation of certificates is documented in
		     starttls(8).

		     If an SMTPAUTH session with host is desired, use the auth
		     parameter to specify the map that holds the credentials.

	     expire n {s|m|h|d}
		     Specify how long a message that matched this rule can
		     stay in the queue.

FILES
     /etc/mail/smtpd.conf     Default smtpd(8) configuration file.
     /var/spool/smtpd/	      Spool directories for mail during processing.

EXAMPLES
     The default smtpd.conf file which ships with OpenBSD listens on the
     loopback network interface (lo0), and allows for mail from users and
     daemons on the local machine, as well as permitting email to remote
     servers.  Some more complex configurations are given below.

     This first example is the same as the default configuration, but all
     outgoing mail is forwarded to a gmail SMTP server.	 A secrets file is
     needed to specify a username and password:

	   # touch /etc/mail/secrets
	   # chmod 640 /etc/mail/secrets
	   # chown root:_smtpd /etc/mail/secrets
	   # echo "smtp.gmail.com  username:password" > /etc/mail/secrets
	   # makemap /etc/mail/secrets

     smtpd.conf would look like this:

	   listen on lo0
	   map aliases { source db "/etc/mail/aliases.db" }
	   map secrets { source db "/etc/mail/secrets.db" }
	   accept for local deliver to mbox
	   accept for all relay via smtp.gmail.com tls auth "secrets"

     In this second example, the aim is to permit mail relaying for any user
     that can authenticate using their normal login credentials.  An RSA
     certificate must be provided to prove the server's identity.  The mail
     server has an external interface pppoe0.  Mail with a local destination
     should be sent to procmail.  First, the RSA certificate is created:

	   # openssl genrsa -out /etc/mail/certs/pppoe0.key 4096
	   # openssl req -new -x509 -key /etc/mail/certs/pppoe0.key \
		   -out /etc/mail/certs/pppoe0.crt -days 365
	   # chmod 600 /etc/mail/certs/pppoe0.*

     In the example above, a certificate valid for one year was created.  The
     configuration file would look like this:

	   listen on lo0
	   listen on pppoe0 tls enable auth
	   map aliases { source db "/etc/mail/aliases.db" }
	   accept for local deliver to mda "procmail -f -"
	   accept from all for domain example.org deliver to mda "procmail -f -"
	   accept for all relay

SEE ALSO
     mailer.conf(5), makemap(8), smtpd(8)

HISTORY
     smtpd(8) first appeared in OpenBSD 4.6.

OpenBSD 4.9		       December 18, 2010		   OpenBSD 4.9
[top]

List of man pages available for OpenBSD

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net