Changeset 275 for trunk/src/sh_nmail.c
- Timestamp:
 - Mar 10, 2010, 9:24:17 PM (16 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/sh_nmail.c (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/sh_nmail.c
r273 r275 108 108 109 109 SH_MUTEX_LOCK_UNSAFE(mutex_listall); 110 if (0 == check_double(str, all_recipients, S_TRUE))110 if (0 != check_double(str, all_recipients, S_TRUE)) 111 111 { 112 112 new->isAlias = 1; … … 207 207 for (i = 0; i < nfields; ++i) { 208 208 if (0 == check_double(array[i], all_recipients, S_TRUE)) 209 nflag = 1; 209 nflag = 1; /* not in all_recipients --> bad */ 210 210 } 211 211 … … 406 406 */ 407 407 if (flagit && list->isAlias == 0) 408 list->send_mail = 1; 408 { 409 list->send_mail = 1; 410 } 409 411 list = list->all_next; 410 412 } … … 518 520 if (retval != 0) 519 521 { 522 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, 523 retval, MSG_E_SUBGEN, 524 _("could not mail immediately"), 525 _("sh_nmail_msg") ); 520 526 sh_mail_pushstack(level, message, alias); 521 527 }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.