~ubuntu-branches/ubuntu/hardy/exim4/hardy-proposed

« back to all changes in this revision

Viewing changes to debian/exim4-config-medium/debian/config/conf.d/conf.d/main/02_exim4-config-medium_options

  • Committer: Bazaar Package Importer
  • Author(s): Marc Haber
  • Date: 2005-07-02 06:08:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050702060834-qk17pd52kb9nt3bj
Tags: 4.52-1
* new upstream version 4.51. (mh)
  * adapt 70_remove_exim-users_references
  * remove 37_gnutlsparams
  * adapt 36_pcre
  * adapt 31_eximmanpage
* fix package priorities to have them in sync with override again. (mh)
* Fix error in nb (Norwegian) translation.
  Thanks to Helge Hafting. (mh). Closes: #315775
* Standards-Version: 3.6.2, no changes needed. (mh)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
### main/02_exim4-config_options
3
 
#################################
4
 
 
5
 
# This option defines the access control list that is run when an
6
 
# SMTP RCPT command is received.
7
 
#
8
 
acl_smtp_rcpt = acl_check_rcpt
9
 
 
10
 
# This option defines the access control list that is run when an
11
 
# SMTP DATA command is received.
12
 
#
13
 
acl_smtp_data = acl_check_data
14
 
 
15
 
# If you want unqualified recipient addresses to be qualified with a different
16
 
# domain to unqualified sender addresses, specify the recipient domain here.
17
 
# If this option is not set, the qualify_domain value is used.
18
 
#
19
 
# qualify_recipient = 
20
 
 
21
 
# The following line must be uncommented if you want Exim to recognize
22
 
# addresses of the form "user@[10.11.12.13]" that is, with a "domain literal"
23
 
# (an IP address) instead of a named domain. The RFCs still require this form,
24
 
# but it makes little sense to permit mail to be sent to specific hosts by
25
 
# their IP address in the modern Internet. This ancient format has been used
26
 
# by those seeking to abuse hosts by using them for unwanted relaying. If you
27
 
# really do want to support domain literals, uncomment the following line, and
28
 
# see also the "domain_literal" router.
29
 
#
30
 
# allow_domain_literals
31
 
 
32
 
.ifndef DC_minimaldns
33
 
# The setting below causes Exim to do a reverse DNS lookup on all incoming
34
 
# IP calls, in order to get the true host name. If you feel this is too
35
 
# expensive, you can specify the networks for which a lookup is done, or
36
 
# remove the setting entirely.
37
 
#
38
 
host_lookup = *
39
 
.endif
40
 
 
41
 
# The settings below, which are actually the same as the defaults in the
42
 
# code, cause Exim to make RFC 1413 (ident) callbacks for all incoming SMTP
43
 
# calls. You can limit the hosts to which these calls are made, and/or change
44
 
# the timeout that is used. If you set the timeout to zero, all RFC 1413 calls
45
 
# are disabled. RFC 1413 calls are cheap and can provide useful information
46
 
# for tracing problem messages, but some hosts and firewalls have problems
47
 
# with them. This can result in a timeout instead of an immediate refused
48
 
# connection, leading to delays on starting up an SMTP session.
49
 
#
50
 
rfc1413_hosts = *
51
 
rfc1413_query_timeout = 30s
52
 
 
53
 
# By default, Exim expects all envelope addresses to be fully qualified, that
54
 
# is, they must contain both a local part and a domain. If you want to accept
55
 
# unqualified addresses (just a local part) from certain hosts, you can specify
56
 
# these hosts by setting one or both of
57
 
#
58
 
# sender_unqualified_hosts =
59
 
# recipient_unqualified_hosts =
60
 
#
61
 
# to control sender and recipient addresses, respectively. When this is done,
62
 
# unqualified addresses are qualified using the settings of qualify_domain
63
 
# and/or qualify_recipient (see above).
64
 
 
65
 
# If you want Exim to support the "percent hack" for certain domains,
66
 
# uncomment the following line and provide a list of domains. The "percent
67
 
# hack" is the feature by which mail addressed to x%y@z (where z is one of
68
 
# the domains listed) is locally rerouted to x@y and sent on. If z is not one
69
 
# of the "percent hack" domains, x%y is treated as an ordinary local part. This
70
 
# hack is rarely needed nowadays; you should not enable it unless you are sure
71
 
# that you really need it.
72
 
#
73
 
# percent_hack_domains =
74
 
 
75
 
# When Exim can neither deliver a message nor return it to sender, it "freezes"
76
 
# the delivery error message (aka "bounce message"). There are also other
77
 
# circumstances in which messages get frozen. They will stay on the queue for
78
 
# ever unless one of the following options is set.
79
 
 
80
 
# This option unfreezes frozen bounce messages after two days, tries
81
 
# once more to deliver them, and ignores any delivery failures.
82
 
#
83
 
ignore_bounce_errors_after = 2d
84
 
 
85
 
# This option cancels (removes) frozen messages that are older than a week.
86
 
#
87
 
timeout_frozen_after = 7d
88
 
 
89
 
freeze_tell = postmaster
90
 
 
91
 
# uucp should be able to set envelope-from to arbitrary values
92
 
trusted_users = uucp
93
 
 
94
 
# uncomment this to get the Debian version in the SMTP dialog
95
 
# smtp_banner = "${primary_hostname} ESMTP Exim ${version_number} (Debian package DEBCONFpackageversionDEBCONF) ${tod_full}"
96