diff --git a/docs/_docs/02-02-advanced-configuration.md b/docs/_docs/02-02-advanced-configuration.md index 4fc60a2cc..c2c661021 100644 --- a/docs/_docs/02-02-advanced-configuration.md +++ b/docs/_docs/02-02-advanced-configuration.md @@ -563,3 +563,14 @@ This is a **Build Variable** and must be consumed during build. If using the image you can specify it with `--build-arg TALK_REPLY_COMMENTS_LOAD_DEPTH=3`. Specifies the initial replies to load for a comment. (Default `3`) + +## TALK_LOGGING_LEVEL + +Sets the logging level for the context logger (from [Bunyan](https://github.com/trentm/node-bunyan)) that will be phased in to replace most existing `debug()` calls. Supports the following values: + +- `fatal` +- `error` +- `warn` +- `info` +- `debug` +- `trace` \ No newline at end of file diff --git a/docs/_docs/04-03-additional-plugins.md b/docs/_docs/04-03-additional-plugins.md index b88d8437c..e8a4a12a5 100644 --- a/docs/_docs/04-03-additional-plugins.md +++ b/docs/_docs/04-03-additional-plugins.md @@ -142,6 +142,10 @@ anything. You need to enable one of the `talk-plugin-notifications-category-*` p ``` {:.no-copy} +Configuration: + +- `DISABLE_REQUIRE_EMAIL_VERIFICATIONS` - When `TRUE`, it will disable the verification email check before sending notifications for those emails. **Note that organizations implementing a custom authentication system _must_ disable this feature, as they don't use our integrated auth**. (Default `FALSE`). + ### talk-plugin-notifications-category-reply {:.param} @@ -157,3 +161,11 @@ Source: [plugins/talk-plugin-notifications-category-featured](https://github.com When a comment is featured (via the `talk-plugin-featured-comments` plugin), the user will receive a notification email. + +### talk-plugin-notifications-category-staff +{:.param} + +Source: [plugins/talk-plugin-notifications-category-staff](https://github.com/coralproject/talk/tree/master/plugins/talk-plugin-notifications-category-staff){:target="_blank"} + +Replies made to each user by a staff member will trigger an email to be sent +with the notification details if enabled.