[dovecot-cvs] dovecot/src/imap main.c,1.67,1.68

cras at dovecot.org cras at dovecot.org
Sat Dec 31 00:13:45 EET 2005


Update of /var/lib/cvs/dovecot/src/imap
In directory talvi:/tmp/cvs-serv6907/src/imap

Modified Files:
	main.c 
Log Message:
Clarify that workaround lists are space separated. But allow commas as
well..



Index: main.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/imap/main.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- main.c	2 Dec 2005 12:53:25 -0000	1.67
+++ main.c	30 Dec 2005 22:13:43 -0000	1.68
@@ -68,7 +68,7 @@
 	if (env == NULL)
 		return;
 
-	for (str = t_strsplit_spaces(env, " "); *str != NULL; str++) {
+	for (str = t_strsplit_spaces(env, " ,"); *str != NULL; str++) {
 		list = client_workaround_list;
 		for (; list->name != NULL; list++) {
 			if (strcasecmp(*str, list->name) == 0) {



More information about the dovecot-cvs mailing list