Mercurial > 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 wrap: on
line diff
--- a/src/deliver.c Thu Nov 06 09:33:32 2008 +0100 +++ b/src/deliver.c Thu Nov 06 09:41:35 2008 +0100 @@ -681,8 +681,7 @@ gboolean ok = TRUE; if (conf.alias_file) { - if (!(alias_table = table_read(conf.alias_file, ':'))) - return FALSE; + alias_table = table_read(conf.alias_file, ':'); } /* sort messages for different deliveries */