1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-01-03 17:17:29 +00:00

Add driusan/dkim integration example and tests

This patch adds DKIM signing using https://github.com/driusan/dkim tools
to the example hook.

It also adds an optional integration test to exercise signing and
verification, and corresponding documentation.
This commit is contained in:
Alberto Bertogli
2018-10-21 13:45:45 +01:00
parent ebad590c31
commit 4ecc5461d3
11 changed files with 184 additions and 7 deletions

View File

@@ -32,9 +32,15 @@ RUN cd test/t-02-exim && mkdir -p .exim4 && ln -s /usr/sbin/exim4 .exim4/
# Packages for the (optional) TLS tracking test.
RUN apt-get install -y -q dnsmasq
# Packages for the (optional) DKIM integration test.
RUN go get github.com/driusan/dkim/... \
&& go install github.com/driusan/dkim/cmd/dkimsign \
&& go install github.com/driusan/dkim/cmd/dkimverify \
&& go install github.com/driusan/dkim/cmd/dkimkeygen
RUN go get -d ./...
RUN go install ./...
# Install chasquid and its dependencies.
RUN go get -d -v ./...
RUN go install -v ./...
# Don't run the tests as root: it makes some integration tests more difficult,
# as for example Exim has hard-coded protections against running as root.