mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a92b0bff1d
* add a plain text email template * use plain text email template for file based emails * add config option to SMTP emails named disable_html_emails * config option is a boolean that when set to true will only send plain text emails * add docs for more complex SMTP notifier options * update template * add rfc1341 multipart logic to notifier * check for errors after identity_verification * * fix nil ptr * go mod tidy * remove needless checks * * use multipart/atlernative instead * * add rfc5322 compliant date header * * fix linting issues
29 lines
767 B
Markdown
29 lines
767 B
Markdown
---
|
|
layout: default
|
|
title: Filesystem
|
|
parent: Notifier
|
|
grand_parent: Configuration
|
|
nav_order: 1
|
|
---
|
|
|
|
# Filesystem
|
|
|
|
With this configuration, the message will be sent to a file. This option
|
|
should only be used for testing purposes. This method will use the plain
|
|
text email template for readability purposes.
|
|
|
|
```yaml
|
|
# Configuration of the notification system.
|
|
#
|
|
# Notifications are sent to users when they require a password reset, a U2F
|
|
# registration or a TOTP registration.
|
|
# Use only an available configuration: filesystem, smtp.
|
|
notifier:
|
|
# You can disable the notifier startup check by setting this to true.
|
|
disable_startup_check: false
|
|
|
|
# For testing purpose, notifications can be sent in a file.
|
|
filesystem:
|
|
filename: /config/notification.txt
|
|
```
|