diff options
author | Mark Sapiro <msapiro@value.net> | 2011-04-25 16:52:35 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2011-04-25 16:52:35 -0700 |
commit | aa8dd12bd7f3c442cdcc702b6bb1d8cabbca7d40 (patch) | |
tree | e94b411dc9cfcefc5346df1fdff8264f195c43f7 /Mailman/Version.py | |
parent | 7ef6c582816cb349f240054064d495753a916408 (diff) | |
download | mailman2-aa8dd12bd7f3c442cdcc702b6bb1d8cabbca7d40.tar.gz mailman2-aa8dd12bd7f3c442cdcc702b6bb1d8cabbca7d40.tar.xz mailman2-aa8dd12bd7f3c442cdcc702b6bb1d8cabbca7d40.zip |
A new list poster password has been implemented. This password may only
be used in Approved: or X-Approved: headers for pre-approving posts.
Using this password for that purpose precludes compromise of a more
valuable password sent in plain text email. Bug #770581.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Version.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Version.py b/Mailman/Version.py index 74c7a6f5..54d11484 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2011 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -37,7 +37,7 @@ HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) # config.pck schema version number -DATA_FILE_VERSION = 98 +DATA_FILE_VERSION = 99 # qfile/*.db schema version number QFILE_SCHEMA_VERSION = 3 |