X-Git-Url: https://git.hcoop.net/hcoop/domtool2.git/blobdiff_plain/21d921a56a850857f6ea883c6dff6a411a659bbf..1d3ef80ec822ea0fa241eb5485549ca7417e787f:/src/msgTypes.sml diff --git a/src/msgTypes.sml b/src/msgTypes.sml index 5758d80..cc792ff 100644 --- a/src/msgTypes.sml +++ b/src/msgTypes.sml @@ -58,5 +58,16 @@ datatype msg = (* Request creation of a user for the named DBMS type *) | MsgCreateDbTable of {dbtype : string, dbname : string} (* Request creation of a DBMS table *) + | MsgNewMailbox of {domain : string, user : string, + passwd : string, mailbox : string} + (* Request creation of a new vmail mapping *) + | MsgPasswdMailbox of {domain : string, user : string, passwd : string} + (* Change a vmail account's password *) + | MsgRmMailbox of {domain : string, user : string} + (* Remove a vmail mapping *) + | MsgListMailboxes of string + (* List all mailboxes for a domain *) + | MsgMailboxes of string list + (* Reply to MsgListMailboxes *) end