← Back to team overview

ubuntu-phone team mailing list archive

Re: Dekko IMAP save sent emails

 

Su venerdì 22 aprile 2016 12:12:33 CEST, Jacob Nielsen <snobel@xxxxxxxxxxx> ha scritto:
On 2016-04-21 14:16, Roberto Resoli wrote:
 > Il 28/03/2016 19:18, Matthias Apitz ha scritto:
 >> On Monday, 28 March 2016 18:48:32 CEST, Louis Holbrook
 >> <accounts@xxxxxxxxxxx> wrote:
...
 >>
 >> one should file a LP issue
 >
 > I hit this bug as well (configuring Dekko on my brand new m10 Tablet),
 > and found this:
 >
 > https://bugs.launchpad.net/dekko/+bug/1540149
 >
 > The bug was aknowladged by Dan Chapman, who provides a workaroud:
 >
 > https://bugs.launchpad.net/dekko/+bug/1540149/comments/1

Thanks for that - I had the same issue and applying the work-around has cleaned things up.

Things are still not right, though. Outgoing mail is sent OK but not saved on the IMAP server, despite having set up a "Sent" folder.

My mailboxConfig.json looks like this (where <UUID> matches the only entry left in dekko.dekkoproject.conf):

-----
{
     "<UUID>": {
         "global": {
             "archive": {
                 "enabled": false,
                 "folder": "",
                 "format": "monthly",
                 "keepMboxStructure": false
             },
             "deleted": {
                 "autoExpunge": false,
                 "markRead": true,
                 "moveToTrash": true,
                 "preserveFlagged": false
             },
             "drafts": {
                 "saveDraftInterval": 1000,
                 "saveLocal": true,
                 "saveToDrafts": false
             },
             "draftsMailbox": "",
             "sentMailbox": "Sent",
             "submission": {
                 "allowRetries": false,
                 "bcc": "",
                 "cc": "",
                 "includeBCC": false,
                 "includeCC": false,
                 "includeSignature": "always",
                 "quoteOriginalMessage": true,
                 "replyQuotePosition": "before",
                 "saveToImap": true
             },
             "trashMailbox": "Trash"
         }
     }
}
-----

I can see the contents of the "Sent" folder just fine, and deleted mail is moved to the "Trash" folder as expected. I spotted a line in dekko.dekkoproject.conf, "saveToImapEnabled=false", but changing that setting to true had no effect.

I couldn't find a matching bug report - is this new, or just me doing something wrong?


Same here. The mailbox behaviour file in my case was missing names for some folders, notably 'Sent' 'Drafts' and 'Trash'. I edited the file completing the missing names, and changing some boolean switch, and now all is fine. I will comment in the bug report asap.

I add here below my current file (the inner part only for the IMAP_SMTP account ):
----
     "global": {
           "archive": {
               "enabled": false,
               "folder": "",
               "format": "monthly",
               "keepMboxStructure": false
           },
           "deleted": {
               "autoExpunge": false,
               "markRead": false,
               "moveToTrash": true,
               "preserveFlagged": false
           },
           "drafts": {
               "saveDraftInterval": 1000,
"saveLocal": true, "saveToDrafts": true }, "draftsMailbox": "Drafts",
           "sentMailbox": "Sent",
           "submission": {
               "allowRetries": false,
               "bcc": "",
               "cc": "",
               "includeBCC": false,
               "includeCC": false,
               "includeSignature": "never",
               "quoteOriginalMessage": true,
               "replyQuotePosition": "after",
               "saveToImap": true
           },
           "trashMailbox": "Trash"
---

rob


References