update_pop
Configure POP settings to manage email access windows and message disposition for fetched emails, ensuring tailored email retrieval and handling.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}