1<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN" 2 "http://www.w3.org/TR/html4/loose.dtd"> 3 4<html> 5 6<head> 7 8<title>Postfix Address Verification </title> 9 10<meta http-equiv="Content-Type" content="text/html; charset=us-ascii"> 11 12</head> 13 14<body> 15 16<h1><img src="postfix-logo.jpg" width="203" height="98" ALT="">Postfix Address Verification Howto</h1> 17 18<hr> 19 20<h2>WARNING </h2> 21 22<p> Recipient address verification may cause an increased load on 23down-stream servers in the case of a dictionary attack or a flood 24of backscatter bounces. Sender address verification may cause your 25site to be blacklisted by some providers. See also the "<a 26href="#limitations">Limitations</a>" section below for more. </p> 27 28<h2><a name="summary">What Postfix address verification can do for you</a></h2> 29 30<p> Address verification is a feature that allows the Postfix SMTP 31server to block a sender (MAIL FROM) or recipient (RCPT TO) address 32until the address has been verified to be deliverable. </p> 33 34<p> The technique has obvious uses to reject junk mail 35with an unreplyable sender address. </p> 36 37<p> The technique is also useful to block mail for undeliverable 38recipients, for example on a mail <a href="postconf.5.html#relayhost">relay host</a> that does not have a 39list of all the valid recipient addresses. This prevents undeliverable 40junk mail from entering the queue, so that Postfix doesn't have to 41waste resources trying to send MAILER-DAEMON messages back. </p> 42 43<p> This feature is available in Postfix version 2.1 and later. </p> 44 45<p> Topics covered in this document: </p> 46 47<ul> 48 49<li><a href="#how"> How address verification works</a> 50 51<li><a href="#limitations">Limitations of address verification</a> 52 53<li><a href="#recipient">Recipient address verification</a> 54 55<li><a href="#forged_sender">Sender address verification for mail 56from frequently forged domains</a> 57 58<li><a href="#sender_always">Sender address verification for all 59email</a> 60 61<li><a href="#caching">Address verification database</a> 62 63<li><a href="#dirty_secret">Managing the address verification 64database</a> 65 66<li><a href="#probe_routing">Controlling the routing of address 67verification probes</a> 68 69<li><a href="#forced_examples">Forced probe routing examples</a> 70 71<li><a href="#forced_limitations">Limitations of forced probe routing</a> 72 73</ul> 74 75<h2><a name="how">How address verification works</a></h2> 76 77<p> A Postfix MTA verifies a sender or recipient address by probing 78the nearest 79MTA for that address, without actually delivering mail. The nearest 80MTA could be the Postfix MTA itself, or it could be a remote MTA 81(SMTP 82interruptus). Probe messages are like normal mail, except that 83they are never delivered, deferred or bounced; probe messages are 84always discarded. </p> 85 86<blockquote> 87 88<table border="0"> 89 90<tr> 91 92 <td rowspan="2" colspan="5" align="center" valign="middle"> 93 </td> 94 95 <td rowspan="3" align="center" valign="bottom"> <tt> -> </tt> 96 </td> 97 98 <td rowspan="3" align="center" valign="middle"> probe<br> 99 message </td> 100 101 <td rowspan="3" align="center" valign="middle"> <tt> -> </tt> 102 </td> 103 104 <td rowspan="3" bgcolor="#f0f0ff" align="center" valign="middle"> 105 Postfix<br> mail<br> queue </td> 106 107</tr> 108 109<tr> <td> </td> </tr> 110 111<tr> 112 113 <td rowspan="3" align="center" valign="middle"> Internet </td> 114 115 <td rowspan="3" align="center" valign="middle"> <tt> -> </tt> 116 </td> 117 118 <td rowspan="3" bgcolor="#f0f0ff" align="center" valign="middle"> 119 <a href="smtpd.8.html">Postfix<br> SMTP<br> server</a> </td> 120 121 <td rowspan="3" align="center" valign="middle"> <tt> <-> 122 </tt> </td> 123 124 <td rowspan="3" bgcolor="#f0f0ff" align="center" valign="middle"> 125 <a href="verify.8.html">Postfix<br> verify<br> server</a> 126 </td> 127 128</tr> 129 130<tr> 131 132 <td rowspan="1" colspan="3"> </td> 133 134 <td rowspan="1" align="center" valign="middle"> <tt> |</tt><br> 135 <tt> v</tt> </td> 136 137</tr> 138 139<tr> 140 141 <td rowspan="3" align="center" valign="top"> <tt> <- </tt> 142 </td> 143 144 <td rowspan="3" align="center" valign="middle"> probe<br> 145 status </td> 146 147 <td rowspan="3" align="center" valign="middle"> <tt> <- </tt> 148 </td> 149 150 <td rowspan="3" bgcolor="#f0f0ff" align="center" valign="middle"> 151 Postfix<br> delivery<br> agents </td> 152 153 <td rowspan="3" align="left" valign="middle"> <tt>-></tt> 154 Local<br> <tt>-></tt> Remote</td> 155 156</tr> 157 158<tr> 159 160 <td rowspan="3" colspan="4" align="center" valign="middle"> 161 </td> 162 163 <td rowspan="3" align="center" valign="middle"> <tt> 164 ^</tt><br> <tt> |</tt><br> <tt> v</tt> </td> 165 166</tr> 167 168<tr> <td> </td> </tr> 169 170<tr> <td colspan="4"> </td> </tr> 171 172<tr> 173 174 <td colspan="4" align="center" valign="middle"> </td> 175 176 <td bgcolor="#f0f0ff" align="center" valign="middle"> 177 Address<br> verification<br> database </td> 178 179</tr> 180 181</table> 182 183</blockquote> 184 185<p> With Postfix address verification turned on, normal mail will 186suffer only a short delay of up to 6 seconds while an address is 187being verified for the first time. Once an address status is known, 188the status is cached and Postfix replies immediately. </p> 189 190<p> When verification takes too long the Postfix SMTP server defers 191the sender or recipient address with a 450 reply. Normal mail 192clients will connect again after some delay. The address verification 193delay is configurable with the <a href="postconf.5.html">main.cf</a> <a href="postconf.5.html#address_verify_poll_count">address_verify_poll_count</a> 194and <a href="postconf.5.html#address_verify_poll_delay">address_verify_poll_delay</a> parameters. See <a href="postconf.5.html">postconf(5)</a> for 195details. </p> 196 197<h2><a name="limitations">Limitations of address verification</a></h2> 198 199<ul> 200 201<li> <p> When verifying a remote address, Postfix probes the nearest 202MTA for that address, without actually delivering mail to it. If 203the nearest MTA accepts the address, then Postfix assumes that the 204address is deliverable. In reality, mail for a remote address can 205bounce AFTER the nearest MTA accepts the recipient address, or AFTER 206the nearest MTA accepts the message content. </p> 207 208<li> <p> Some sites may blacklist you when you are probing them 209too often (a probe is an SMTP session that does not deliver mail), 210or when you are probing them too often for a non-existent address. 211This is one reason why you should use sender address verification 212sparingly, if at all, when your site receives lots of email. </p> 213 214<li> <p> Normally, address verification probe messages follow the 215same path as regular mail. However, some sites send mail to the 216Internet via an intermediate <a href="postconf.5.html#relayhost">relayhost</a>; this breaks address 217verification. See below, section <a href="#probe_routing">"Controlling 218the routing of address verification probes"</a>, for how to override 219mail routing and for possible limitations when you have to do this. 220</p> 221 222<li> <p> Postfix assumes that an address is undeliverable when the 223nearest MTA for the address rejects the probe, regardless of the 224reason for rejection (client rejected, HELO rejected, MAIL FROM 225rejected, etc.). Thus, Postfix rejects an address when the nearest 226MTA for that address rejects mail from your machine for any reason. 227This is not a limitation, but it is mentioned here just in case 228people believe that it is a limitation. </p> 229 230<li> <p> Unfortunately, some sites do not reject 231unknown addresses in reply to the RCPT TO command, but report a 232delivery failure in response to end of DATA after a message is 233transferred. Postfix address verification does not work with such 234sites. </p> 235 236<li> <p> By default, Postfix probe messages have a sender address 237"double-bounce@$<a href="postconf.5.html#myorigin">myorigin</a>" (with Postfix versions before 2.5, the 238default 239is "postmaster@$<a href="postconf.5.html#myorigin">myorigin</a>"). This is SAFE because the Postfix SMTP 240server does not reject mail for this address. </p> 241 242<p> You can change the probe sender address into the null address 243("<a href="postconf.5.html#address_verify_sender">address_verify_sender</a> 244="). This is UNSAFE because address probes will fail with 245mis-configured sites that reject MAIL FROM: <>, while 246probes from "double-bounce@$<a href="postconf.5.html#myorigin">myorigin</a>" would succeed. </p> 247 248<li> <p> The downside of using a non-empty sender address is that 249the address may end op on spammer mailing lists. Although Postfix 250always discards mail to the double-bounce address, this still results 251in wasted network bandwidth and server capacity. To defeat 252address harvesting, Postfix 2.9 and later support time-dependent 253sender addresses when you specify a non-zero <a href="postconf.5.html#address_verify_sender_ttl">address_verify_sender_ttl</a> 254value. </p> 255 256</ul> 257 258<h2><a name="recipient">Recipient address verification</a></h2> 259 260<p> As mentioned earlier, recipient address verification is 261useful to block mail for undeliverable recipients on a mail relay 262host that does not have a list of all valid recipient addresses. 263This can help to prevent the mail queue from filling up with 264MAILER-DAEMON messages. </p> 265 266<p> Recipient address verification is relatively straightforward 267and there are no surprises. If a recipient probe fails, then Postfix 268rejects mail for the recipient address. If a recipient probe 269succeeds, then Postfix accepts mail for the recipient address. 270However, recipient address verification probes can increase the 271load on down-stream MTAs when you're being flooded by backscatter 272bounces, or when some spammer is mounting a dictionary attack. </p> 273 274<p> By default, address verification results are saved in a <a 275href="#caching">persistent database</a> (Postfix version 2.7 and 276later; with earlier versions, specify the database in <a href="postconf.5.html">main.cf</a> as 277described later). The persistent database helps to avoid probing 278the same address repeatedly. </p> 279 280<blockquote> 281<pre> 282/etc/postfix/<a href="postconf.5.html">main.cf</a>: 283 <a href="postconf.5.html#smtpd_recipient_restrictions">smtpd_recipient_restrictions</a> = 284 <a href="postconf.5.html#permit_mynetworks">permit_mynetworks</a> 285 # <a href="postconf.5.html#reject_unauth_destination">reject_unauth_destination</a> is not needed here if the mail 286 # relay policy is specified under <a href="postconf.5.html#smtpd_relay_restrictions">smtpd_relay_restrictions</a> 287 # (available with Postfix 2.10 and later). 288 <a href="postconf.5.html#reject_unauth_destination">reject_unauth_destination</a> 289 ... 290 <a href="postconf.5.html#reject_unknown_recipient_domain">reject_unknown_recipient_domain</a> 291 <a href="postconf.5.html#reject_unverified_recipient">reject_unverified_recipient</a> 292 ... 293 # Postfix 2.6 and later privacy feature. 294 # <a href="postconf.5.html#unverified_recipient_reject_reason">unverified_recipient_reject_reason</a> = Address lookup failed 295</pre> 296</blockquote> 297 298<p> The "<a href="postconf.5.html#reject_unknown_recipient_domain">reject_unknown_recipient_domain</a>" restriction blocks mail 299for non-existent domains. Putting this before "<a href="postconf.5.html#reject_unverified_recipient">reject_unverified_recipient</a>" 300avoids the overhead of generating unnecessary probe messages. </p> 301 302<p> The <a href="postconf.5.html#unverified_recipient_reject_code">unverified_recipient_reject_code</a> parameter (default 450) 303specifies the numerical Postfix SMTP server reply code when a 304recipient address is known to 305bounce. Change this setting into 550 when you trust Postfix's 306judgments. </p> 307 308<p> The following features are available in Postfix 2.6 and later. 309</p> 310 311<p> The <a href="postconf.5.html#unverified_recipient_defer_code">unverified_recipient_defer_code</a> parameter (default 450) 312specifies the numerical Postfix SMTP server reply code when a 313recipient address probe fails with some temporary error. Some sites 314insist on changing this into 250. NOTE: This change turns MX servers 315into backscatter sources when the load is high. </p> 316 317<p> The <a href="postconf.5.html#unverified_recipient_reject_reason">unverified_recipient_reject_reason</a> parameter (default: 318empty) specifies fixed text that Postfix will send to remote SMTP 319clients, instead of sending actual address verification details. 320Do not specify the SMTP status code or enhanced status code. </p> 321 322<p> The <a href="postconf.5.html#unverified_recipient_tempfail_action">unverified_recipient_tempfail_action</a> parameter (default: 323<a href="postconf.5.html#defer_if_permit">defer_if_permit</a>) specifies the Postfix SMTP server action when a 324recipient address verification probe fails with some temporary 325error. </p> 326 327<h2><a name="forged_sender">Sender address verification for mail from frequently forged domains</a></h2> 328 329<p> Only for very small sites, it is relatively safe to turn on 330sender address verification for specific domains that often appear 331in forged email. </p> 332 333<blockquote> 334<pre> 335/etc/postfix/<a href="postconf.5.html">main.cf</a>: 336 <a href="postconf.5.html#smtpd_sender_restrictions">smtpd_sender_restrictions</a> = <a href="DATABASE_README.html#types">hash</a>:/etc/postfix/sender_access 337 <a href="postconf.5.html#unverified_sender_reject_code">unverified_sender_reject_code</a> = 550 338 # Postfix 2.6 and later. 339 # <a href="postconf.5.html#unverified_sender_defer_code">unverified_sender_defer_code</a> = 250 340 341 # Default setting for Postfix 2.7 and later. 342 # Note 1: Be sure to read the "<a href="#caching">Caching</a>" section below! 343 # Note 2: Avoid hash files here. Use btree instead. 344 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = <a href="DATABASE_README.html#types">btree</a>:/var/db/postfix/verify 345 346/etc/postfix/sender_access: 347 # Don't do this when you handle lots of email. 348 aol.com <a href="postconf.5.html#reject_unverified_sender">reject_unverified_sender</a> 349 hotmail.com <a href="postconf.5.html#reject_unverified_sender">reject_unverified_sender</a> 350 bigfoot.com <a href="postconf.5.html#reject_unverified_sender">reject_unverified_sender</a> 351 ... etcetera ... 352</pre> 353</blockquote> 354 355<p> At some point in cyberspace/time, a list of frequently forged 356MAIL FROM domains could be found at 357<a href="http://www.monkeys.com/anti-spam/filtering/sender-domain-validate.in">http://www.monkeys.com/anti-spam/filtering/sender-domain-validate.in</a>. </p> 358 359<p> NOTE: One of the first things you might want to do is to turn 360on sender address verification for all your own domains. </p> 361 362<h2><a name="sender_always">Sender address verification for all 363email</a></h2> 364 365<p> Unfortunately, sender address verification cannot simply be 366turned on for all email - you are likely to lose legitimate mail 367from mis-configured systems. You almost certainly will have to set 368up white lists for specific addresses, or even for entire domains. 369</p> 370 371<p> To find out how sender address verification would affect your 372mail, specify "<a href="postconf.5.html#warn_if_reject">warn_if_reject</a> <a href="postconf.5.html#reject_unverified_sender">reject_unverified_sender</a>" so that 373you can see what mail would be blocked: </p> 374 375<blockquote> 376<pre> 377/etc/postfix/<a href="postconf.5.html">main.cf</a>: 378 <a href="postconf.5.html#smtpd_sender_restrictions">smtpd_sender_restrictions</a> = 379 <a href="postconf.5.html#permit_mynetworks">permit_mynetworks</a> 380 ... 381 <a href="postconf.5.html#check_sender_access">check_sender_access</a> <a href="DATABASE_README.html#types">hash</a>:/etc/postfix/sender_access 382 <a href="postconf.5.html#reject_unknown_sender_domain">reject_unknown_sender_domain</a> 383 <a href="postconf.5.html#warn_if_reject">warn_if_reject</a> <a href="postconf.5.html#reject_unverified_sender">reject_unverified_sender</a> 384 ... 385 # Postfix 2.6 and later. 386 # <a href="postconf.5.html#unverified_sender_reject_reason">unverified_sender_reject_reason</a> = Address verification failed 387 388 # Default setting for Postfix 2.7 and later. 389 # Note 1: Be sure to read the "<a href="#caching">Caching</a>" section below! 390 # Note 2: Avoid hash files here. Use btree instead. 391 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = <a href="DATABASE_README.html#types">btree</a>:/var/db/postfix/verify 392</pre> 393</blockquote> 394 395<p> This is also a good way to populate your cache with address 396verification results before you start to actually reject mail. </p> 397 398<p> The sender_access restriction is needed to whitelist domains 399or addresses that are known to be OK. Although Postfix will not 400mark a known-to-be-good address as bad after a probe fails, it is 401better to be safe than sorry. </p> 402 403<p> NOTE: You will have to whitelist sites such as securityfocus.com 404and other sites that operate mailing lists that use a different 405sender address for each posting (VERP). Such addresses pollute 406the address verification cache quickly, and generate unnecessary 407sender verification probes. </p> 408 409<blockquote> 410<pre> 411/etc/postfix/sender_access 412 securityfocus.com OK 413 ... 414</pre> 415</blockquote> 416 417<p> The "<a href="postconf.5.html#reject_unknown_sender_domain">reject_unknown_sender_domain</a>" restriction blocks mail from 418non-existent domains. Putting this before "<a href="postconf.5.html#reject_unverified_sender">reject_unverified_sender</a>" 419avoids the overhead of generating unnecessary probe messages. </p> 420 421<p> The <a href="postconf.5.html#unverified_sender_reject_code">unverified_sender_reject_code</a> parameter (default 450) 422specifies the numerical Postfix server reply code when a sender 423address is known to 424bounce. Change this setting into 550 when you trust Postfix's 425judgments. </p> 426 427<p> The following features are available in Postfix 2.6 and later. 428</p> 429 430<p> The <a href="postconf.5.html#unverified_sender_defer_code">unverified_sender_defer_code</a> parameter (default 450) specifies 431the numerical Postfix SMTP server reply code when a sender address 432verification probe fails with some temporary error. Specify a valid 4332xx or 4xx code. </p> 434 435<p> The <a href="postconf.5.html#unverified_sender_reject_reason">unverified_sender_reject_reason</a> parameter (default: 436empty) specifies fixed text that Postfix will send to remote SMTP 437clients, instead of sending actual address verification details. 438Do not specify the SMTP status code or enhanced status code. </p> 439 440<p> The <a href="postconf.5.html#unverified_sender_tempfail_action">unverified_sender_tempfail_action</a> parameter (default: 441<a href="postconf.5.html#defer_if_permit">defer_if_permit</a>) specifies the Postfix SMTP server action when a 442sender address verification probe fails with some temporary error. 443</p> 444 445<h2><a name="caching">Address verification database</a></h2> 446 447<p> To improve performance, the Postfix <a href="verify.8.html">verify(8)</a> daemon can save 448address verification results to a persistent database. This is 449enabled by default with Postfix 2.7 and later. The 450<a href="postconf.5.html#address_verify_map">address_verify_map</a> (NOTE: singular) configuration parameter specifies 451persistent storage for sender or recipient address verification 452results. If you specify an empty value, all address verification 453results are lost after "postfix reload" or "postfix stop". </p> 454 455<blockquote> 456<pre> 457# Example 1: Default setting for Postfix 2.7 and later. 458# Note: avoid hash files here. Use btree instead. 459/etc/postfix/<a href="postconf.5.html">main.cf</a>: 460 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = <a href="DATABASE_README.html#types">btree</a>:$<a href="postconf.5.html#data_directory">data_directory</a>/verify_cache 461 462# Example 2: Shared persistent <a href="lmdb_table.5.html">lmdb</a>: cache (Postfix 2.11 or later). 463# Disable automatic cache cleanup in all Postfix instances except 464# for one instance that will be responsible for cache cleanup. 465/etc/postfix/<a href="postconf.5.html">main.cf</a>: 466 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = <a href="lmdb_table.5.html">lmdb</a>:$<a href="postconf.5.html#data_directory">data_directory</a>/verify_cache 467 # <a href="postconf.5.html#address_verify_cache_cleanup_interval">address_verify_cache_cleanup_interval</a> = 0 468 469# Example 3: Shared persistent <a href="DATABASE_README.html#types">btree</a>: cache (Postfix 2.9 or later). 470# Disable automatic cache cleanup in all Postfix instances except 471# for one instance that will be responsible for cache cleanup. 472/etc/postfix/<a href="postconf.5.html">main.cf</a>: 473 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = <a href="proxymap.8.html">proxy</a>:<a href="DATABASE_README.html#types">btree</a>:$<a href="postconf.5.html#data_directory">data_directory</a>/verify_cache 474 # <a href="postconf.5.html#address_verify_cache_cleanup_interval">address_verify_cache_cleanup_interval</a> = 0 475 476# Example 4: Shared memory cache (requires Postfix 2.9 or later). 477# Disable automatic cache cleanup in all Postfix instances. 478# See <a href="memcache_table.5.html">memcache_table(5)</a> for details. 479/etc/postfix/<a href="postconf.5.html">main.cf</a>: 480 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = <a href="memcache_table.5.html">memcache</a>:/etc/postfix/verify-memcache.cf 481 <a href="postconf.5.html#address_verify_cache_cleanup_interval">address_verify_cache_cleanup_interval</a> = 0 482 483# Example 5: Default setting for Postfix 2.6 and earlier. 484# This uses non-persistent storage only. 485/etc/postfix/<a href="postconf.5.html">main.cf</a>: 486 <a href="postconf.5.html#address_verify_map">address_verify_map</a> = 487</pre> 488</blockquote> 489 490<p> NOTE 1: The database file should be stored under a Postfix-owned 491directory, such as $<a href="postconf.5.html#data_directory">data_directory</a>. </p> 492 493<blockquote> As of version 2.5, Postfix no longer uses root privileges 494when opening this file. To maintain backwards compatibility, an 495attempt to open the file under a non-Postfix directory is redirected 496to the Postfix-owned <a href="postconf.5.html#data_directory">data_directory</a>, and a warning is logged. If 497you wish to continue using a pre-existing database file, change its 498file ownership to the account specified with the <a href="postconf.5.html#mail_owner">mail_owner</a> parameter, 499and either move the file to the <a href="postconf.5.html#data_directory">data_directory</a>, or move it to some 500other Postfix-owned directory. </blockquote> 501 502<p> NOTE 2: Do not put this file in a file system that may run out 503of space. When the address verification table gets corrupted the 504world comes to an end and YOU will have to MANUALLY fix things as 505described in the next section. Meanwhile, you will not receive mail 506via SMTP. </p> 507 508<p> NOTE 3: The <a href="verify.8.html">verify(8)</a> daemon will create a new database when 509none exists. It will open or create the file before entering the 510chroot jail. </p> 511 512<h2><a name="dirty_secret">Managing the address verification 513database</a></h2> 514 515<p> The <a href="verify.8.html">verify(8)</a> manual page describes parameters that control how 516long address verification results are cached before they need to 517be refreshed, and how long results can remain "unrefreshed" before 518they expire. Postfix uses different controls for positive results 519(address was accepted) and for negative results (address was rejected, 520or address verification failed for some other reason). </p> 521 522<p> The <a href="verify.8.html">verify(8)</a> daemon will periodically remove expired entries 523from the address verification database, and log the number of entries 524retained and dropped (Postfix versions 2.7 and later). A cleanup 525run is logged as "partial" when the daemon terminates early because 526of "postfix reload, "postfix stop", or because the daemon received 527no requests for $<a href="postconf.5.html#max_idle">max_idle</a> seconds. Postfix versions 2.6 and earlier 528do not implement automatic address verification database cleanup. 529There, the database is managed manually as described next. </p> 530 531<p> When the address verification database file becomes too big, 532or when it becomes corrupted, the solution is to manually rename 533or delete (NOT: truncate) the file and run "postfix reload". The 534<a href="verify.8.html">verify(8)</a> daemon will then create a new database file. </p> 535 536<h2><a name="probe_routing">Controlling the routing of address 537verification probes</a></h2> 538 539<p> By default, Postfix sends address verification probe messages 540via the same route as regular mail, because that normally produces 541the most accurate result. It's no good to verify a local address 542by connecting to your own SMTP port; that just triggers all kinds 543of mailer loop alarms. The same is true for any destination that 544your machine is best MX host for: hidden domains, virtual domains, 545etc. </p> 546 547<p> However, some sites have a complex infrastructure where mail 548is not sent directly to the Internet, but is instead given to an 549intermediate <a href="postconf.5.html#relayhost">relayhost</a>. This is a problem for address verification, 550because remote Internet addresses can be verified only when Postfix 551can access remote destinations directly. </p> 552 553<p> For this reason, Postfix allows you to override the routing 554parameters when it delivers an address verification probe message. 555</p> 556 557<p> First, the <a href="postconf.5.html#address_verify_relayhost">address_verify_relayhost</a> parameter allows you to 558override the <a href="postconf.5.html#relayhost">relayhost</a> setting, and the <a href="postconf.5.html#address_verify_transport_maps">address_verify_transport_maps</a> 559parameter allows you to override the <a href="postconf.5.html#transport_maps">transport_maps</a> setting. 560The <a href="postconf.5.html#address_verify_sender_dependent_relayhost_maps">address_verify_sender_dependent_relayhost_maps</a> parameter 561does the same for sender-dependent <a href="postconf.5.html#relayhost">relayhost</a> selection. </p> 562 563<p> Second, each address class is given its own address verification 564version of the message delivery transport, as shown in the table 565below. Address classes are defined in the <a href="ADDRESS_CLASS_README.html">ADDRESS_CLASS_README</a> 566file. </p> 567 568<blockquote> 569 570<table border="1"> 571 572<tr> <th> Domain list </th> <th> Regular transport</th> <th> Verify 573transport </th> </tr> 574 575<tr> <td> <a href="postconf.5.html#mydestination">mydestination</a> </td> <td> <a href="postconf.5.html#local_transport">local_transport</a> </td> <td> 576<a href="postconf.5.html#address_verify_local_transport">address_verify_local_transport</a> </td> </tr> 577 578<tr> <td> <a href="postconf.5.html#virtual_alias_domains">virtual_alias_domains</a> </td> <td> (not applicable) </td> 579<td> (not applicable) </td> </tr> 580 581<tr> <td> <a href="postconf.5.html#virtual_mailbox_domains">virtual_mailbox_domains</a> </td> <td> <a href="postconf.5.html#virtual_transport">virtual_transport</a> 582</td> <td> <a href="postconf.5.html#address_verify_virtual_transport">address_verify_virtual_transport</a> </td> </tr> 583 584<tr> <td> <a href="postconf.5.html#relay_domains">relay_domains</a> </td> <td> <a href="postconf.5.html#relay_transport">relay_transport</a> </td> <td> 585<a href="postconf.5.html#address_verify_relay_transport">address_verify_relay_transport</a> </td> </tr> 586 587<tr> <td> (not applicable) </td> <td> <a href="postconf.5.html#default_transport">default_transport</a> </td> <td> 588<a href="postconf.5.html#address_verify_default_transport">address_verify_default_transport</a> </td> </tr> 589 590</table> 591 592</blockquote> 593 594<p> By default, the parameters that control delivery of address 595probes have the same value as the parameters that control normal 596mail delivery. </p> 597 598<h2><a name="forced_examples">Forced probe routing examples</a></h2> 599 600<p> In a typical scenario one would override the <a href="postconf.5.html#relayhost">relayhost</a> setting 601for address verification probes and leave everything else alone: 602</p> 603 604<blockquote> 605<pre> 606/etc/postfix/<a href="postconf.5.html">main.cf</a>: 607 <a href="postconf.5.html#relayhost">relayhost</a> = $<a href="postconf.5.html#mydomain">mydomain</a> 608 <a href="postconf.5.html#address_verify_relayhost">address_verify_relayhost</a> = 609 ... 610</pre> 611</blockquote> 612 613<p> Sites behind a network address translation box might have to 614use a different SMTP client that sends the correct hostname 615information: </p> 616 617<blockquote> 618<pre> 619/etc/postfix/<a href="postconf.5.html">main.cf</a>: 620 <a href="postconf.5.html#relayhost">relayhost</a> = $<a href="postconf.5.html#mydomain">mydomain</a> 621 <a href="postconf.5.html#address_verify_relayhost">address_verify_relayhost</a> = 622 <a href="postconf.5.html#address_verify_default_transport">address_verify_default_transport</a> = direct_smtp 623 624/etc/postfix/<a href="master.5.html">master.cf</a>: 625 direct_smtp .. .. .. .. .. .. .. .. .. smtp 626 -o <a href="postconf.5.html#smtp_helo_name">smtp_helo_name</a>=nat.box.tld 627</pre> 628</blockquote> 629 630<h2><a name="forced_limitations">Limitations of forced probe routing</a></h2> 631 632<p> Inconsistencies can happen when probe messages don't follow 633the same path as regular mail. For example, a message can be 634accepted when it follows the regular route while an otherwise 635identical probe message is rejected when it follows the forced 636route. The opposite can happen, too, but is less likely. </p> 637 638</body> 639 640</html> 641