diff --git a/service/rss2email/Containerfile b/service/rss2email/Containerfile index 892652d..989b050 100644 --- a/service/rss2email/Containerfile +++ b/service/rss2email/Containerfile @@ -1,5 +1,5 @@ FROM docker.io/debian:bullseye-slim -ARG VERSION=4fa34da9fbfcaa5e5496b13c4bdd17362c383568 +ARG VERSION=v3.14 RUN apt-get update -y && apt-get install -y --no-install-recommends \ ca-certificates git gettext gosu \ diff --git a/service/rss2email/container/config/rss2email.conf.template b/service/rss2email/container/config/rss2email.conf.template index 3751640..5b58a9f 100644 --- a/service/rss2email/container/config/rss2email.conf.template +++ b/service/rss2email/container/config/rss2email.conf.template @@ -5,6 +5,8 @@ user-agent = rss2email/1.0 use-publisher-email = True date-header = True html-mail = True +multipart-html = True +use-css = True post-process = rss2email.post_process.prettify process email-protocol = smtp smtp-auth = True diff --git a/service/rss2email/systemd/rss2email-subscribe@.service b/service/rss2email/systemd/rss2email-subscribe@.service index 1c0e74c..13e0fe1 100644 --- a/service/rss2email/systemd/rss2email-subscribe@.service +++ b/service/rss2email/systemd/rss2email-subscribe@.service @@ -7,7 +7,7 @@ RemainAfterExit=true SyslogIdentifier=%N ExecStart=/bin/sh -c "V=$(podman volume mount rss2email-feeds) && printf '[feed.%%s]\nurl = %I\n' $(md5sum <<< '%i' | cut -c-32) > $V/%i.conf" ExecStartPost=/bin/podman volume unmount rss2email-feeds -ExecStop=/bin/sh -c "V=$(podman volume mount rss2email-feeds) && rf -f $V/%i.conf" +ExecStop=/bin/sh -c "V=$(podman volume mount rss2email-feeds) && rm -f $V/%i.conf" ExecStopPost=/bin/podman volume unmount rss2email-feeds [Install]