[Akonadi] [Bug 291143] Creating folders on IMAP account doesn't work

2013-10-08 Thread Andreas Stöhr
https://bugs.kde.org/show_bug.cgi?id=291143

Andreas Stöhr a...@playgnd.de changed:

   What|Removed |Added

 CC||a...@playgnd.de

--- Comment #8 from Andreas Stöhr a...@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: A09 CREATE NewToplevelFolder
S: A09 OK Create completed.
C: A10 SUBSCRIBE NewToplevelFolder
S: A10 OK Subscribe completed.
C: A11 LIST  *
S: * LIST ( \HasNoChildren ) . NewToplevelFolder
S: * LIST ( \HasNoChildren ) . INBOX
S: A11 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.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Akonadi] [Bug 291143] Creating folders on IMAP account doesn't work

2013-09-29 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=291143

Daniel Vrátil dvra...@redhat.com changed:

   What|Removed |Added

 CC||dvra...@redhat.com

--- Comment #7 from Daniel Vrátil dvra...@redhat.com ---
Alejandro, could you please follow the steps described in
http://techbase.kde.org/Projects/PIM/Akonadi/Debug_IMAP and provide log of
communication between Akonadi IMAP resource and IMAP server while trying to
create the folder, so that we cat find out whats's failing?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Akonadi] [Bug 291143] Creating folders on IMAP account doesn't work

2013-09-27 Thread Alejandro G Sánchez Martínez
https://bugs.kde.org/show_bug.cgi?id=291143

Alejandro G Sánchez Martínez asanch...@e-compugraf.com changed:

   What|Removed |Added

 CC||asanch...@e-compugraf.com

--- Comment #6 from Alejandro G Sánchez Martínez asanch...@e-compugraf.com ---
I create a folder and it creates but kmail does not show if I enter a directory
webmail works fine but can not mostar kmail. 4.11.1 kmail and reproduced and 4
desktop.

kubuntu 13.04  clean install

kubuntu 13.04 upgrade 

and other desktop

plase reopen this bug

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Akonadi] [Bug 291143] Creating folders on IMAP account doesn't work

2013-03-28 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=291143

András Manţia aman...@kde.org changed:

   What|Removed |Added

 CC||aman...@kde.org
   Version Fixed In|4.10.2291143291143  |4.10.2

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Akonadi] [Bug 291143] Creating folders on IMAP account doesn't work

2013-03-28 Thread András Manţia
https://bugs.kde.org/show_bug.cgi?id=291143

András Manţia aman...@kde.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||4.10.2291143291143
 Resolution|--- |FIXED
  Latest Commit||http://commits.kde.org/kdep
   ||im-runtime/d8fd7a28e7d6d8a8
   ||9dd398311d423118ff529718

--- Comment #5 from András Manţia aman...@kde.org ---
Git commit d8fd7a28e7d6d8a89dd398311d423118ff529718 by Andras Mantia.
Committed on 28/03/2013 at 22:45.
Pushed by amantia into branch 'KDE/4.10'.

1) Fix creation of new toplevel folders (and all its subfolder): it used to
generate a broken remote id and separtor (i) causing weird problems.
2) Make sure toplevel imap folders are shown immediately, without a need to
sync the account (workarounds an ETM bug 291143)
3) Warn the user if creating a folder failed on server-side and remove the
folder locally. Otherwise if creation failed, it was impossible to create again
a folder with the same name,
as it was already a folder with that name in the akonadi cache...
4) Make sure deleting folder foo doesn't deleted all folders starting with
foo as it did before.
5) Just fix folder deletion. :) It could fail in certain cases.
6) Fix and adapt the tests.

Reporters of closed bugs: if you can still see the bug in 4.10.2, please reopen
and state the details.

REVIEW: 109276
FIXED-IN: 4.10.2291143291143
Related: bug 312435, bug 305269, bug 301088, bug 292418, bug 305987

M  +6-1resources/imap/addcollectiontask.cpp
M  +1-1resources/imap/changecollectiontask.cpp
M  +16   -0resources/imap/imapresource.cpp
M  +7-0resources/imap/imapresource.h
M  +11   -8resources/imap/removecollectionrecursivetask.cpp
M  +1-0resources/imap/removecollectionrecursivetask.h
M  +10   -0resources/imap/resourcetask.cpp
M  +2-0resources/imap/resourcetask.h
M  +4-1resources/imap/tests/dummyresourcestate.cpp
M  +7-5resources/imap/tests/testremovecollectiontask.cpp

http://commits.kde.org/kdepim-runtime/d8fd7a28e7d6d8a89dd398311d423118ff529718

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 291143] Creating folders on IMAP account doesn't work

2012-03-11 Thread Volker Krause
https://bugs.kde.org/show_bug.cgi?id=291143

Volker Krause vkra...@kde.org changed:

   What|Removed |Added

  Component|general |IMAP resource
   Assignee|kdepim-bugs@kde.org |er...@kde.org

--- Comment #4 from Volker Krause vkra...@kde.org ---
Writing back changes is independent of syncing (syncing is only for polling for
remote changes), you get an collectionAdded() signal immediately in this case,
assuming the resource is online.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 291143] Creating folders on IMAP account doesn't work

2012-02-14 Thread Kevin Ottens
https://bugs.kde.org/show_bug.cgi?id=291143


Kevin Ottens er...@kde.org changed:

   What|Removed |Added

 CC||er...@kde.org
  Component|IMAP resource   |general
 AssignedTo|er...@kde.org   |kdepim-bugs@kde.org




--- Comment #3 from Kevin Ottens ervin kde org  2012-02-14 21:25:52 ---
Not sure if I have any control of that from the resource... Bouncing to Akonadi
general just in case.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 291143] Creating folders on IMAP account doesn't work

2012-02-13 Thread karaluh
https://bugs.kde.org/show_bug.cgi?id=291143


karaluh kara...@karaluh.pl changed:

   What|Removed |Added

 Status|NEEDSINFO   |UNCONFIRMED
 Resolution|WAITINGFORINFO  |




--- Comment #2 from karaluh karaluh karaluh pl  2012-02-13 08:12:12 ---
(In reply to comment #1)
 Did you get a sync in the meantime?

No, as you said, the folder appeared after the sync. I beleive however, that it
should be visible immediately.

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs


[Bug 291143] Creating folders on IMAP account doesn't work

2012-02-11 Thread Kevin Ottens
https://bugs.kde.org/show_bug.cgi?id=291143


Kevin Ottens er...@kde.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 Resolution||WAITINGFORINFO




--- Comment #1 from Kevin Ottens ervin kde org  2012-02-11 10:50:05 ---
Did you get a sync in the meantime? The newly created folders are not pushed on
the server before such a sync occurs.

I cannot reproduce it here, so if it still happens, please provide the
communication between the resource and the imap server so that we can check
what's going on:
http://techbase.kde.org/Projects/PIM/Akonadi/Debug_IMAP

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
Kdepim-bugs mailing list
Kdepim-bugs@kde.org
https://mail.kde.org/mailman/listinfo/kdepim-bugs