diff options
author | mathieui <mathieui@mathieui.net> | 2014-10-16 18:49:32 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-10-16 18:56:12 +0200 |
commit | a9f642f7438fe4489cdb9cc5ac59c929054656c8 (patch) | |
tree | 5ce6cba2105f178f92235fa325725941a5c9924c /doc/source | |
parent | d4590949f7b691e3e1d6eff8fa339e62a44bae51 (diff) | |
download | poezio-a9f642f7438fe4489cdb9cc5ac59c929054656c8.tar.gz poezio-a9f642f7438fe4489cdb9cc5ac59c929054656c8.tar.bz2 poezio-a9f642f7438fe4489cdb9cc5ac59c929054656c8.tar.xz poezio-a9f642f7438fe4489cdb9cc5ac59c929054656c8.zip |
Extract XHTML-IM inline imags by default
- Add two new options: tmp_image_dir and extract_inline_images
- tmp_image_dir is $XDG_CACHE_HOME(usually ~/.cache)/poezio/images if unset
- Name the images from a SHA-1 of their data and their mimetype
- Output file:// links inside the message
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/configuration.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index 32d82f7a..44fd8e11 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -851,6 +851,25 @@ Other The lang some automated entities will use when replying to you. + extract_inline_images + + **Default value:** ``true`` + + Some clients send inline images in base64 inside some messages, which results in + an useless wall of text. If this option is ``true``, then that base64 text will + be replaced with a :file:`file://` link to the image file extracted in + :term:`tmp_image_dir` or :file:`$XDG_CACHE_HOME/poezio/images` by default, which + is usually :file:`~/.cache/poezio/images` + + tmp_image_dir + + **Default value:** ``[empty]`` + + The directory where poezio will save the images received, if + :term:`extract_inline_images` is set to true. If unset, poezio + will default to :file:`$XDG_CACHE_HOME/poezio/images` which is + usually :file:`~/.cache/poezio/images`. + muc_history_length **Default value:** ``50`` |