Changeset 5299:4ded279d93bb for doc

Show
Ignore:
Timestamp:
2007-11-13 02:50:24 (12 months ago)
Author:
Rocco Rutte <pdmef@…>
Branch:
HEAD
Message:

Document that %f in $index_format is either Return-Path: or From:
depending on which parses correctly. Also note that alternates' regex
should be as precise as possible to avoid mismatches. Closes #1894.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • doc/manual.xml.head

    r5294 r5299  
    23772377receive e-mail. 
    23782378</para> 
     2379 
     2380<para> 
     2381As addresses are matched using regular expressions and not exact strict 
     2382comparisons, you should make sure you specify your addresses as precise 
     2383as possible to avoid mismatches. For example, if you specify: 
     2384</para> 
     2385 
     2386<screen> 
     2387alternates user@example 
     2388</screen> 
     2389 
     2390<para> 
     2391mutt will consider ``<literal>some-user@example</literal>'' as 
     2392being your address, too which may not be desired. As a solution, in such 
     2393cases addresses should be specified as: 
     2394</para> 
     2395 
     2396<screen> 
     2397alternates '^user@example$' 
     2398</screen> 
    23792399 
    23802400<para>