masqmail

diff src/masqmail.h @ 417:8fedb93e9b72

Added comments and debug messages.
author markus schnalke <meillo@marmaro.de>
date Wed, 29 Feb 2012 18:16:50 +0100
parents 5f0829f8e6c7
children d209b4846f2b
line diff
     1.1 --- a/src/masqmail.h	Wed Feb 29 18:14:32 2012 +0100
     1.2 +++ b/src/masqmail.h	Wed Feb 29 18:16:50 2012 +0100
     1.3 @@ -54,9 +54,9 @@
     1.4  #define ADDR_FLAG_LAST_ROUTE 0x40
     1.5  
     1.6  typedef struct _address {
     1.7 -	gchar *address;
     1.8 -	gchar *local_part;
     1.9 -	gchar *domain;
    1.10 +	gchar *address;  /* full addr string: `markus <meillo@marmaro.de>' */
    1.11 +	gchar *local_part;  /* in this example: `meillo' */
    1.12 +	gchar *domain;  /* in this example: `marmaro.de' */
    1.13  	gint flags;
    1.14  	GList *children;
    1.15  	struct _address *parent;