Changeset 3893:9124b5298407 for alias.c

Show
Ignore:
Timestamp:
2005-02-12 11:12:40 (4 years ago)
Author:
TAKAHASHI Tamotsu <ttakah@…>
Branch:
HEAD
Message:

unalternates now also adds to a list of exceptions; same behavior
for unlists, and unsubscribe. With some changes from tlr.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • alias.c

    r3873 r3893  
    574574  { 
    575575    dprint (5, (debugfile, "mail_addr_is_user: yes, %s matched by alternates.\n", addr->mailbox)); 
    576     return 1; 
     576    if (mutt_match_rx_list (addr->mailbox, UnAlternates)) 
     577      dprint (5, (debugfile, "mail_addr_is_user: but, %s matched by unalternates.\n", addr->mailbox)); 
     578    else 
     579      return 1; 
    577580  } 
    578581