update_pop
Configure POP email settings to control which messages are accessible and what happens to them after retrieval, including setting access windows and message disposition actions.
Instructions
Updates POP settings
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accessWindow | Yes | The range of messages which are accessible via POP | |
| disposition | Yes | The action that will be executed on a message after it has been fetched via POP |
Input Schema (JSON Schema)
{
"properties": {
"accessWindow": {
"description": "The range of messages which are accessible via POP",
"enum": [
"disabled",
"allMail",
"fromNowOn"
],
"type": "string"
},
"disposition": {
"description": "The action that will be executed on a message after it has been fetched via POP",
"enum": [
"archive",
"trash",
"leaveInInbox"
],
"type": "string"
}
},
"required": [
"accessWindow",
"disposition"
],
"type": "object"
}