How to create sent items, drafts and so on
Hello, I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
- Dovecot version ->2.2.36
- dovecot -n
#2.2.36 (1f10bfa63): /etc/dovecot/dovecot.conf # OS: Linux 3.10.0-957.5.1.el7.x86_64 x86_64 CentOS Linux release 7.6.1810 (Core) # Hostname: mail.corp-associe.com auth_mechanisms = plain login auth_verbose = yes disable_plaintext_auth = no first_valid_uid = 1000 listen = * log_path = /var/log/dovecot.log mail_debug = yes mail_location = maildir:~/Maildir mbox_write_locks = fcntl namespace inbox { inbox = yes location = mailbox Drafts { auto = subscribe special_use = \Drafts } mailbox Junk { auto = subscribe special_use = \Junk } mailbox Sent { special_use = \Sent } mailbox "Sent Messages" { special_use = \Sent } mailbox Trash { auto = subscribe special_use = \Trash } prefix = } passdb { args = scheme=CRAM-MD5 username_format=%u /etc/dovecot/users driver = passwd-file } protocols = imap service auth { unix_listener /var/spool/postfix/private/auth { group = postfix mode = 0660 user = postfix } } service imap-login { inet_listener imap { port = 0 } inet_listener imaps { port = 993 ssl = yes } } service pop3-login { inet_listener pop3 { port = 0 } inet_listener pop3s { port = 995 ssl = yes } } ssl_cert =
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello, I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot dovecot@dovecot.org:
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello, I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
Koshiro,
Sounds like Outlook isn't set to upload Sent messages (or Deleted, etc.)
And it sounds like an Outlook issue more than a Dovecot issue.
Maybe this will help?
https://www.msoutlook.info/question/486
-- K
On Sun, Mar 17, 2019, at 12:39 PM, Sakuma, Koshiro via dovecot wrote:
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot dovecot@dovecot.org:
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello, I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
You can also tell dovecot to create the folders:
namespace { inbox = yes mailbox Sent { auto=create } mailbox Trash { auto=create } mailbox Drafts { auto=create }
... }
Aki
On 17 March 2019 11:38 Sakuma, Koshiro via dovecot dovecot@dovecot.org wrote:
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot dovecot@dovecot.org:
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello,
I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
Forgot to mention, you can also use 'auto=subscribe' to create & subscribe to the folders automatically.
Aki
On 17 March 2019 12:17 Aki Tuomi via dovecot dovecot@dovecot.org wrote:
You can also tell dovecot to create the folders:
namespace { inbox = yes mailbox Sent { auto=create } mailbox Trash { auto=create } mailbox Drafts { auto=create }
... }
Aki
On 17 March 2019 11:38 Sakuma, Koshiro via dovecot dovecot@dovecot.org wrote:
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot dovecot@dovecot.org:
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello,
I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
Hi, Aki and Kostya,
Thank you for your feedback. Well, I have set "auto = subscribe" in the 15-mailboxes.conf file. Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
The drafts, trash, Junk, Sent and Sent Massages folders are in English. Can I change to other language in the 15-mailboxes.conf file? Actually, I tried to change it, but dovecot doesn't start due to "unrecognized" parameter.
Maybe my configuration of 15-mailboxes.conf is wrong. The current parameter of sent message is as follow. mailbox Sent { special_use = \Sent auto = subscribe } mailbox "Sent Messages" { special_use = \Sent auto = subscribe }
Regards,
2019年3月17日(日) 19:18 Aki Tuomi aki.tuomi@open-xchange.com:
Forgot to mention, you can also use 'auto=subscribe' to create & subscribe to the folders automatically.
Aki
On 17 March 2019 12:17 Aki Tuomi via dovecot dovecot@dovecot.org wrote:
You can also tell dovecot to create the folders:
namespace { inbox = yes mailbox Sent { auto=create } mailbox Trash { auto=create } mailbox Drafts { auto=create }
... }
Aki
On 17 March 2019 11:38 Sakuma, Koshiro via dovecot < dovecot@dovecot.org> wrote:
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello,
I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
Koshiro,
Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
Maybe Outlook isn't going to upload all old pre-existing Sent (etc) messages to server just from your setting the right server folder.
Have you tried sending a *new* test message from Outlook ("new" - after you changed Outlook setting for Sent folder) - to see if it gets uploaded?
If it does, but the old pre-existing messages don't - I would think you'd need to find a way to make Outlook upload *all* (old, pre-existing) Sent messages to server?
-- K
On Sun, Mar 17, 2019, at 1:49 PM, Sakuma, Koshiro via dovecot wrote:
Hi, Aki and Kostya,
Thank you for your feedback. Well, I have set "auto = subscribe" in the 15-mailboxes.conf file. Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
The drafts, trash, Junk, Sent and Sent Massages folders are in English. Can I change to other language in the 15-mailboxes.conf file? Actually, I tried to change it, but dovecot doesn't start due to "unrecognized" parameter.
Maybe my configuration of 15-mailboxes.conf is wrong. The current parameter of sent message is as follow. mailbox Sent { special_use = \Sent auto = subscribe } mailbox "Sent Messages" { special_use = \Sent auto = subscribe }
Regards,
2019年3月17日(日) 19:18 Aki Tuomi aki.tuomi@open-xchange.com:
Forgot to mention, you can also use 'auto=subscribe' to create & subscribe to the folders automatically.
Aki
On 17 March 2019 12:17 Aki Tuomi via dovecot dovecot@dovecot.org wrote:
You can also tell dovecot to create the folders:
namespace { inbox = yes mailbox Sent { auto=create } mailbox Trash { auto=create } mailbox Drafts { auto=create }
... }
Aki
On 17 March 2019 11:38 Sakuma, Koshiro via dovecot dovecot@dovecot.org wrote:
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot dovecot@dovecot.org:
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello,
I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
Hi, K,
Thanks for your feedback again! BTW, I tried to copy mail file from sent item folder which is default folder of Outlook 2013 to "Sent Messages" folder of Dovecot. I can see the mail files in this folder, but I don't see them under .Sent Messages folder like "new", "cur" and "tmp" folders. You have any idea where the mail files are copied??
rwx------ 5 vmail vmail 108 3月 17 19:55 .Drafts drwx------ 5 vmail vmail 108 3月 17 19:55 .Junk drwx------ 5 vmail vmail 108 3月 17 19:55 .Sent drwx------ 5 vmail vmail 108 3月 17 19:55 .Sent Messages drwx------ 5 vmail vmail 135 3月 17 19:55 .Trash drwx------ 2 vmail vmail 6 3月 17 19:55 cur -rw------- 1 vmail vmail 51 3月 17 19:55 dovecot-uidlist -rw------- 1 vmail vmail 8 3月 17 19:55 dovecot-uidvalidity -r--r--r-- 1 vmail vmail 0 3月 17 19:55 dovecot-uidvalidity.5c8e27ae -rw------- 1 vmail vmail 312 3月 17 19:55 dovecot.index.log -rw------- 1 vmail vmail 120 3月 17 19:55 dovecot.mailbox.log drwx------ 2 vmail vmail 6 3月 17 19:55 new -rw------- 1 vmail vmail 37 3月 17 19:55 subscriptions drwx------ 2 vmail vmail 6 3月 17 19:55 tmp
Mmm.. I actually changed the directory to .Sent Messages, but I'm now in the .Sent directory... [root@mail .Sent]# pwd /var/spool/virtual/landscapes-photography.com/koshiro.sakuma/Maildir/.Sent
Regards,
2019年3月17日(日) 19:58 Kostya Vasilyev via dovecot dovecot@dovecot.org:
Koshiro,
Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
Maybe Outlook isn't going to upload all old pre-existing Sent (etc) messages to server just from your setting the right server folder.
Have you tried sending a *new* test message from Outlook ("new" - after you changed Outlook setting for Sent folder) - to see if it gets uploaded?
If it does, but the old pre-existing messages don't - I would think you'd need to find a way to make Outlook upload *all* (old, pre-existing) Sent messages to server?
-- K
On Sun, Mar 17, 2019, at 1:49 PM, Sakuma, Koshiro via dovecot wrote:
Hi, Aki and Kostya,
Thank you for your feedback. Well, I have set "auto = subscribe" in the 15-mailboxes.conf file. Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
The drafts, trash, Junk, Sent and Sent Massages folders are in English. Can I change to other language in the 15-mailboxes.conf file? Actually, I tried to change it, but dovecot doesn't start due to "unrecognized" parameter.
Maybe my configuration of 15-mailboxes.conf is wrong. The current parameter of sent message is as follow. mailbox Sent { special_use = \Sent auto = subscribe } mailbox "Sent Messages" { special_use = \Sent auto = subscribe }
Regards,
2019年3月17日(日) 19:18 Aki Tuomi aki.tuomi@open-xchange.com:
Forgot to mention, you can also use 'auto=subscribe' to create & subscribe to the folders automatically.
Aki
On 17 March 2019 12:17 Aki Tuomi via dovecot dovecot@dovecot.org wrote:
You can also tell dovecot to create the folders:
namespace { inbox = yes mailbox Sent { auto=create } mailbox Trash { auto=create } mailbox Drafts { auto=create }
... }
Aki
On 17 March 2019 11:38 Sakuma, Koshiro via dovecot < dovecot@dovecot.org> wrote:
Hi, Yassine,
Yes, you are right that these folders are created by MUA which is Outlook 2013. I can see "Inbox, sent items, drafts, deleted" box in the mail client. This is OK. However, I only can take backup "inbox" mail of dovecot side. I mean, the backup can be taken from /Maildir/cur directory. I would like to take backup from "Sent, Draft" boxes which are dovecot mail boxed. I need to take backup MS outlook of "ost" file for sent item, draft mail box separately in that case. Or it is not possible way to take these mail boxed on dovecot?
Regards,
2019年3月17日(日) 17:45 Yassine Chaouche via dovecot
On 3/17/19 8:59 AM, Sakuma, Koshiro via dovecot wrote:
Hello,
I've setup Dovecot and Postfix mailing systems. The protocol is imap. Now, I've realized that there are no "sent items, drafts" boxed under Maildir for each users. I would like to take back up Inbox, sent items, draft boxes. For sent items box, it seems to be stored in outlook client file which is "ost". The configuration parameters and version is as follows. I can see that "namespace" has been configured. How can I setup to see these folders?
Thank you for your support!
I believe these folders (sent, draft etc.) are created by the MUA on first IMAP connexion. Can you confirm that these folders are created when you connect to your IMAP account for the first via a mail client ?
If you are accessing your e-mail via a webmail, make sure to configure your webmail to create those folders for you. For example, with roundcube the config is :
$config['drafts_mbox'] = 'INBOX.Drafts'; $config['junk_mbox'] = 'INBOX.Junk'; $config['sent_mbox'] = 'INBOX.Sent'; $config['trash_mbox'] = 'INBOX.Trash'; $config['create_default_folders'] = true;
Yassine.
On Sun, Mar 17, 2019, at 2:06 PM, Sakuma, Koshiro via dovecot wrote:
Hi, K,
Thanks for your feedback again! BTW, I tried to copy mail file from sent item folder which is default folder of Outlook 2013 to "Sent Messages" folder of Dovecot. I can see the mail files in this folder, but I don't see them under .Sent Messages folder like "new", "cur" and "tmp" folders. You have any idea where the mail files are copied??
Oh sorry this is now over my head :)
-- K
rwx------ 5 vmail vmail 108 3月 17 19:55 .Drafts drwx------ 5 vmail vmail 108 3月 17 19:55 .Junk drwx------ 5 vmail vmail 108 3月 17 19:55 .Sent drwx------ 5 vmail vmail 108 3月 17 19:55 .Sent Messages drwx------ 5 vmail vmail 135 3月 17 19:55 .Trash drwx------ 2 vmail vmail 6 3月 17 19:55 cur -rw------- 1 vmail vmail 51 3月 17 19:55 dovecot-uidlist -rw------- 1 vmail vmail 8 3月 17 19:55 dovecot-uidvalidity -r--r--r-- 1 vmail vmail 0 3月 17 19:55 dovecot-uidvalidity.5c8e27ae -rw------- 1 vmail vmail 312 3月 17 19:55 dovecot.index.log -rw------- 1 vmail vmail 120 3月 17 19:55 dovecot.mailbox.log drwx------ 2 vmail vmail 6 3月 17 19:55 new -rw------- 1 vmail vmail 37 3月 17 19:55 subscriptions drwx------ 2 vmail vmail 6 3月 17 19:55 tmp
Mmm.. I actually changed the directory to .Sent Messages, but I'm now in the .Sent directory... [root@mail .Sent]# pwd /var/spool/virtual/landscapes-photography.com/koshiro.sakuma/Maildir/.Sent
Regards,
2019年3月17日(日) 19:58 Kostya Vasilyev via dovecot dovecot@dovecot.org:
__ Koshiro,
Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
Maybe Outlook isn't going to upload all old pre-existing Sent (etc) messages to server just from your setting the right server folder.
Have you tried sending a *new* test message from Outlook ("new" - after you changed Outlook setting for Sent folder) - to see if it gets uploaded?
If it does, but the old pre-existing messages don't - I would think you'd need to find a way to make Outlook upload *all* (old, pre-existing) Sent messages to server?
-- K
On Sun, Mar 17, 2019, at 1:49 PM, Sakuma, Koshiro via dovecot wrote:
Hi, Aki and Kostya,
Thank you for your feedback. Well, I have set "auto = subscribe" in the 15-mailboxes.conf file. Now, I changed Outlook setting of imap and I can see Draft, Trash, Sent and Sent Messages folders and I can see the mail files in there. However, I don't see mail files in the "cur or new" folder where is under .Sent Messages folder.
The drafts, trash, Junk, Sent and Sent Massages folders are in English. Can I change to other language in the 15-mailboxes.conf file? Actually, I tried to change it, but dovecot doesn't start due to "unrecognized" parameter.
Maybe my configuration of 15-mailboxes.conf is wrong. The current parameter of sent message is as follow. mailbox Sent { special_use = \Sent auto = subscribe } mailbox "Sent Messages" { special_use = \Sent auto = subscribe }
Regards,
participants (4)
-
Aki Tuomi
-
Kostya Vasilyev
-
Sakuma, Koshiro
-
Yassine Chaouche