You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2017/06/04 15:03:13 UTC

[1/5] incubator-ponymail git commit: add a sample config for people who had the setup.py script fail originally (like I did)

Repository: incubator-ponymail
Updated Branches:
  refs/heads/master 3e1e87d1e -> f0edfa11d


add a sample config for people who had the setup.py script fail originally (like I did)

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

Branch: refs/heads/master
Commit: 68db687f6fff0ea112688ebba7bb4cf85404fd19
Parents: d563dfa
Author: Billy Watson <wi...@gmail.com>
Authored: Mon May 15 12:39:11 2017 -0400
Committer: Billy Watson <wi...@gmail.com>
Committed: Mon May 15 12:39:11 2017 -0400

----------------------------------------------------------------------
 site/api/lib/config.lua.sample | 42 +++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/68db687f/site/api/lib/config.lua.sample
----------------------------------------------------------------------
diff --git a/site/api/lib/config.lua.sample b/site/api/lib/config.lua.sample
new file mode 100644
index 0000000..7a84a68
--- /dev/null
+++ b/site/api/lib/config.lua.sample
@@ -0,0 +1,42 @@
+--[[
+A config.lua is needed to run this project. This sample config file was
+originally generated by tools/setup.py.
+
+Run the tools/setup.py script and a config.lua which looks a lot like this one will
+be generated. If, for whatever reason, that script is not working for you, you
+may use this config.lua as a starting point.
+
+Contributors should strive to keep this sample updated. One way to do this would
+be to run the tools/setup.py, rename the generated config to config.lua.sample,
+and then pasting this message or a modified form of this message at the top.
+]]
+
+local config = {
+    es_url = "http://localhost:9200/ponymail2/",
+    mailserver = "mail.foo.org",
+--  mailport = 1025, -- override the default port (25)
+    accepted_domains = "*",
+    wordcloud = false,
+    email_footer = nil, -- see the docs for how to set this up.
+    full_headers = false,
+    maxResults = 5000, -- max emails to return in one go. Might need to be bumped for large lists
+--  stats_maxBody = 200, -- max size of body snippet returned by stats.lua
+--  stats_wordExclude = ".|..|...", -- patterns to exclude from word cloud generated by stats.lua
+    admin_oauth = {}, -- list of domains that may do administrative oauth (private list access)
+                     -- add 'www.googleapis.com' to the list for google oauth to decide, for instance.
+    oauth_fields = { -- used for specifying individual oauth handling parameters.
+-- for example:
+--        internal = {
+--            email = 'CAS-EMAIL',
+--            name = 'CAS-NAME',
+--            uid = 'REMOTE-USER',
+--            env = 'subprocess' -- use environment vars instead of request headers
+--        }
+    },
+--  allow_insecure_cookie = true, -- override the default (false) - only use for test installations 
+--  no_association = {}, -- domains that are not allowed for email association
+--  listsDisplay = 'regex', -- if defined, hide list names that don't match the regex
+--  debug = false, -- whether to return debug information
+    antispam = true  -- Whether or not to add anti-spam measures aimed at anonymous users.
+}
+return config


[4/5] incubator-ponymail git commit: Merge branch 'billywatson-sample-lua-config-for-newbies' Thanks to Billy Watson for this suggestion.

Posted by hu...@apache.org.
Merge branch 'billywatson-sample-lua-config-for-newbies'
Thanks to Billy Watson for this suggestion.


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

Branch: refs/heads/master
Commit: b29cd25b2084cbecb69dc8aa765807215b03914a
Parents: 3e1e87d 3e759fd
Author: Daniel Gruno <hu...@apache.org>
Authored: Sun Jun 4 17:01:21 2017 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Sun Jun 4 17:01:21 2017 +0200

----------------------------------------------------------------------
 site/api/lib/config.lua.sample | 42 +++++++++++++++++++++++++++++++++++++
 tools/ponymail.cfg.sample      | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+)
----------------------------------------------------------------------



[5/5] incubator-ponymail git commit: update chglog

Posted by hu...@apache.org.
update chglog


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

Branch: refs/heads/master
Commit: f0edfa11dad84701b3ac8ebb02067449f21bf757
Parents: b29cd25
Author: Daniel Gruno <hu...@apache.org>
Authored: Sun Jun 4 17:02:52 2017 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Sun Jun 4 17:02:52 2017 +0200

----------------------------------------------------------------------
 CHANGELOG.md | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/f0edfa11/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bbc497f..4bd3618 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,6 @@
 ## CHANGES in 0.10:
+- Added sample configs for Pony Mail (#374)
+- Renamed ll.py to list-lists.py (#378)
 - ID generators have now been split into a separate library (generators.py)
 - more comprehensive ID generation mechanisms
 - private messages are now included in downloads if the user has access to them (#169, #108)


[3/5] incubator-ponymail git commit: Merge branch 'sample-lua-config-for-newbies' of https://github.com/billywatson/incubator-ponymail into billywatson-sample-lua-config-for-newbies

Posted by hu...@apache.org.
Merge branch 'sample-lua-config-for-newbies' of https://github.com/billywatson/incubator-ponymail into billywatson-sample-lua-config-for-newbies


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

Branch: refs/heads/master
Commit: 3e759fd2323aa3b5b11122184bc1b961ef732f97
Parents: 3e1e87d 8032e35
Author: Daniel Gruno <hu...@apache.org>
Authored: Sun Jun 4 17:01:06 2017 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Sun Jun 4 17:01:06 2017 +0200

----------------------------------------------------------------------
 site/api/lib/config.lua.sample | 42 +++++++++++++++++++++++++++++++++++++
 tools/ponymail.cfg.sample      | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+)
----------------------------------------------------------------------



[2/5] incubator-ponymail git commit: add ponymail.cfg.sample

Posted by hu...@apache.org.
add ponymail.cfg.sample 

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

Branch: refs/heads/master
Commit: 8032e3511bef7a6fde9b3e830027071f2aef6c74
Parents: 68db687
Author: Billy Watson <wi...@gmail.com>
Authored: Mon May 15 18:03:29 2017 -0400
Committer: Billy Watson <wi...@gmail.com>
Committed: Mon May 15 18:03:29 2017 -0400

----------------------------------------------------------------------
 tools/ponymail.cfg.sample | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/8032e351/tools/ponymail.cfg.sample
----------------------------------------------------------------------
diff --git a/tools/ponymail.cfg.sample b/tools/ponymail.cfg.sample
new file mode 100644
index 0000000..dd883f8
--- /dev/null
+++ b/tools/ponymail.cfg.sample
@@ -0,0 +1,40 @@
+###############################################################
+# A ponymail.cfg is needed to run this project. This sample config file was
+# originally generated by tools/setup.py.
+# 
+# Run the tools/setup.py script and a ponymail.cfg which looks a lot like this 
+# one will be generated. If, for whatever reason, that script is not working 
+# for you, you may use this ponymail.cfg as a starting point.
+# 
+# Contributors should strive to keep this sample updated. One way to do this 
+# would be to run the tools/setup.py, rename the generated config to
+# ponymail.cfg.sample, and then pasting this message or a modified form of 
+# this message at the top.
+###############################################################
+
+###############################################################
+# Pony Mail Configuration file                                             
+
+# Main ES configuration
+[elasticsearch]
+hostname:               localhost
+dbname:                 ponymail
+port:                   9200
+ssl:                    false
+
+#uri:                   url_prefix
+
+#user:                  username
+#password:              password
+
+#wait:                  active shard count
+
+#backup:                database name
+
+[archiver]
+#generator:             medium|full|other
+
+[debug]
+#cropout:               string to crop from list-id
+
+###############################################################