masqmail
view 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 |
line source
1 # masqmail.conf
2 # Example configuration for masqmail
5 # The name with which masqmail identifies itself to others:
6 # CHANGING THIS IS REQUIRED!
7 host_name="striped.patchwork.net"
9 # Nets considered local, for immediate delivery attempts:
10 # ALL hosts not included in either local_host or local_nets are
11 # considered to be 'outside', meaning that messages to them will be queued
12 #local_nets="*.patchwork.net;blue;striped"
14 # accept connections on these interfaces:
15 # Change this to something like: "localhost:25;foo:25" if other machines
16 # on your network shall be able to connect to masqmail.
17 #listen_addresses="localhost:25"
19 # use syslogd for logs?
20 #use_syslog=false
23 # online detection:
24 #
25 # for 'file' uncomment next 2 lines
26 #online_detect = file
27 #online_file = "/var/run/masqmail/masqmail-route"
30 # example for local delivery to an mda:
31 #
32 #mbox_default=mda
33 #mda="/usr/bin/procmail -Y -d ${rcpt_local}"
36 # alias expansion:
37 #
38 #alias_file = "/etc/aliases"
39 #caseless_matching = false
42 # special routes:
44 # CHANGING THIS IS REQUIRED!
45 # You can use as many routes (one for each provider) as you like:
46 #connect_route.example = "/etc/masqmail/example.route"
48 # you can also give a list of routes for a single connection:
49 #connect_route.foobar = "/etc/masqmail/foo.route;/etc/masqmail/bar.route"
51 # you can also set routes for the local net:
52 #local_net_route = "/etc/masqmail/local.route;/etc/masqmail/other_lan.route"