Mercurial > masqmail
comparison 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 |
comparison
equal
deleted
inserted
replaced
416:ddac877ced95 | 417:8fedb93e9b72 |
---|---|
893 conf.log_user); | 893 conf.log_user); |
894 } | 894 } |
895 } | 895 } |
896 if (globalias_table) { | 896 if (globalias_table) { |
897 GList *globaliased_rcpt_list; | 897 GList *globaliased_rcpt_list; |
898 | |
899 DEBUG(5) debugf("Doing globalias expansion\n"); | |
898 globaliased_rcpt_list = alias_expand(globalias_table, | 900 globaliased_rcpt_list = alias_expand(globalias_table, |
899 rcpt_list, | 901 rcpt_list, |
900 msgout->msg->non_rcpt_list, 1); | 902 msgout->msg->non_rcpt_list, 1); |
901 g_list_free(rcpt_list); | 903 g_list_free(rcpt_list); |
902 rcpt_list = globaliased_rcpt_list; | 904 rcpt_list = globaliased_rcpt_list; |
903 } | 905 } |
904 if (alias_table) { | 906 if (alias_table) { |
905 GList *aliased_rcpt_list; | 907 GList *aliased_rcpt_list; |
908 | |
909 DEBUG(5) debugf("Doing alias expansion\n"); | |
906 aliased_rcpt_list = alias_expand(alias_table, | 910 aliased_rcpt_list = alias_expand(alias_table, |
907 rcpt_list, | 911 rcpt_list, |
908 msgout->msg->non_rcpt_list, 0); | 912 msgout->msg->non_rcpt_list, 0); |
909 g_list_free(rcpt_list); | 913 g_list_free(rcpt_list); |
910 rcpt_list = aliased_rcpt_list; | 914 rcpt_list = aliased_rcpt_list; |