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

« back to all changes in this revision

Viewing changes to debian/debconf/conf.d/router/100_exim4-config_domain_literal

  • 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
1
 
2
 
# This router routes to remote hosts over SMTP by explicit IP address,
3
 
# when an email address is given in "domain literal" form, for example,
4
 
# <user@[192.168.35.64]>. The RFCs require this facility. However, it is
5
 
# little-known these days, and has been exploited by evil people seeking
6
 
# to abuse SMTP relays. Consequently it is commented out in the default
7
 
# configuration. If you uncomment this router, you also need to uncomment
8
 
# allow_domain_literals above, so that Exim can recognize the syntax of
9
 
# domain literal addresses.
10
 
 
11
 
# domain_literal:
12
 
#   debug_print = "R: domain_literal for $local_part@$domain"
13
 
#   driver = ipliteral
14
 
#   domains = ! +local_domains
15
 
#   transport = remote_smtp
16
 
 
 
2
### router/100_exim4-config_domain_literal
 
3
#################################
 
4
 
 
5
# This router handles e-mail addresses in "domain literal" form like
 
6
# <user@[10.11.12.13]>. The RFCs require this facility, but it is disabled
 
7
# in the default config since it is seldomly used and frequently abused.
 
8
# Domain literal support also needs to be enabled in the main config,
 
9
# which is automatically done if you use the enable macro
 
10
# MAIN_ALLOW_DOMAIN_LITERALS.
 
11
 
 
12
.ifdef MAIN_ALLOW_DOMAIN_LITERALS
 
13
domain_literal:
 
14
  debug_print = "R: domain_literal for $local_part@$domain"
 
15
  driver = ipliteral
 
16
  domains = ! +local_domains
 
17
  transport = remote_smtp
 
18
.endif