mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00

* Deprecate imap_content_sensor * Rename unique_id to issue_id * Migrate config to imap entry * Improve dialogs * Improve dialog texts * Add repairs.py to .coveragerc * Test the integration component setup * Text tweak Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Use flow for creating entries * Rename schema add tests * Patch client instead * Add tests repairs - refactor async_step_confirm * Comments test, correct calling next step --------- Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
14 lines
243 B
Python
14 lines
243 B
Python
"""Constants for the imap email content integration."""
|
|
|
|
DOMAIN = "imap_email_content"
|
|
|
|
CONF_SERVER = "server"
|
|
CONF_SENDERS = "senders"
|
|
CONF_FOLDER = "folder"
|
|
|
|
ATTR_FROM = "from"
|
|
ATTR_BODY = "body"
|
|
ATTR_SUBJECT = "subject"
|
|
|
|
DEFAULT_PORT = 993
|