You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2017/01/15 23:00:44 UTC

incubator-ponymail git commit: default to medium ID generator

Repository: incubator-ponymail
Updated Branches:
  refs/heads/master 0ff8371f0 -> 8b28dbaf9


default to medium ID generator

This fixes #343

Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/8b28dbaf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/8b28dbaf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/8b28dbaf

Branch: refs/heads/master
Commit: 8b28dbaf96248ee4f9ba622aca23460ea9002ddc
Parents: 0ff8371
Author: Sebb <se...@apache.org>
Authored: Sun Jan 15 23:00:26 2017 +0000
Committer: Sebb <se...@apache.org>
Committed: Sun Jan 15 23:00:26 2017 +0000

----------------------------------------------------------------------
 CHANGELOG.md      | 1 +
 tools/archiver.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/8b28dbaf/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 327bb15..e86af1e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -122,6 +122,7 @@
 - ll.py - Make --count work with --pretty; show private message counts
 - DRY: move leapYear and end of month calculations to utils
 - indicate which months are outside the archive span for a list (#340)
+- default to medium ID generator (#343)
 
 ## CHANGES in 0.9b:
 

http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/8b28dbaf/tools/archiver.py
----------------------------------------------------------------------
diff --git a/tools/archiver.py b/tools/archiver.py
index b7af736..fb734e8 100755
--- a/tools/archiver.py
+++ b/tools/archiver.py
@@ -77,7 +77,7 @@ elif __name__ == '__main__':
 if config.has_option('elasticsearch', 'user'):
     auth = (config.get('elasticsearch','user'), config.get('elasticsearch','password'))
 
-archiver_generator = config.get("archiver", "generator", fallback="")
+archiver_generator = config.get("archiver", "generator", fallback="medium")
 
 def parse_attachment(part):
     cd = part.get("Content-Disposition", None)