~ubuntu-branches/ubuntu/hardy/mailman/hardy-updates

« back to all changes in this revision

Viewing changes to admin/www/mailman-install/node25.html

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-07-03 16:59:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060703165925-175ubna955u796c0
Tags: 0:2.1.8-1ubuntu1
* Merge to Debian; remaining Ubuntu changes:
  - debian/mailman.init: Create /var/{run,lock}/mailman.
  - debian/control: exim4 -> postfix.
* debian/control: Dependency fix: apache -> apache2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
2
<html>
 
3
<head>
 
4
<link rel="STYLESHEET" href="mailman-install.css" type='text/css' />
 
5
<link rel="first" href="mailman-install.html" title='GNU Mailman - Installation Manual' />
 
6
<link rel='last' href='about.html' title='About this document...' />
 
7
<link rel='help' href='about.html' title='About this document...' />
 
8
<link rel="next" href="node26.html" />
 
9
<link rel="prev" href="node24.html" />
 
10
<link rel="parent" href="node16.html" />
 
11
<link rel="next" href="node26.html" />
 
12
<meta name='aesop' content='information' />
 
13
<title>6.2.9 Receiver Verification</title>
 
14
</head>
 
15
<body>
 
16
<DIV CLASS="navigation">
 
17
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
 
18
<table align="center" width="100%" cellpadding="0" cellspacing="2">
 
19
<tr>
 
20
<td class='online-navigation'><a rel="prev" title="6.2.8 Problems"
 
21
  href="node24.html"><img src='previous.png'
 
22
  border='0' height='32'  alt='Previous Page' width='32' /></A></td>
 
23
<td class='online-navigation'><a rel="parent" title="6.2 Using the Exim"
 
24
  href="node16.html"><img src='up.png'
 
25
  border='0' height='32'  alt='Up One Level' width='32' /></A></td>
 
26
<td class='online-navigation'><a rel="next" title="6.2.10 SMTP Callback"
 
27
  href="node26.html"><img src='next.png'
 
28
  border='0' height='32'  alt='Next Page' width='32' /></A></td>
 
29
<td align="center" width="100%">GNU Mailman - Installation Manual</td>
 
30
<td class='online-navigation'><img src='blank.png'
 
31
  border='0' height='32'  alt='' width='32' /></td>
 
32
<td class='online-navigation'><img src='blank.png'
 
33
  border='0' height='32'  alt='' width='32' /></td>
 
34
<td class='online-navigation'><img src='blank.png'
 
35
  border='0' height='32'  alt='' width='32' /></td>
 
36
</tr></table>
 
37
<div class='online-navigation'>
 
38
<b class="navlabel">Previous:</b>
 
39
<a class="sectref" rel="prev" href="node24.html">6.2.8 Problems</A>
 
40
<b class="navlabel">Up:</b>
 
41
<a class="sectref" rel="parent" href="node16.html">6.2 Using the Exim</A>
 
42
<b class="navlabel">Next:</b>
 
43
<a class="sectref" rel="next" href="node26.html">6.2.10 SMTP Callback</A>
 
44
</div>
 
45
<hr /></div>
 
46
</DIV>
 
47
<!--End of Navigation Panel-->
 
48
 
 
49
<H3><A NAME="SECTION001629000000000000000">
 
50
6.2.9 Receiver Verification</A>
 
51
</H3>
 
52
 
 
53
<P>
 
54
Exim's receiver verification feature is very useful - it lets Exim reject
 
55
unrouteable addresses at SMTP time.  However, this is most useful for
 
56
externally-originating mail that is addressed to mail in one of your local
 
57
domains.  For Mailman list traffic, mail originates on your server, and is
 
58
addressed to random external domains that are not under your control.
 
59
Furthermore, each message is addressed to many recipients
 
60
- up to 500 if you use Mailman's default configuration and don't tweak
 
61
<var>SMTP_MAX_RCPTS</var>.
 
62
 
 
63
<P>
 
64
Doing receiver verification on Mailman list traffic is a recipe for trouble.
 
65
In particular, Exim will attempt to route every recipient addresses in
 
66
outgoing Mailman list posts.  Even though this requires nothing more than a
 
67
few DNS lookups for each address, it can still introduce significant delays.
 
68
Therefore, you should disable recipient verification for Mailman traffic.
 
69
 
 
70
<P>
 
71
Under Exim 3, put this in your main configuration section:
 
72
 
 
73
<P>
 
74
<div class="verbatim"><pre>
 
75
    receiver_verify_hosts = !127.0.0.1
 
76
</pre></div>
 
77
 
 
78
<P>
 
79
Under Exim 4, this is probably already taken care of for you by the default
 
80
recipient verification ACL statement (in the <code>RCPT TO</code> ACL):
 
81
 
 
82
<P>
 
83
<div class="verbatim"><pre>
 
84
  accept  domains       = +local_domains
 
85
          endpass
 
86
          message       = unknown user
 
87
          verify        = recipient
 
88
</pre></div>
 
89
 
 
90
<P>
 
91
which only does recipient verification on addresses in your domain.  (That's
 
92
not exactly the same as doing recipient verification only on messages coming
 
93
from non-127.0.0.1 hosts, but it should do the trick for Mailman.)
 
94
 
 
95
<P>
 
96
 
 
97
<DIV CLASS="navigation">
 
98
<div class='online-navigation'>
 
99
<p></p><hr />
 
100
<table align="center" width="100%" cellpadding="0" cellspacing="2">
 
101
<tr>
 
102
<td class='online-navigation'><a rel="prev" title="6.2.8 Problems"
 
103
  href="node24.html"><img src='previous.png'
 
104
  border='0' height='32'  alt='Previous Page' width='32' /></A></td>
 
105
<td class='online-navigation'><a rel="parent" title="6.2 Using the Exim"
 
106
  href="node16.html"><img src='up.png'
 
107
  border='0' height='32'  alt='Up One Level' width='32' /></A></td>
 
108
<td class='online-navigation'><a rel="next" title="6.2.10 SMTP Callback"
 
109
  href="node26.html"><img src='next.png'
 
110
  border='0' height='32'  alt='Next Page' width='32' /></A></td>
 
111
<td align="center" width="100%">GNU Mailman - Installation Manual</td>
 
112
<td class='online-navigation'><img src='blank.png'
 
113
  border='0' height='32'  alt='' width='32' /></td>
 
114
<td class='online-navigation'><img src='blank.png'
 
115
  border='0' height='32'  alt='' width='32' /></td>
 
116
<td class='online-navigation'><img src='blank.png'
 
117
  border='0' height='32'  alt='' width='32' /></td>
 
118
</tr></table>
 
119
<div class='online-navigation'>
 
120
<b class="navlabel">Previous:</b>
 
121
<a class="sectref" rel="prev" href="node24.html">6.2.8 Problems</A>
 
122
<b class="navlabel">Up:</b>
 
123
<a class="sectref" rel="parent" href="node16.html">6.2 Using the Exim</A>
 
124
<b class="navlabel">Next:</b>
 
125
<a class="sectref" rel="next" href="node26.html">6.2.10 SMTP Callback</A>
 
126
</div>
 
127
</div>
 
128
<hr />
 
129
<span class="release-info">Release 2.1, documentation updated on December 13, 2005.</span>
 
130
</DIV>
 
131
<!--End of Navigation Panel-->
 
132
 
 
133
</BODY>
 
134
</HTML>