From kde-commits Wed May 07 18:09:44 2008 From: Carsten Wolff Date: Wed, 07 May 2008 18:09:44 +0000 To: kde-commits Subject: KDE/kdepimlibs/kioslave/imap4 Message-Id: <1210183784.115079.22950.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121018401306391 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; }