Fix email object/body configurations
This commit is contained in:
parent
7c51916a61
commit
dd2c2a52cc
|
@ -54,6 +54,12 @@ smtp:
|
||||||
ca_file: null # Used for self signed certificates
|
ca_file: null # Used for self signed certificates
|
||||||
from_address: 'admin@example.com'
|
from_address: 'admin@example.com'
|
||||||
|
|
||||||
|
email:
|
||||||
|
body:
|
||||||
|
signature: "PeerTube"
|
||||||
|
object:
|
||||||
|
prefix: "[PeerTube]"
|
||||||
|
|
||||||
# From the project root directory
|
# From the project root directory
|
||||||
storage:
|
storage:
|
||||||
tmp: '/var/www/peertube/storage/tmp/' # Used to download data (imports etc), store uploaded files before processing...
|
tmp: '/var/www/peertube/storage/tmp/' # Used to download data (imports etc), store uploaded files before processing...
|
||||||
|
@ -248,8 +254,6 @@ instance:
|
||||||
"# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:"
|
"# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# You can provide a reporting endpoint for Content Security Policy violations
|
|
||||||
csp-logger:
|
|
||||||
# Cards configuration to format video in Twitter
|
# Cards configuration to format video in Twitter
|
||||||
twitter:
|
twitter:
|
||||||
username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published
|
username: '@Chocobozzz' # Indicates the Twitter account for the website or platform on which the content was published
|
||||||
|
|
|
@ -10,6 +10,7 @@ function checkMissedConfig () {
|
||||||
'trust_proxy',
|
'trust_proxy',
|
||||||
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', 'database.pool.max',
|
'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', 'database.pool.max',
|
||||||
'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
|
'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
|
||||||
|
'email.body.signature', 'email.object.prefix',
|
||||||
'storage.avatars', 'storage.videos', 'storage.logs', 'storage.previews', 'storage.thumbnails', 'storage.torrents', 'storage.cache',
|
'storage.avatars', 'storage.videos', 'storage.logs', 'storage.previews', 'storage.thumbnails', 'storage.torrents', 'storage.cache',
|
||||||
'storage.redundancy', 'storage.tmp', 'storage.streaming_playlists',
|
'storage.redundancy', 'storage.tmp', 'storage.streaming_playlists',
|
||||||
'log.level',
|
'log.level',
|
||||||
|
|
Loading…
Reference in New Issue