masqmail-0.2

diff src/deliver.c @ 17:6c59dedd06be

fixed delivery with empty or non-existent alias file Thanks to Marcos Dione for the hint where to look. (Closes Debian bug #417842)
author meillo@marmaro.de
date Thu, 06 Nov 2008 09:41:35 +0100
parents f671821d8222
children 7354c2e0eb31
line diff
     1.1 --- a/src/deliver.c	Thu Nov 06 09:33:32 2008 +0100
     1.2 +++ b/src/deliver.c	Thu Nov 06 09:41:35 2008 +0100
     1.3 @@ -681,8 +681,7 @@
     1.4  	gboolean ok = TRUE;
     1.5  
     1.6  	if (conf.alias_file) {
     1.7 -		if (!(alias_table = table_read(conf.alias_file, ':')))
     1.8 -			return FALSE;
     1.9 +		alias_table = table_read(conf.alias_file, ':');
    1.10  	}
    1.11  
    1.12  	/* sort messages for different deliveries */