diff options
author | Robin Jarry <robin@jarry.cc> | 2022-10-13 00:03:42 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-10-16 11:35:24 +0200 |
commit | ebfd2a9da3d63390a9d4a0c227b2513a0dac19a4 (patch) | |
tree | edae511a998f7d3a0427649342294ecaf09f5454 /doc | |
parent | 9bd2e0c84fef66007bcab027883c01414b99b77c (diff) | |
download | aerc-ebfd2a9da3d63390a9d4a0c227b2513a0dac19a4.tar.gz |
filters: export mime type and filename in env
Export AERC_MIME_TYPE and AERC_FILENAME in the filters command
environment. This allows dynamic coloring with tools that require
a filename and/or a mime type to determine the syntax.
Update docs and add example use in the default config file.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc-config.5.scd | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd index 9be0cb27..2c5f809d 100644 --- a/doc/aerc-config.5.scd +++ b/doc/aerc-config.5.scd @@ -520,6 +520,13 @@ $PREFIX/share/aerc/filters /usr/share/aerc/filters ``` +The following variables are defined in the filter command environment: + +_AERC_MIME_TYPE_ + the part MIME type/subtype +_AERC_FILENAME_ + the attachment filename (if any) + Note that said email body is converted into UTF-8 before being passed to filters. |