SVN commit 805145 by wolff: use a different separator for the acl list, as discussed in: http://lists.kde.org/?l=kde-pim&m=121015531820742&w=2 M +3 -3 imap4.cpp --- trunk/KDE/kdepimlibs/kioslave/imap4/imap4.cpp #805144:805145 @@ -1502,10 +1502,10 @@ } // Returning information to the application from a special() command isn't easy. // I'm reusing the infoMessage trick seen above (for capabilities), but this - // limits me to a string instead of a stringlist. I'm using space as separator, - // since I don't think it can be used in login names. + // limits me to a string instead of a stringlist. Using DQUOTE as separator, + // because it's forbidden in userids by rfc3501 kDebug(7116) << getResults(); - infoMessage(getResults().join( " " )); + infoMessage(getResults().join( "\"" )); finished(); break; }