pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail/rspamd



Module Name:    pkgsrc
Committed By:   taca
Date:           Tue Oct 29 14:23:17 UTC 2024

Modified Files:
        pkgsrc/mail/rspamd: Makefile distinfo
Added Files:
        pkgsrc/mail/rspamd/patches: patch-lualib_rspamadm_dmarc__report.lua

Log Message:
mail/rspamd: prevent DKIM verification problem with sendmail.

Prevent DKIM verification problem with sendmail.
This fix provided from Yoshitaka Tokugawa.

Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.114 -r1.115 pkgsrc/mail/rspamd/Makefile
cvs rdiff -u -r1.62 -r1.63 pkgsrc/mail/rspamd/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/mail/rspamd/patches/patch-lualib_rspamadm_dmarc__report.lua

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/rspamd/Makefile
diff -u pkgsrc/mail/rspamd/Makefile:1.114 pkgsrc/mail/rspamd/Makefile:1.115
--- pkgsrc/mail/rspamd/Makefile:1.114   Mon Oct 21 15:13:52 2024
+++ pkgsrc/mail/rspamd/Makefile Tue Oct 29 14:23:17 2024
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.114 2024/10/21 15:13:52 taca Exp $
+# $NetBSD: Makefile,v 1.115 2024/10/29 14:23:17 taca Exp $
 #
 # When updating this, run 'make cfgfiles'.
 
 DISTNAME=      rspamd-3.10.2
+PKGREVISION=   1
 CATEGORIES=    mail
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=rspamd/}
 

Index: pkgsrc/mail/rspamd/distinfo
diff -u pkgsrc/mail/rspamd/distinfo:1.62 pkgsrc/mail/rspamd/distinfo:1.63
--- pkgsrc/mail/rspamd/distinfo:1.62    Mon Oct 21 15:13:52 2024
+++ pkgsrc/mail/rspamd/distinfo Tue Oct 29 14:23:17 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.62 2024/10/21 15:13:52 taca Exp $
+$NetBSD: distinfo,v 1.63 2024/10/29 14:23:17 taca Exp $
 
 BLAKE2s (rspamd-3.10.2.tar.gz) = 5344e767dfe337a991f59c2d08002d7f1008a863fbb2caf0531247c1c24e8a83
 SHA512 (rspamd-3.10.2.tar.gz) = 5c71b333705dfe71a47e4cbf880b1ca417c46e254343ede9652fdcb5a9151974fafe88b1475073d43f947a1fe075ac81a70f1ac50693653ba139b65e384edb83
@@ -6,6 +6,7 @@ Size (rspamd-3.10.2.tar.gz) = 6048061 by
 SHA1 (patch-CMakeLists.txt) = 1c91cf53edeb12e1a469cd02421e1eaee5061ab7
 SHA1 (patch-cmake_Toolset.cmake) = fbc4027fedb4261ce913701ebbb32d8395bc7783
 SHA1 (patch-contrib_fpconv_fpconv.c) = b1ec2b07570674458e69020ccbf25f0374d894f6
+SHA1 (patch-lualib_rspamadm_dmarc__report.lua) = 93ccb04512dd84ea83de44c394571ef2bebe6bd2
 SHA1 (patch-src_libserver_symcache_symcache__impl.cxx) = 8a5c69ab343409427619a9cbc0dc080d548b9c53
 SHA1 (patch-src_libstat_backends_redis__backend.cxx) = 4c60287a574066a841c76081cd88512a57f0b27f
 SHA1 (patch-src_plugins_lua_dmarc.lua) = 61b36989b16ad8fea25bafcfd96cd83f57a44bd3

Added files:

Index: pkgsrc/mail/rspamd/patches/patch-lualib_rspamadm_dmarc__report.lua
diff -u /dev/null pkgsrc/mail/rspamd/patches/patch-lualib_rspamadm_dmarc__report.lua:1.1
--- /dev/null   Tue Oct 29 14:23:17 2024
+++ pkgsrc/mail/rspamd/patches/patch-lualib_rspamadm_dmarc__report.lua  Tue Oct 29 14:23:17 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-lualib_rspamadm_dmarc__report.lua,v 1.1 2024/10/29 14:23:17 taca Exp $
+
+Prevent DKIM verification problem with sendmail.
+
+--- lualib/rspamadm/dmarc_report.lua.orig      2024-10-20 09:06:49.000000000 +0000
++++ lualib/rspamadm/dmarc_report.lua
+@@ -391,7 +391,7 @@ local function rcpt_list(tbl, func)
+     end
+   end
+ 
+-  return table.concat(res, ',')
++  return table.concat(res, ', ')
+ end
+ 
+ -- Synchronous smtp send function



Home | Main Index | Thread Index | Old Index