# HG changeset patch # User markus schnalke # Date 1330535810 -3600 # Node ID 8fedb93e9b72d88103b1371b1b3c07cbc0811068 # Parent ddac877ced95a22b7a88a2be94d3bf3f262a6c1a Added comments and debug messages. diff -r ddac877ced95 -r 8fedb93e9b72 src/deliver.c --- a/src/deliver.c Wed Feb 29 18:14:32 2012 +0100 +++ b/src/deliver.c Wed Feb 29 18:16:50 2012 +0100 @@ -895,6 +895,8 @@ } if (globalias_table) { GList *globaliased_rcpt_list; + + DEBUG(5) debugf("Doing globalias expansion\n"); globaliased_rcpt_list = alias_expand(globalias_table, rcpt_list, msgout->msg->non_rcpt_list, 1); @@ -903,6 +905,8 @@ } if (alias_table) { GList *aliased_rcpt_list; + + DEBUG(5) debugf("Doing alias expansion\n"); aliased_rcpt_list = alias_expand(alias_table, rcpt_list, msgout->msg->non_rcpt_list, 0); diff -r ddac877ced95 -r 8fedb93e9b72 src/masqmail.h --- a/src/masqmail.h Wed Feb 29 18:14:32 2012 +0100 +++ b/src/masqmail.h Wed Feb 29 18:16:50 2012 +0100 @@ -54,9 +54,9 @@ #define ADDR_FLAG_LAST_ROUTE 0x40 typedef struct _address { - gchar *address; - gchar *local_part; - gchar *domain; + gchar *address; /* full addr string: `markus ' */ + gchar *local_part; /* in this example: `meillo' */ + gchar *domain; /* in this example: `marmaro.de' */ gint flags; GList *children; struct _address *parent;