death-notifier/src/main/config.default.ini.php

32 lines
813 B
PHP
Raw Normal View History

2022-08-09 19:20:02 +02:00
;<?php exit(); ?>
[admin]
# Password to use the CLI of `api.php`. Until this value is changed from its default, the feature is disabled
cli_secret = REPLACE THIS WITH A SECRET VALUE
2022-08-09 17:03:49 +02:00
[database]
2022-08-14 15:52:47 +02:00
# Relative path to SQLite database
2022-08-09 17:03:49 +02:00
filename = .death-notifier.db
[logger]
# File to store logs in
file = .death-notifier.log
# Log level. See https://seldaek.github.io/monolog/doc/01-usage.html#log-levels
level = 300
2022-08-09 17:03:49 +02:00
[mail]
2022-08-14 15:52:47 +02:00
# Whether to enable mailing
enabled = false
# Host name of SMTP server to send mail through
2022-08-09 17:03:49 +02:00
host = TODO
2022-08-14 15:52:47 +02:00
# Port of SMTP server to send mail through
2022-08-09 17:03:49 +02:00
port = TODO
2022-08-14 15:52:47 +02:00
# Username to authenticate with at SMTP server
2022-08-09 17:03:49 +02:00
username = TODO
2022-08-14 15:52:47 +02:00
# Password to authenticate with at SMTP server
2022-08-09 17:03:49 +02:00
password = TODO
2022-08-14 15:52:47 +02:00
# Name to show to recipient
2022-08-09 17:03:49 +02:00
from_name = TODO
2022-08-14 15:52:47 +02:00
# Email address to send test emails to
2022-08-09 17:03:49 +02:00
to_address_test = TODO