update_mailbox
Modify mailbox settings on Migadu email hosting, including send/receive permissions, IMAP/POP3 access, spam handling, and aggressiveness, with a list of dicts for targeted updates.
Instructions
Update mailbox settings. List of dicts with: target (required), name (optional), may_send (optional), may_receive (optional), may_access_imap (optional), may_access_pop3 (optional), spam_action (optional), spam_aggressiveness (optional).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"updates": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Updates",
"type": "array"
}
},
"required": [
"updates"
],
"type": "object"
}