* 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
13 lines
290 B
Python
13 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
|