Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-11-20 10:42:07 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-11-20 10:42:07 +0300
commitcf73589fc29eff2f490e41a035b628836b376460 (patch)
treed5c574089c66a5e9d5424c95eb3a38d8e0b2155b /doc
parente21c2e49fcfdd3cbec91acc53b598f38e90ba20e (diff)
Recommend gzip compression for exported threads data
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'doc')
-rw-r--r--doc/admin.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/admin.md b/doc/admin.md
index 2ebfd136b..95898c1e3 100644
--- a/doc/admin.md
+++ b/doc/admin.md
@@ -116,7 +116,7 @@ If you encounter an issue with threading, e.g. messages that are supposed to gro
php -f occ mail:account:export-threads 1393
```
-12345 represents the [account ID](#get-account-ids).
+1393 represents the [account ID](#get-account-ids).
The output will look similar to this:
@@ -165,7 +165,7 @@ The output will look similar to this:
It's recommended practice to pipe the export into a file, which you can later share with the Mail app community and developers:
```bash
-php -f occ mail:account:export-threads 12345 > /tmp/nextcloud-mail-threads-12345.json
+php -f occ mail:account:export-threads 1393 | gzip -c > /tmp/nextcloud-mail-threads-1393.json.gz
```
### Gmail