mirror of
https://github.com/home-assistant/core.git
synced 2025-05-09 00:19:20 +00:00
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
|