[Akonadi] [Bug 291143] Creating folders on IMAP account doesn't work
Andreas Stöhr
andy at playgnd.de
Tue Oct 8 17:51:51 BST 2013
https://bugs.kde.org/show_bug.cgi?id=291143
Andreas Stöhr <andy at playgnd.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |andy at playgnd.de
--- Comment #8 from Andreas Stöhr <andy at playgnd.de> ---
Client:
Gentoo stable
KMail 4.10.5
Akonadi Console 0.99
Server:
Debian wheezy
dovecot 2.1.7
create new toplevel-folder in kmail
imap.log.pid.2:
C: A000009 CREATE "NewToplevelFolder"
S: A000009 OK Create completed.
C: A000010 SUBSCRIBE "NewToplevelFolder"
S: A000010 OK Subscribe completed.
C: A000011 LIST "" *
S: * LIST ( \HasNoChildren ) . NewToplevelFolder
S: * LIST ( \HasNoChildren ) . INBOX
S: A000011 OK List completed.
there is no new folder in kmail
in db you can see:
SELECT * from CollectionTable where parentId=686;
+-----+--------------------+-------------------+----------+
| id | remoteId | name | parentId |
+-----+--------------------+-------------------+----------+
| 687 | .INBOX | INBOX | 686 |
| 690 | /NewToplevelFolder | NewToplevelFolder | 686 |
+-----+--------------------+-------------------+----------+
change the remoteid:
Update collectionTable set remoteId='.NewToplevelFolder' where id=690;
select id, remoteId, name, parentId from CollectionTable where parentId=686;
+-----+--------------------+-------------------+----------+
| id | remoteId | name | parentId |
+-----+--------------------+-------------------+----------+
| 687 | .INBOX | INBOX | 686 |
| 690 | .NewToplevelFolder | NewToplevelFolder | 686 |
+-----+--------------------+-------------------+----------+
the folder is usable.
--
You are receiving this mail because:
You are on the CC list for the bug.
More information about the Kdepim-bugs
mailing list