masqmail

diff src/conf.c @ 387:a408411ff8df

Added a glob-pattern aliasing facility. One use-case is virtual hosting another catch-all maildrops, but you may use it as a more flexible aliasing mechanism as well.
author markus schnalke <meillo@marmaro.de>
date Sat, 18 Feb 2012 12:35:12 +0100
parents 5781ba87df95
children c5fd796ea06e
line diff
     1.1 --- a/src/conf.c	Sat Feb 18 11:43:06 2012 +0100
     1.2 +++ b/src/conf.c	Sat Feb 18 12:35:12 2012 +0100
     1.3 @@ -472,6 +472,8 @@
     1.4  			conf.do_relay = parse_boolean(rval);
     1.5  		else if (strcmp(lval, "alias_file") == 0) {
     1.6  			conf.alias_file = g_strdup(rval);
     1.7 +		} else if (strcmp(lval, "globalias_file") == 0) {
     1.8 +			conf.globalias_file = g_strdup(rval);
     1.9  		} else if (strcmp(lval, "caseless_matching") == 0) {
    1.10  			conf.localpartcmp = parse_boolean(rval) ? strcasecmp : strcmp;
    1.11  		} else if (strcmp(lval, "mbox_default") == 0) {