summaryrefslogtreecommitdiff
path: root/docs/configuration
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-07-11 11:31:44 +0000
committerlain <lain@soykaf.club>2020-07-11 11:31:44 +0000
commit11dd29ef3f9bb5b0b3109eb572c3d5ae2c830ea3 (patch)
treec3f21dea8d7ea38ab12563f2da7289e001e7f55c /docs/configuration
parentc409a064ba8f06c9fb1f1af88f9bb7cb4ba4121b (diff)
parentb329f05ed63657aa19b227b9b919662dad56ecae (diff)
downloadpleroma-11dd29ef3f9bb5b0b3109eb572c3d5ae2c830ea3.tar.gz
pleroma-11dd29ef3f9bb5b0b3109eb572c3d5ae2c830ea3.zip
Merge branch 'feature/upload-filter-exiftool' into 'develop'
Add Pleroma.Upload.Filter.Exiftool Closes #1935 See merge request pleroma/pleroma!2744
Diffstat (limited to 'docs/configuration')
-rw-r--r--docs/configuration/cheatsheet.md18
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md
index 1a0603892..f796330f1 100644
--- a/docs/configuration/cheatsheet.md
+++ b/docs/configuration/cheatsheet.md
@@ -548,20 +548,26 @@ config :ex_aws, :s3,
### Upload filters
-#### Pleroma.Upload.Filter.Mogrify
+#### Pleroma.Upload.Filter.AnonymizeFilename
-* `args`: List of actions for the `mogrify` command like `"strip"` or `["strip", "auto-orient", {"implode", "1"}]`.
+This filter replaces the filename (not the path) of an upload. For complete obfuscation, add
+`Pleroma.Upload.Filter.Dedupe` before AnonymizeFilename.
+
+* `text`: Text to replace filenames in links. If empty, `{random}.extension` will be used. You can get the original filename extension by using `{extension}`, for example `custom-file-name.{extension}`.
#### Pleroma.Upload.Filter.Dedupe
No specific configuration.
-#### Pleroma.Upload.Filter.AnonymizeFilename
+#### Pleroma.Upload.Filter.Exiftool
-This filter replaces the filename (not the path) of an upload. For complete obfuscation, add
-`Pleroma.Upload.Filter.Dedupe` before AnonymizeFilename.
+This filter only strips the GPS and location metadata with Exiftool leaving color profiles and attributes intact.
-* `text`: Text to replace filenames in links. If empty, `{random}.extension` will be used. You can get the original filename extension by using `{extension}`, for example `custom-file-name.{extension}`.
+No specific configuration.
+
+#### Pleroma.Upload.Filter.Mogrify
+
+* `args`: List of actions for the `mogrify` command like `"strip"` or `["strip", "auto-orient", {"implode", "1"}]`.
## Email