I am pleased to announce the release of Mailman 2.1.30
Python 2.6 is the minimum supported, but Python 2.7, preferably 2.7.17 - the final Python 2 release, is strongly recommended.
This is a routine bug fix release with a few new features. See the attached README.txt for details.
Mailman 2.1.30 will be the last release of the Mailman 2.1 branch from the GNU Mailman project. There has been some discussion as to what this means. It means there will be no more releases from the GNU Mailman project containing any new features. There may be future patch releases to address the following:
- i18n updates.
- security issues.
- bugs affecting operation for which no satisfactory workaround exists.
Mailman is free software for managing email mailing lists and e-newsletters. Mailman is used for all the python.org and SourceForge.net mailing lists, as well as at hundreds of other sites.
For more information, please see our web site at one of:
http://www.list.org https://www.gnu.org/software/mailman http://mailman.sourceforge.net/
Mailman 2.1.30 can be downloaded from
https://launchpad.net/mailman/2.1/ https://ftp.gnu.org/gnu/mailman/ https://sourceforge.net/projects/mailman/
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
All: trying to get an update from 2.1.20 to 2.1.30 working properly. We’ve got mailman compiled and installed and lists seem to be working nominally, but the web interface is simply not working, so hoping for some help here.
Attempting access via http://lists.ibmwr.org/mailman/admin/ results in the browser returning “You don’t have permission to access this resource"
The following lines appear in /var/log/apache2/error.log
[Mon Apr 20 20:27:22.532588 2020] [authz_core:debug] [pid 12925] mod_authz_core.c(809): [client 73.195.119.82:46636] AH01626: authorization result of Require all denied: denied [Mon Apr 20 20:27:22.532633 2020] [authz_core:debug] [pid 12925] mod_authz_core.c(809): [client 73.195.119.82:46636] AH01626: authorization result of <RequireAny>: denied [Mon Apr 20 20:27:22.532646 2020] [authz_core:error] [pid 12925] [client 73.195.119.82:46636] AH01630: client denied by server configuration: /var/lib/mailman/cgi-bin/admin
Ownership and permissions for that binary *appear* OK to me (but clearly are not?)
-rwxr-sr-x 1 list list 27280 Apr 20 06:45 /var/lib/mailman/cgi-bin/admin
Thanks.
— Tom Coradeschi tjcora@icloud.com
On 4/20/20 6:30 PM, Thomas Coradeschi via Mailman-Developers wrote:
All: trying to get an update from 2.1.20 to 2.1.30 working properly. We’ve got mailman compiled and installed and lists seem to be working nominally, but the web interface is simply not working, so hoping for some help here.
Attempting access via http://lists.ibmwr.org/mailman/admin/ results in the browser returning “You don’t have permission to access this resource"
The following lines appear in /var/log/apache2/error.log
[Mon Apr 20 20:27:22.532588 2020] [authz_core:debug] [pid 12925] mod_authz_core.c(809): [client 73.195.119.82:46636] AH01626: authorization result of Require all denied: denied [Mon Apr 20 20:27:22.532633 2020] [authz_core:debug] [pid 12925] mod_authz_core.c(809): [client 73.195.119.82:46636] AH01626: authorization result of <RequireAny>: denied [Mon Apr 20 20:27:22.532646 2020] [authz_core:error] [pid 12925] [client 73.195.119.82:46636] AH01630: client denied by server configuration: /var/lib/mailman/cgi-bin/admin
Ownership and permissions for that binary *appear* OK to me (but clearly are not?)
-rwxr-sr-x 1 list list 27280 Apr 20 06:45 /var/lib/mailman/cgi-bin/admin
This appears to be a web server issue rather than a Mailman issue. Did you also upgrade Apache. Note that where older versions of Apache required things like
<Directory "/var/lib/mailman/cgi-bin/"> ... Order allow,deny Allow from all </Directory>
Current Apache requires
<Directory "/var/lib/mailman/cgi-bin/"> ... Require all granted </Directory>
See "Run-Time Configuration Changes" at <https://httpd.apache.org/docs/2.4/upgrading.html>.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
On 20 Apr 2020, at 9:48 PM, Mark Sapiro <mark@msapiro.net> wrote:
On 4/20/20 6:30 PM, Thomas Coradeschi via Mailman-Developers wrote:
All: trying to get an update from 2.1.20 to 2.1.30 working properly. We’ve got mailman compiled and installed and lists seem to be working nominally, but the web interface is simply not working, so hoping for some help here.
Attempting access via http://lists.ibmwr.org/mailman/admin/ results in the browser returning “You don’t have permission to access this resource"
The following lines appear in /var/log/apache2/error.log
[Mon Apr 20 20:27:22.532588 2020] [authz_core:debug] [pid 12925] mod_authz_core.c(809): [client 73.195.119.82:46636] AH01626: authorization result of Require all denied: denied [Mon Apr 20 20:27:22.532633 2020] [authz_core:debug] [pid 12925] mod_authz_core.c(809): [client 73.195.119.82:46636] AH01626: authorization result of <RequireAny>: denied [Mon Apr 20 20:27:22.532646 2020] [authz_core:error] [pid 12925] [client 73.195.119.82:46636] AH01630: client denied by server configuration: /var/lib/mailman/cgi-bin/admin
Ownership and permissions for that binary *appear* OK to me (but clearly are not?)
-rwxr-sr-x 1 list list 27280 Apr 20 06:45 /var/lib/mailman/cgi-bin/admin
This appears to be a web server issue rather than a Mailman issue. Did you also upgrade Apache. Note that where older versions of Apache required things like
<Directory "/var/lib/mailman/cgi-bin/"> ... Order allow,deny Allow from all </Directory>
Current Apache requires
<Directory "/var/lib/mailman/cgi-bin/"> ... Require all granted </Directory>
See "Run-Time Configuration Changes" at <https://httpd.apache.org/docs/2.4/upgrading.html>.
Thanks, Mark. I’ve been slowly coming to the came conclusion, just need to figure out the specifics of the “require all granted”. Will check out that link.
Regards,
— Tom Coradeschi tjcora@icloud.com
participants (2)
-
Mark Sapiro
-
Thomas Coradeschi