mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 16:27:19 +00:00
document verify_ssl for IMAP/SMTP (#22901)
This commit is contained in:
parent
e4942b381f
commit
7f8fd42fc9
@ -74,6 +74,11 @@ value_template:
|
|||||||
description: The subject of the email.git.
|
description: The subject of the email.git.
|
||||||
date:
|
date:
|
||||||
description: The date and time the email was sent.
|
description: The date and time the email was sent.
|
||||||
|
verify_ssl:
|
||||||
|
description: If the SSL certificate of the server needs to be verified.
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
## Example - keyword spotting
|
## Example - keyword spotting
|
||||||
|
@ -44,9 +44,9 @@ server:
|
|||||||
description: SMTP server which is used to send the notifications.
|
description: SMTP server which is used to send the notifications.
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: localhost
|
default: localhost
|
||||||
port:
|
port:
|
||||||
description: The port that the SMTP server is using.
|
description: The port that the SMTP server is using.
|
||||||
required: false
|
required: false
|
||||||
type: integer
|
type: integer
|
||||||
default: 587
|
default: 587
|
||||||
@ -72,11 +72,16 @@ sender_name:
|
|||||||
description: "Sets a custom 'sender name' in the emails headers (*From*: Custom name <example@mail.com>)."
|
description: "Sets a custom 'sender name' in the emails headers (*From*: Custom name <example@mail.com>)."
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
debug:
|
debug:
|
||||||
description: Enables Debug, e.g., `true` or `false`.
|
description: Enables Debug, e.g., `true` or `false`.
|
||||||
required: false
|
required: false
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
verify_ssl:
|
||||||
|
description: If the SSL certificate of the server needs to be verified.
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
@ -175,8 +180,8 @@ To learn more about how to use notifications in your automations, please see the
|
|||||||
|
|
||||||
## Specific E-Mail Provider Configuration
|
## Specific E-Mail Provider Configuration
|
||||||
|
|
||||||
Check below some configurations examples for specific e-mail providers.
|
Check below some configurations examples for specific e-mail providers.
|
||||||
If you are in doubt about the SMTP settings required, check your e-mail provider configuration or help pages for more information about its specific SMTP configuration.
|
If you are in doubt about the SMTP settings required, check your e-mail provider configuration or help pages for more information about its specific SMTP configuration.
|
||||||
|
|
||||||
### Google Mail
|
### Google Mail
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user