masqmail
diff src/conf.c @ 243:e758296de02d
renamed `alias_local_caseless' to `caseless_matching'
because it does not affect the matching of local parts of aliases
anymore. See man page updates in last commit.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 25 Oct 2010 17:46:13 -0300 |
parents | 4b40be6f1cbd |
children | 7082044c05c6 |
line diff
1.1 --- a/src/conf.c Mon Oct 25 17:42:48 2010 -0300 1.2 +++ b/src/conf.c Mon Oct 25 17:46:13 2010 -0300 1.3 @@ -493,7 +493,7 @@ 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, "alias_local_caseless") == 0) { 1.8 + } else if (strcmp(lval, "caseless_matching") == 0) { 1.9 conf.alias_local_cmp = parse_boolean(rval) ? strcasecmp : strcmp; 1.10 } else if (strcmp(lval, "mbox_default") == 0) { 1.11 conf.mbox_default = g_strdup(rval);