reload_auto_archive
Reloads updated auto-archive configuration from file after manual edits to apply new email archiving rules.
Instructions
Reload auto-archive config from file (after manual edit)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/imap_mcp/imap_client.py:911-914 (handler)The implementation of reload_auto_archive which calls _load_auto_archive_config.
def reload_auto_archive(self) -> bool: """Reload auto-archive config from file.""" self._load_auto_archive_config() return True - src/imap_mcp/server.py:678-679 (registration)The MCP server tool dispatch logic for reload_auto_archive.
elif name == "reload_auto_archive": return imap_client.reload_auto_archive()