~ubuntu-branches/debian/sid/postfix/sid

« back to all changes in this revision

Viewing changes to proto/ADDRESS_VERIFICATION_README.html

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, LaMont Jones, localization folks
  • Date: 2014-02-11 07:44:30 UTC
  • mfrom: (1.1.41)
  • Revision ID: package-import@ubuntu.com-20140211074430-91tdwgjriazawdz4
Tags: 2.11.0-1
[LaMont Jones]

* New upstream release: 2.11.0

[localization folks]

* l10n: Updated German translations.  Closes: #734893 (Helge Kreutzmann)

Show diffs side-by-side

added added

removed removed

Lines of Context:
454
454
 
455
455
<blockquote>
456
456
<pre>
 
457
# Example 1: Default setting for Postfix 2.7 and later.
 
458
# Note: avoid hash files here. Use btree instead.
457
459
/etc/postfix/main.cf:
458
 
    # Default setting for Postfix 2.7 and later.
459
 
    # Note: avoid hash files here. Use btree instead.
460
460
    address_verify_map = btree:$data_directory/verify_cache
461
461
 
462
 
    # Shared persistent cache (requires Postfix 2.9 or later).  
 
462
# Example 2: Shared persistent lmdb: 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/main.cf:
 
466
    address_verify_map = lmdb:$data_directory/verify_cache
 
467
    # address_verify_cache_cleanup_interval = 0
 
468
 
 
469
# Example 3: Shared persistent btree: 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/main.cf:
463
473
    address_verify_map = proxy:btree:$data_directory/verify_cache
464
 
    # Disable automatic cache cleanup in all Postfix instances except
465
 
    # for one instance that will be responsible for cache cleanup.
466
474
    # address_verify_cache_cleanup_interval = 0
467
475
 
468
 
    # Shared memory cache (requires Postfix 2.9 or later).
469
 
    # See memcache_table(5) for details.
 
476
# Example 4: Shared memory cache (requires Postfix 2.9 or later).
 
477
# Disable automatic cache cleanup in all Postfix instances.
 
478
# See memcache_table(5) for details.
 
479
/etc/postfix/main.cf:
470
480
    address_verify_map = memcache:/etc/postfix/verify-memcache.cf
 
481
    address_verify_cache_cleanup_interval = 0
471
482
 
472
 
    # Default setting for Postfix 2.6 and earlier.
473
 
    # This uses non-persistent storage only.
 
483
# Example 5: Default setting for Postfix 2.6 and earlier.
 
484
# This uses non-persistent storage only.
 
485
/etc/postfix/main.cf:
474
486
    address_verify_map =
475
487
</pre>
476
488
</blockquote>