Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Feb 2025 14:16:21 GMT
From:      Mikael Urankar <mikael@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 0d1ec01fc7ef - main - mail/sympa: Update to 6.2.76
Message-ID:  <202502041416.514EGL8u047890@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mikael:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0d1ec01fc7ef6911553dee1075656b2f3d86b957

commit 0d1ec01fc7ef6911553dee1075656b2f3d86b957
Author:     Geoffroy Desvernay <dgeo@centrale-med.fr>
AuthorDate: 2025-02-04 14:09:54 +0000
Commit:     Mikael Urankar <mikael@FreeBSD.org>
CommitDate: 2025-02-04 14:13:52 +0000

    mail/sympa: Update to 6.2.76
    
    Upstream Changes:
    Full list here: https://github.com/sympa-community/sympa/blob/6.2.76/NEWS.md
    
    Many bugs fixed, including
      * Bulk moderation of messages is broken
      * Broken "distribute" confirmation
      * LISTNAME-request@DOMAIN aliases are not supported
      * Bug in custom_subject rendering
      * [CVE-2024-55919] Improper input validation on generic SSO login
      * DKIM signing and ARC sealing order is reversed
      * WWSynmpa: do_distribute: Confirmation was not always performed
      * WWSympa: Fixes for Sympa Accessibility Issues
      * Display name in From: header field should be quoted / unquoted appropriately
      * Meaningful error message should be shown for unauthenticated user if privileges are required
      * DKIM: i= tag may not match in some auto-generated messages
      * The length of boundary lines in multipart messages could exceed 70 octets
      * Setting invite sender as From: field should be avoided
      * WWSympa: Uploaded file names in UTF-8 were garbled
      * [moderation] Show message content when clicking on its object
      * PostgreSQL/SQLite: Sympa tries creating temporary views in databases unnecessarily
      * From: header sanitation fails with brackets and Umlauts: Bug in MIME-EncWords
      * Stop "do_distribute" actions from Web interface from generating backscatter emails to sympa-request alias
      * Fix cross-robot list inclusion
      * DKIM signatures in outgoing messages are no longer removed
    Enhancements
      * WWSympa: Invitations via the Sympa website
      * WWSympa: Detect web crawlers
      * Support for LDAP paged queries and dereferenced responses
      * Overall statistics panel
      * Add .eml extension to archives files
      * Improve diagnostic messages in the DSNs generated by Sympa
      * Allow "custom_subject" to be at the beginning of the subject
    
    While here fix various port bugs [1]
    
    PR:             283921, 275715 [1]
---
 mail/sympa/Makefile               | 4 ++--
 mail/sympa/distinfo               | 6 +++---
 mail/sympa/files/apache.sample.in | 4 ++--
 mail/sympa/files/fcgi.sample.in   | 2 +-
 mail/sympa/files/pkg-message.in   | 2 +-
 mail/sympa/pkg-plist              | 7 ++++---
 6 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/mail/sympa/Makefile b/mail/sympa/Makefile
index 02f2c7ff9196..b9bbd1a703c5 100644
--- a/mail/sympa/Makefile
+++ b/mail/sympa/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	sympa
-DISTVERSION=	6.2.72
-PORTREVISION=	2
+DISTVERSION=	6.2.76
 CATEGORIES=	mail
 
 MAINTAINER=	dgeo@centrale-med.fr
@@ -50,6 +49,7 @@ RUN_DEPENDS=	mhonarc>=0:www/mhonarc \
 		p5-Term-ProgressBar>=2.09:devel/p5-Term-ProgressBar \
 		p5-Time-HiRes>=1.29:devel/p5-Time-HiRes \
 		p5-Unicode-LineBreak>=2019.001:textproc/p5-Unicode-LineBreak \
+		p5-Unicode-UTF8>=0.62:converters/p5-Unicode-UTF8 \
 		p5-URI>=1.35:net/p5-URI \
 		p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML
 
diff --git a/mail/sympa/distinfo b/mail/sympa/distinfo
index cef60fc359c6..891394053f74 100644
--- a/mail/sympa/distinfo
+++ b/mail/sympa/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1685632236
-SHA256 (sympa-community-sympa-6.2.72_GH0.tar.gz) = e57a48412775caebe7ca0a61e67a71172044247a99666f2b15ace35e0241bbaf
-SIZE (sympa-community-sympa-6.2.72_GH0.tar.gz) = 10465474
+TIMESTAMP = 1738668264
+SHA256 (sympa-community-sympa-6.2.76_GH0.tar.gz) = fa0cefbfd44423e1012aa9744f4cf30c2c42a19ec6debd0c7a46990968829e04
+SIZE (sympa-community-sympa-6.2.76_GH0.tar.gz) = 10537497
diff --git a/mail/sympa/files/apache.sample.in b/mail/sympa/files/apache.sample.in
index 1443efead6dd..7b5bc492e41e 100644
--- a/mail/sympa/files/apache.sample.in
+++ b/mail/sympa/files/apache.sample.in
@@ -3,7 +3,7 @@ AddDefaultCharset UTF-8
 DirectoryIndex wws
 Options +Indexes
 # you may replace 'fcgid' by 'fastcgi'
-LoadModule fcgid_module libexec/apache2/mod_fcgid.so
+LoadModule fcgid_module libexec/apache24/mod_fcgid.so
 
 <Location /wws>
     SetHandler fcgid-script
@@ -14,5 +14,5 @@ LoadModule fcgid_module libexec/apache2/mod_fcgid.so
 <Directory %%PREFIX%%/libexec/sympa>
     Require all granted
 </Directory>
-Alias /sympa-static %%DATADIR%%/static
+Alias /static-sympa %%DATADIR%%/static
 ScriptAlias /wws %%PREFIX%%/libexec/sympa/wwsympa-wrapper
diff --git a/mail/sympa/files/fcgi.sample.in b/mail/sympa/files/fcgi.sample.in
index 85a63d9230e9..b466fe63db58 100644
--- a/mail/sympa/files/fcgi.sample.in
+++ b/mail/sympa/files/fcgi.sample.in
@@ -4,4 +4,4 @@ spawn_fcgi_app="%%PREFIX%%/libexec/sympa/wwsympa.fcgi"
 spawn_fcgi_bindsocket="/var/run/sympa/wwsympa.socket"
 spawn_fcgi_bindsocket_mode="0777"
 spawn_fcgi_username="%%USERS%%"
-spawn_fcgi_groupname"%%GROUPS%%"
+spawn_fcgi_groupname="%%GROUPS%%"
diff --git a/mail/sympa/files/pkg-message.in b/mail/sympa/files/pkg-message.in
index f50ea4e0d5f8..9ec698479702 100644
--- a/mail/sympa/files/pkg-message.in
+++ b/mail/sympa/files/pkg-message.in
@@ -6,7 +6,7 @@ If you upgrade:
  * run # sympa.pl --upgrade
 
 First install:
- * run # sympa_wizard.pl
+ * edit /usr/local/etc/sympa/sympa.conf to suit your needs
  * populate database with # sympa.pl --health_check
    For more databases options,
    see https://sympa-community.github.io/manual/install/setup-database.html
diff --git a/mail/sympa/pkg-plist b/mail/sympa/pkg-plist
index 3adce561bac8..694f51c1bdd5 100644
--- a/mail/sympa/pkg-plist
+++ b/mail/sympa/pkg-plist
@@ -218,11 +218,12 @@ libexec/sympa/Sympa/Tracking.pm
 libexec/sympa/Sympa/Upgrade.pm
 libexec/sympa/Sympa/User.pm
 libexec/sympa/Sympa/WWW/Auth.pm
+libexec/sympa/Sympa/WWW/Crawlers.pm
 libexec/sympa/Sympa/WWW/FastCGI.pm
 libexec/sympa/Sympa/WWW/Marc.pm
 libexec/sympa/Sympa/WWW/Marc/Search.pm
 libexec/sympa/Sympa/WWW/SOAP.pm
-libexec/sympa/Sympa/WWW/SOAP/Transport.pm
+libexec/sympa/Sympa/WWW/SOAP/FastCGI.pm
 libexec/sympa/Sympa/WWW/Session.pm
 libexec/sympa/Sympa/WWW/SharedDocument.pm
 libexec/sympa/Sympa/WWW/Tools.pm
@@ -451,6 +452,7 @@ share/man/man3/Sympa::Tools::Text.3Sympa.gz
 share/man/man3/Sympa::Tools::Time.3Sympa.gz
 share/man/man3/Sympa::Tracking.3Sympa.gz
 share/man/man3/Sympa::User.3Sympa.gz
+share/man/man3/Sympa::WWW::Crawlers.3Sympa.gz
 share/man/man3/Sympa::WWW::FastCGI.3Sympa.gz
 share/man/man3/Sympa::WWW::Marc::Search.3Sympa.gz
 share/man/man3/Sympa::WWW::Session.3Sympa.gz
@@ -458,7 +460,6 @@ share/man/man3/Sympa::WWW::SharedDocument.3Sympa.gz
 share/man/man5/auth.conf.5.gz
 share/man/man5/automatic_lists_description.conf.5.gz
 share/man/man5/charset.conf.5.gz
-share/man/man5/crawlers_detection.conf.5.gz
 share/man/man5/edit_list.conf.5.gz
 share/man/man5/ldap_alias_manager.conf.5.gz
 share/man/man5/list_config.5.gz
@@ -565,7 +566,6 @@ share/locale/zh_TW/LC_MESSAGES/sympa.mo
 share/locale/zh_TW/LC_MESSAGES/web_help.mo
 %%DATADIR%%/defaults/auth.conf
 %%DATADIR%%/defaults/charset.conf
-%%DATADIR%%/defaults/crawlers_detection.conf
 %%DATADIR%%/defaults/create_list.conf
 %%DATADIR%%/defaults/create_list_templates/confidential/comment.tt2
 %%DATADIR%%/defaults/create_list_templates/confidential/config.tt2
@@ -974,6 +974,7 @@ share/locale/zh_TW/LC_MESSAGES/web_help.mo
 %%DATADIR%%/static/js/jquery-minicolors/jquery.minicolors.js
 %%DATADIR%%/static/js/jquery-minicolors/jquery.minicolors.min.js
 %%DATADIR%%/static/js/jquery-minicolors/jquery.minicolors.png
+%%DATADIR%%/static/js/jquery-ui/LICENSE.txt
 %%DATADIR%%/static/js/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png
 %%DATADIR%%/static/js/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png
 %%DATADIR%%/static/js/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202502041416.514EGL8u047890>