diff options
| author | Barry Warsaw | 2012-03-13 21:03:01 -0700 |
|---|---|---|
| committer | Barry Warsaw | 2012-03-13 21:03:01 -0700 |
| commit | 80ac803cb2816dde0503671fd117ed134680de53 (patch) | |
| tree | ed2d40855f6b45dedf421a7a98bd83d95b6e3b40 /src/mailman/version.py | |
| parent | 07685642934fe934098927a9a9d20c17080f3dab (diff) | |
| download | mailman-80ac803cb2816dde0503671fd117ed134680de53.tar.gz mailman-80ac803cb2816dde0503671fd117ed134680de53.tar.zst mailman-80ac803cb2816dde0503671fd117ed134680de53.zip | |
* The LMTP server now requires that the incoming message have a `Message-ID`,
otherwise it rejects the message with a 550 error. Also, the LMTP server
adds the `X-Message-ID-Hash` header automatically. The `inject` cli
command will also add the `X-Message-ID-Hash` header, but it will craft a
`Message-ID` header first if one is missing from the injected text. Also,
`inject` will always set the correct value for the `original_size`
attribute on the message object, instead of trusting a possibly incorrect
value if it's already set. The individual `IArchiver` implementations no
longer set the `X-Message-ID-Hash` header.
Diffstat (limited to '')
| -rw-r--r-- | src/mailman/version.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mailman/version.py b/src/mailman/version.py index 00c5b6c7a..8f13f8f51 100644 --- a/src/mailman/version.py +++ b/src/mailman/version.py @@ -17,15 +17,15 @@ """Mailman version strings.""" -# Mailman version +# Mailman version. VERSION = '3.0.0a8+' CODENAME = "The Twilight Zone" -# And as a hex number in the manner of PY_VERSION_HEX +# And as a hex number in the manner of PY_VERSION_HEX. ALPHA = 0xa BETA = 0xb GAMMA = 0xc -# release candidates +# Release candidates. RC = GAMMA FINAL = 0xf @@ -33,16 +33,16 @@ MAJOR_REV = 3 MINOR_REV = 0 MICRO_REV = 0 REL_LEVEL = BETA -# at most 15 beta releases! +# At most 15 beta releases! REL_SERIAL = 1 HEX_VERSION = ((MAJOR_REV << 24) | (MINOR_REV << 16) | (MICRO_REV << 8) | (REL_LEVEL << 4) | (REL_SERIAL << 0)) -# qfile/*.db schema version number +# queue/*.pck schema version number. QFILE_SCHEMA_VERSION = 3 -# Printable version string used by command line scripts +# Printable version string used by command line scripts. MAILMAN_VERSION = 'GNU Mailman ' + VERSION MAILMAN_VERSION_FULL = MAILMAN_VERSION + ' (' + CODENAME + ')' |
