mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
Added 'Sent' folder when creating user.
This commit is contained in:
parent
d6d4085809
commit
1bdfdbee89
@ -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])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user