masqmail

diff src/deliver.c @ 417:8fedb93e9b72

Added comments and debug messages.
author markus schnalke <meillo@marmaro.de>
date Wed, 29 Feb 2012 18:16:50 +0100
parents 899c97e877a5
children 5593964ec779
line diff
     1.1 --- a/src/deliver.c	Wed Feb 29 18:14:32 2012 +0100
     1.2 +++ b/src/deliver.c	Wed Feb 29 18:16:50 2012 +0100
     1.3 @@ -895,6 +895,8 @@
     1.4  		}
     1.5  		if (globalias_table) {
     1.6  			GList *globaliased_rcpt_list;
     1.7 +
     1.8 +			DEBUG(5) debugf("Doing globalias expansion\n");
     1.9  			globaliased_rcpt_list = alias_expand(globalias_table,
    1.10  					rcpt_list,
    1.11  					msgout->msg->non_rcpt_list, 1);
    1.12 @@ -903,6 +905,8 @@
    1.13  		}
    1.14  		if (alias_table) {
    1.15  			GList *aliased_rcpt_list;
    1.16 +
    1.17 +			DEBUG(5) debugf("Doing alias expansion\n");
    1.18  			aliased_rcpt_list = alias_expand(alias_table,
    1.19  					rcpt_list,
    1.20  					msgout->msg->non_rcpt_list, 0);