masqmail

annotate examples/masqmail.conf @ 246:4cff8638dd9b

SMTP client: tries EHLO now always first Changed the behavior of the SMTP client. Now always an EHLO greeting is sent, no matter what kind of greeting text the server had sent. If the EHLO failed, an HELO greeting is tried as fall back. This is the behavior RFC 2821 requires (section 3.2). This change will fix setups that were not possible to sent to a server because that requires AUTH but hadn't said ``ESMTP'' in its greeting message. See also: Debian bug #349211 Thanks to Steffen (inne)
author markus schnalke <meillo@marmaro.de>
date Thu, 28 Oct 2010 16:40:02 -0300
parents 6ff77c63e714
children f10a56dc7481
rev   line source
meillo@183 1 # masqmail.conf
meillo@37 2 # Example configuration for masqmail
meillo@0 3
meillo@0 4
meillo@37 5 # The name with which masqmail identifies itself to others:
meillo@0 6 # CHANGING THIS IS REQUIRED!
meillo@0 7 host_name="striped.patchwork.net"
meillo@0 8
meillo@0 9 # Nets considered local, for immediate delivery attempts:
meillo@0 10 # ALL hosts not included in either local_host or local_nets are
meillo@0 11 # considered to be 'outside', meaning that messages to them will be queued
meillo@0 12 #local_nets="*.patchwork.net;blue;striped"
meillo@0 13
meillo@0 14 # accept connections on these interfaces:
meillo@183 15 # Change this to something like: "localhost:25;foo:25" if other machines
meillo@183 16 # on your network shall be able to connect to masqmail.
meillo@183 17 #listen_addresses="localhost:25"
meillo@0 18
meillo@0 19 # use syslogd for logs?
meillo@183 20 #use_syslog=false
meillo@0 21
meillo@0 22
meillo@0 23 # online detection:
meillo@0 24 #
meillo@0 25 # for 'file' uncomment next 2 lines
meillo@0 26 #online_detect = file
meillo@37 27 #online_file = "/var/run/masqmail/masqmail-route"
meillo@0 28
meillo@183 29
meillo@0 30 # example for local delivery to an mda:
meillo@0 31 #
meillo@0 32 #mbox_default=mda
meillo@0 33 #mda="/usr/bin/procmail -Y -d ${rcpt_local}"
meillo@0 34
meillo@183 35
meillo@0 36 # alias expansion:
meillo@0 37 #
meillo@183 38 #alias_file = "/etc/aliases"
meillo@243 39 #caseless_matching = false
meillo@0 40
meillo@0 41
meillo@0 42 # special routes:
meillo@0 43
meillo@0 44 # CHANGING THIS IS REQUIRED!
meillo@0 45 # You can use as many routes (one for each provider) as you like:
meillo@183 46 #connect_route.example = "/etc/masqmail/example.route"
meillo@0 47
meillo@0 48 # you can also give a list of routes for a single connection:
meillo@183 49 #connect_route.foobar = "/etc/masqmail/foo.route;/etc/masqmail/bar.route"
meillo@0 50
meillo@0 51 # you can also set routes for the local net:
meillo@0 52 #local_net_route = "/etc/masqmail/local.route;/etc/masqmail/other_lan.route"