diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-03 01:09:51 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-03 01:10:36 +0300 |
commit | 869ea2ab90bb461ad3dd06ac974f227da369fcf8 (patch) | |
tree | fbf88a8075c237e48d561e740dafb814e3b90bed /docs/administration | |
parent | bd9c7807fbf21402cc0444c711c40677ca5de2a0 (diff) | |
download | pleroma-869ea2ab90bb461ad3dd06ac974f227da369fcf8.tar.gz pleroma-869ea2ab90bb461ad3dd06ac974f227da369fcf8.zip |
Move digest email docs to a separate file and improve styling
Diffstat (limited to 'docs/administration')
-rw-r--r-- | docs/administration/CLI_tasks/digest.md | 15 | ||||
-rw-r--r-- | docs/administration/CLI_tasks/emoji.md | 6 |
2 files changed, 18 insertions, 3 deletions
diff --git a/docs/administration/CLI_tasks/digest.md b/docs/administration/CLI_tasks/digest.md new file mode 100644 index 000000000..89b3ed237 --- /dev/null +++ b/docs/administration/CLI_tasks/digest.md @@ -0,0 +1,15 @@ +# Managing digest emails +Every command should be ran with a prefix, in case of OTP releases it is `./bin/pleroma_ctl digest` and in case of source installs it's `mix pleroma.digest`. + +## `test` + +```sh +$PREFIX test <nickname> <since_date> +``` + +Send digest email since given date (user registration date by default) ignoring user activity status. + +Example: +```sh +$PREFIX test donaldtheduck 2019-05-20 +``` diff --git a/docs/administration/CLI_tasks/emoji.md b/docs/administration/CLI_tasks/emoji.md index 5b8dc11ab..39216a897 100644 --- a/docs/administration/CLI_tasks/emoji.md +++ b/docs/administration/CLI_tasks/emoji.md @@ -2,7 +2,7 @@ Every command should be ran with a prefix, in case of OTP releases it is `./bin/pleroma_ctl emoji` and in case of source installs it's `mix pleroma.emoji`. -## ls-packs +## `ls-packs` ```sh $PREFIX ls-packs [OPTION...] @@ -13,7 +13,7 @@ Lists the emoji packs and metadata specified in the manifest. ### Options - `-m, --manifest PATH/URL` - path to a custom manifest, it can either be an URL starting with `http`, in that case the manifest will be fetched from that address, or a local path -## get-packs +## `get-packs` ```sh $PREFIX get-packs [OPTION...] PACKS ``` @@ -22,7 +22,7 @@ Fetches, verifies and installs the specified PACKS from the manifest into the `S ### Options - `-m, --manifest PATH/URL` - same as [`ls-packs`](#ls-packs) -## gen-pack +## `gen-pack` ```sh $PREFIX gen-pack PACK-URL ``` |