36 lines
935 B
YAML
36 lines
935 B
YAML
docs:
|
|
title: Email sending
|
|
intro: |-
|
|
Configure your local SMTP server or use one of the available providers.
|
|
|
|
These values are copied to settings when the server starts and can be managed from the administration console.
|
|
We recommend you remove these values after they are copied to settings.
|
|
If server detects difference between these options and settings, it shows a warning in the log on server start.
|
|
|
|
props:
|
|
- name: host
|
|
default: "localhost"
|
|
description: |-
|
|
The SMTP server hostname.
|
|
|
|
- name: port
|
|
type: int
|
|
default: 25
|
|
description: The SMTP post.
|
|
|
|
- name: user
|
|
description: The SMTP username.
|
|
|
|
- name: pass
|
|
description: The SMTP password.
|
|
|
|
- name: from
|
|
description: The SMTP `from` email parameter
|
|
|
|
- name: tlsInsecure
|
|
type: bool
|
|
default: false
|
|
description: Allow insecure (invalid, expired TLS certificates) connections.
|
|
|
|
- name: tlsServerName
|