
Hello community, here is the log from the commit of package mailman for openSUSE:Factory checked in at 2016-03-31 13:03:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mailman (Old) and /work/SRC/openSUSE:Factory/.mailman.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "mailman" Changes: -------- --- /work/SRC/openSUSE:Factory/mailman/mailman.changes 2015-04-02 16:04:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.mailman.new/mailman.changes 2016-03-31 13:03:34.000000000 +0200 @@ -1,0 +2,24 @@ +Tue Mar 29 13:50:00 UTC 2016 - hsk@imb-jena.de + +- updated mailman-apache2.conf to support "require" syntax of recent + apache httpd + +------------------------------------------------------------------- +Mon Feb 29 12:50:00 UTC 2016 - hsk@imb-jena.de + +- update to 2.1.21 + * new dmarc_none_moderation_action list setting + * new feature to automatically turn on moderation for single list + members (spam prevention) + * new mm_cfg.py setting GLOBAL_BAN_LIST + * translation updates and bug fixes + * for more details see NEWS and Mailman/Defaults.py +- mailman-2.1.4-dirmode.patch: adjusted to 2.1.21 + +------------------------------------------------------------------- +Wed Feb 3 09:15:45 UTC 2016 - mpluskal@suse.com + +- Use url for source +- Add gpg signature + +------------------------------------------------------------------- Old: ---- mailman-2.1.20.tgz New: ---- mailman-2.1.21.tgz mailman-2.1.21.tgz.sig mailman.keyring ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mailman.spec ++++++ --- /var/tmp/diff_new_pack.1dNUUy/_old 2016-03-31 13:03:35.000000000 +0200 +++ /var/tmp/diff_new_pack.1dNUUy/_new 2016-03-31 13:03:35.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package mailman # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -37,9 +37,11 @@ Summary: The GNU Mailing List Manager License: GPL-2.0+ Group: Productivity/Networking/Email/Mailinglists -Version: 2.1.20 +Version: 2.1.21 Release: 0 -Source: %{name}-%{version}.tgz +Source0: https://ftp.gnu.org/gnu/mailman/%{name}-%{version}.tgz +Source13: https://ftp.gnu.org/gnu/mailman/%{name}-%{version}.tgz.sig +Source14: %{name}.keyring Source1: README.SUSE Source2: mailman-2.1-manpages.tgz %if %DISTRIBUTABLE ++++++ mailman-2.1.20.tgz -> mailman-2.1.21.tgz ++++++ /work/SRC/openSUSE:Factory/mailman/mailman-2.1.20.tgz /work/SRC/openSUSE:Factory/.mailman.new/mailman-2.1.21.tgz differ: char 5, line 1 ++++++ mailman-2.1.4-dirmode.patch ++++++ --- /var/tmp/diff_new_pack.1dNUUy/_old 2016-03-31 13:03:35.000000000 +0200 +++ /var/tmp/diff_new_pack.1dNUUy/_new 2016-03-31 13:03:35.000000000 +0200 @@ -30,7 +30,7 @@ ARTICLEFILEPERMS = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP @@ -174,8 +175,7 @@ prefix = mm_cfg.PREFIX - print _('checking mode for %(prefix)s') + print C_('checking mode for %(prefix)s') dirs = {} - for d in (mm_cfg.PREFIX, mm_cfg.EXEC_PREFIX, mm_cfg.VAR_PREFIX, - mm_cfg.LOG_DIR): @@ -40,31 +40,31 @@ try: @@ -184,14 +184,24 @@ if e.errno <> errno.ENOENT: raise - print _('WARNING: directory does not exist: %(d)s') + print C_('WARNING: directory does not exist: %(d)s') continue - if (mode & DIRPERMS) <> DIRPERMS: - STATE.ERRORS += 1 -- print _('directory must be at least 02775: %(d)s'), +- print C_('directory must be at least 02775: %(d)s'), - if STATE.FIX: -- print _('(fixing)') +- print C_('(fixing)') - os.chmod(d, mode | DIRPERMS) - else: - print + if (d == mm_cfg.VAR_PREFIX): + if (mode & DIRPERMS_VAR) <> DIRPERMS_VAR: + STATE.ERRORS += 1 -+ print _('directory must be 02755: %(d)s'), ++ print C_('directory must be 02755: %(d)s'), + if STATE.FIX: -+ print _('(fixing)') ++ print C_('(fixing)') + os.chmod(d, mode | DIRPERMS_VAR) + else: + print + else: + if (mode & DIRPERMS) <> DIRPERMS: + STATE.ERRORS += 1 -+ print _('directory must be at least 02775: %(d)s'), ++ print C_('directory must be at least 02775: %(d)s'), + if STATE.FIX: -+ print _('(fixing)') ++ print C_('(fixing)') + os.chmod(d, mode | DIRPERMS) + else: + print ++++++ mailman-apache2.conf ++++++ --- /var/tmp/diff_new_pack.1dNUUy/_old 2016-03-31 13:03:35.000000000 +0200 +++ /var/tmp/diff_new_pack.1dNUUy/_new 2016-03-31 13:03:35.000000000 +0200 @@ -11,19 +11,35 @@ Alias /pipermail/ /var/lib/mailman/archives/public/ <Directory /usr/lib/mailman/cgi-bin> - order allow,deny - allow from all + <IfModule !mod_access_compat.c> + require all granted + </IfModule> + <IfModule mod_access_compat.c> + order allow,deny + allow from all + </IfModule> </Directory> <Directory /usr/lib/mailman/icons> - order allow,deny - allow from all + <IfModule !mod_access_compat.c> + require all granted + </IfModule> + <IfModule mod_access_compat.c> + order allow,deny + allow from all + </IfModule> </Directory> + <Directory /var/lib/mailman/archives/> Options +FollowSymLinks - order allow,deny - allow from all + <IfModule !mod_access_compat.c> + require all granted + </IfModule> + <IfModule mod_access_compat.c> + order allow,deny + allow from all + </IfModule> </Directory> </IfDefine>
participants (1)
-
root@hilbert.suse.de