diff --git a/Makefile b/Makefile index 3e7d89b..b98ffca 100644 --- a/Makefile +++ b/Makefile @@ -105,6 +105,7 @@ install: $(DOCS) aerc install -m755 filters/colorize $(DESTDIR)$(SHAREDIR)/filters/colorize install -m755 filters/hldiff $(DESTDIR)$(SHAREDIR)/filters/hldiff install -m755 filters/html $(DESTDIR)$(SHAREDIR)/filters/html + install -m755 filters/html-unsafe $(DESTDIR)$(SHAREDIR)/filters/html-unsafe install -m755 filters/plaintext $(DESTDIR)$(SHAREDIR)/filters/plaintext install -m755 filters/show-ics-details.py $(DESTDIR)$(SHAREDIR)/filters/show-ics-details.py install -m644 templates/new_message $(DESTDIR)$(SHAREDIR)/templates/new_message diff --git a/filters/html-unsafe b/filters/html-unsafe new file mode 100755 index 0000000..6dce27e --- /dev/null +++ b/filters/html-unsafe @@ -0,0 +1,16 @@ +#!/bin/sh +# aerc filter which runs w3m using socksify (from the dante package) to prevent +# any phoning home by rendered emails. If socksify is not installed then w3m is +# used without it. +if [ $(command -v socksify) ]; then + export SOCKS_SERVER="127.0.0.1:1" + PRE_CMD=socksify +else + PRE_CMD="" +fi +exec $PRE_CMD w3m \ + -T text/html \ + -cols $(tput cols) \ + -dump \ + -o display_image=false \ + -o display_link_number=true