Merge pull request #573 from ptimof/master

Added 'Sent' folder when creating user.
This commit is contained in:
Joshua Tauberer 2015-10-12 10:05:52 -04:00
commit 5e7b7835b7
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ def add_mail_user(email, pw, privs, env):
conn.commit()
return ("Failed to initialize the user: " + e.output.decode("utf8"), 400)
for folder in ("INBOX", "Trash", "Spam", "Drafts"):
for folder in ("INBOX", "Sent", "Trash", "Spam", "Drafts"):
if folder not in existing_mboxes:
utils.shell('check_call', ["doveadm", "mailbox", "create", "-u", email, "-s", folder])