dovecot-2.0: doveconf: -f protocol is now an alias for -f service.

dovecot at dovecot.org dovecot at dovecot.org
Fri Sep 4 00:33:49 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/717688db5e82
changeset: 9861:717688db5e82
user:      Timo Sirainen <tss at iki.fi>
date:      Thu Sep 03 17:33:05 2009 -0400
description:
doveconf: -f protocol is now an alias for -f service.

diffstat:

1 file changed, 2 insertions(+)
src/config/doveconf.c |    2 ++

diffs (12 lines):

diff -r d3d8ba13faa6 -r 717688db5e82 src/config/doveconf.c
--- a/src/config/doveconf.c	Thu Sep 03 17:12:16 2009 -0400
+++ b/src/config/doveconf.c	Thu Sep 03 17:33:05 2009 -0400
@@ -205,6 +205,8 @@ static void filter_parse_arg(struct conf
 {
 	if (strncmp(arg, "service=", 8) == 0)
 		filter->service = arg + 8;
+	else if (strncmp(arg, "protocol=", 9) == 0)
+		filter->service = arg + 9;
 	else if (strncmp(arg, "lip=", 4) == 0) {
 		if (net_parse_range(arg + 4, &filter->local_net,
 				    &filter->local_bits) < 0)


More information about the dovecot-cvs mailing list