From the log, I'm pretty sure I can tell what you're doing. You are trying to create 6 folders. You create folder1 under the inbox. Then you create folder2 under folder1 (folder1 is the parent), then folder3 under folder2, etc. until you get to folder6. Then you sync, but the only one we recognize is folder1.
That is because we need to know the parent folder when you create a folder. So when you create folder1, the parent is Inbox. But when you create folder2, the parent is folder1, but you haven't synced that yet, so the parent if MAPI_E_NOT_FOUND, which will cause the server to give a mail.NO_SUCH_MSG error.
So if you really want to do this, you should create folder1 under the inbox and sync (Send/Receive). Then create folder2 under folder1 and sync. Then folder3 under folder2, etc., syncing every time.
Then you will get the results you expect. |