diff --git a/data/Dockerfiles/rspamd/Dockerfile b/data/Dockerfiles/rspamd/Dockerfile index 7ebd1a54..4500c73e 100644 --- a/data/Dockerfiles/rspamd/Dockerfile +++ b/data/Dockerfiles/rspamd/Dockerfile @@ -14,8 +14,6 @@ RUN apt-key adv --fetch-keys http://rspamd.com/apt/gpg.key \ RUN echo '.include $LOCAL_CONFDIR/local.d/rspamd.conf.local' > /etc/rspamd/rspamd.conf.local COPY settings.conf /etc/rspamd/modules.d/settings.conf -COPY antivirus.conf /etc/rspamd/modules.d/antivirus.conf -COPY milter_headers.lua /usr/share/rspamd/lua/milter_headers.lua RUN apt-get autoremove --purge \ && apt-get clean diff --git a/data/Dockerfiles/rspamd/antivirus.conf b/data/Dockerfiles/rspamd/antivirus.conf deleted file mode 100644 index cb8049d4..00000000 --- a/data/Dockerfiles/rspamd/antivirus.conf +++ /dev/null @@ -1,4 +0,0 @@ -antivirus { - .include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/antivirus.conf" - .include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/antivirus.conf" -}