diff options
Diffstat (limited to 'server/initializers/checker-after-init.ts')
-rw-r--r-- | server/initializers/checker-after-init.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/initializers/checker-after-init.ts b/server/initializers/checker-after-init.ts index 955d55206..53124f9ec 100644 --- a/server/initializers/checker-after-init.ts +++ b/server/initializers/checker-after-init.ts | |||
@@ -34,6 +34,12 @@ async function checkActivityPubUrls () { | |||
34 | // Return an error message, or null if everything is okay | 34 | // Return an error message, or null if everything is okay |
35 | function checkConfig () { | 35 | function checkConfig () { |
36 | 36 | ||
37 | // Moved configuration keys | ||
38 | if (config.has('services.csp-logger')) { | ||
39 | logger.warn('services.csp-logger configuration has been renamed to csp.report_uri. Please update your configuration file.') | ||
40 | } | ||
41 | |||
42 | // Email verification | ||
37 | if (!Emailer.isEnabled()) { | 43 | if (!Emailer.isEnabled()) { |
38 | if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) { | 44 | if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) { |
39 | return 'Emailer is disabled but you require signup email verification.' | 45 | return 'Emailer is disabled but you require signup email verification.' |