diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2024-07-17 15:11:14 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2024-07-17 15:11:14 +0100 |
commit | d7b658e6b7caa05127e372f2bdf4ba7e980329e9 (patch) | |
tree | 4afe07c31d1b72b95820aa8eb296d1e5845d898b | |
parent | af9fc7de49f67036bdf35006cebf4b14d5151481 (diff) |
opendmarc: bump version to 1.4.2
-rw-r--r-- | yellowsquid/packages/mail.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/yellowsquid/packages/mail.scm b/yellowsquid/packages/mail.scm index e847bb2..3c40e66 100644 --- a/yellowsquid/packages/mail.scm +++ b/yellowsquid/packages/mail.scm @@ -45,18 +45,18 @@ viruses/worms.") (home-page "https://www.libspf2.org/index.html") (license (list license:lgpl2.1+ license:bsd-2))))) -(define-public opendmarc-1.3 +(define-public opendmarc-1.4 (package (name "opendmarc") - (version "1.3.3") + (version "1.4.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/trusteddomainproject/OpenDMARC") - (commit "rel-opendmarc-1-3-3"))) + (commit "rel-opendmarc-1-4-2"))) (file-name (git-file-name name version)) - (sha256 (base32 "15vb8ay6r7rqxcbv9063724wq864aw6zhx8lc8nl2m6zabjgq0a9")))) + (sha256 (base32 "0xqzgjqw8hv8wkkw5lamzd3dzb6g01y3gazyxjfjgk71y57asxdy")))) (native-inputs (list autoconf automake libtool)) (build-system gnu-build-system) (arguments @@ -79,8 +79,8 @@ produce DMARC reports.") (package (inherit gnu:exim) (inputs (modify-inputs (package-inputs gnu:exim) - (delete "gnutls" "gnutls-dane") - (append openssl libspf2 opendmarc-1.3))) + (delete "gnutls" "gnutls-dane") + (append openssl libspf2 opendmarc-1.4))) (arguments (substitute-keyword-arguments (package-arguments gnu:exim) ((#:phases phases) @@ -97,7 +97,7 @@ produce DMARC reports.") (("USE_GNUTLS(|_PC)=.*" all) (string-append "# " all "\n")) (("# (USE_OPENSSL(|_PC)=.*)" all line) - (string-append line "\n")) + (string-append line "\n")) ;; Enable LMTP (("# (TRANSPORT_LMTP=yes)" all line) line) ;; Enable SPF |