Skip to content
Snippets Groups Projects
Commit 7ba5a6a1 authored by Yasuhito FUTATSUKI's avatar Yasuhito FUTATSUKI
Browse files

Merge lp:mailman/2.1 Rev 1585

parents 53d4302a 2b8a93aa
Branches
Tags 2.1.20+j1p4
No related merge requests found
......@@ -1604,9 +1604,19 @@ bad regexp in bounce_matching_header line: %s
if re.search(pattern, email, re.IGNORECASE):
matched = pattern
break
except re.error:
except re.error, e:
# BAW: we should probably remove this pattern
pass
# The GUI won't add a bad regexp, but at least log it.
# The following kludge works because the ban_list stuff
# is the only caller with no at_list.
attr_name = at_list or 'ban_list'
syslog('error',
'%s in %s has bad regexp "%s": %s',
attr_name,
self.internal_name(),
pattern,
str(e)
)
elif at_list and pattern.startswith('@'):
# XXX Needs to be reviewed for list@domain names.
# this refers to the members of another list in this
......
......@@ -22,6 +22,9 @@ Here is a history of user visible changes to Mailman.
Bug fixes and other patches
- Invalid regexps in *_these_nonmembers, subscribe_auto_approval and
ban_list are now logged. (LP: #1507241)
- Refactored the GetPattern list method to simplify extending @listname
syntax to new attributes in the future. Changed Moderate.py to use the
GetPattern method to process the *_these_nonmembers lists.
......
......@@ -8,9 +8,9 @@
バージョン番号について、日本語バージョンで先行して修正されていた
変更が本家に採り入れられたものなどもあるため、mergeを行った本家の
バージョンを基準として+j1から再度付番を行うように変更した。
2015年10月16日現在のバージョンは 2.1.20+j1p3 (rev. 1471)となる。
(本家 2.1.20 rev 1584 に対応)
(2015/10/16 by futatuki@poem.co.jp)
2015年10月19日現在のバージョンは 2.1.20+j1p4 (rev. 1472)となる。
(本家 2.1.20 rev 1585 に対応)
(2015/10/19 by futatuki@poem.co.jp)
日本語対応バージョンの基本は README.japan.utf-8 に記したとおりである
が、ちまたに流れるバグ修正や新機能を取り入れて +jN バージョンをリリー
......@@ -26,9 +26,9 @@ mailman-3.0 のリリースに合わせる形で、3.0 新機能の導入と日
(http://bazaar.launchpad.net/~futatuki/mailman/2.1-japan-poem/changes)
を確認のこと。
* 2015-10-16 rev. 1471 Yasuhito FUTATSUKI <futatuki@poem.co.jp>
- 本家 revision 1334 - 1584(version 2.1.20)までの変更をmerge
(rev.1471;本家の変更については NEWS ファイルの2.1.15の項以降を参照のこと)
* 2015-10-19 rev. 1472 Yasuhito FUTATSUKI <futatuki@poem.co.jp>
- 本家 revision 1334 - 1585(version 2.1.20)までの変更をmerge
(rev.1472;本家の変更については NEWS ファイルの2.1.15の項以降を参照のこと)
* 2014-12-31 rev. 1419 Yasuhito FUTATSUKI <futatuki@poem.co.jp>
- LP: #1397170 (https://launchpad.net/bugs/1397170) を本家と異なる
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment