aboutsummaryrefslogtreecommitdiff
path: root/docs/administration
diff options
context:
space:
mode:
Diffstat (limited to 'docs/administration')
-rw-r--r--docs/administration/CLI_tasks/user.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/user.md b/docs/administration/CLI_tasks/user.md
index 24fdaeab4..61774f469 100644
--- a/docs/administration/CLI_tasks/user.md
+++ b/docs/administration/CLI_tasks/user.md
@@ -300,3 +300,36 @@
```sh
mix pleroma.user unconfirm_all
```
+
+## Update email notifications settings for user
+
+=== "OTP"
+
+ ```sh
+ ./bin/pleroma_ctl user email_notifications <nickname> [option ...]
+ ```
+
+=== "From Source"
+
+ ```sh
+ mix pleroma.user email_notifications <nickname> [option ...]
+ ```
+
+### Options
+
+- `--digest`/`--no-digest` - whether the user should receive digest emails
+- `--notifications` - what types of email notifications user should receive (can be aliased with `-n`). To disable all types pass `off` value.
+
+Example:
+
+=== "OTP"
+
+ ```sh
+ ./bin/pleroma_ctl user email_notifications lain --digest -n mention
+ ```
+
+=== "From Source"
+
+ ```sh
+ mix pleroma.user email_notifications lain --digest -n mention
+ ```