mirror of
https://github.com/home-assistant/core.git
synced 2025-05-17 04:19:16 +00:00

* Add cipher list option to IMAP config flow * Use client_context to get the ssl_context * Formatting * Add ssl error no make error handling more specific * Make ssl_ciper_list an advanced option
14 lines
290 B
Python
14 lines
290 B
Python
"""Constants for the imap integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "imap"
|
|
|
|
CONF_SERVER: Final = "server"
|
|
CONF_FOLDER: Final = "folder"
|
|
CONF_SEARCH: Final = "search"
|
|
CONF_CHARSET: Final = "charset"
|
|
CONF_SSL_CIPHER_LIST: Final = "ssl_cipher_list"
|
|
|
|
DEFAULT_PORT: Final = 993
|