diff src/imap/main.c @ 3788:b412da0eb27c HEAD

Clarify that workaround lists are space separated. But allow commas as well..
author Timo Sirainen <tss@iki.fi>
date Sat, 31 Dec 2005 00:13:42 +0200
parents d22c883021da
children 0120998fb2d9
line wrap: on
line diff
--- a/src/imap/main.c	Sat Dec 31 00:09:03 2005 +0200
+++ b/src/imap/main.c	Sat Dec 31 00:13:42 2005 +0200
@@ -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) {