Changeset 13:f1f11159dbed in mailjam
- Timestamp:
- May 21, 2012, 11:55:26 AM (13 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 59 added
- 4 edited
-
INSTALL (modified) (2 diffs)
-
conf/postman.conf (modified) (1 diff)
-
docs/html (added)
-
docs/src/Makefile (added)
-
docs/src/_build/doctrees/configuration.doctree (added)
-
docs/src/_build/doctrees/development.doctree (added)
-
docs/src/_build/doctrees/environment.pickle (added)
-
docs/src/_build/doctrees/examples.doctree (added)
-
docs/src/_build/doctrees/index.doctree (added)
-
docs/src/_build/doctrees/install.doctree (added)
-
docs/src/_build/doctrees/overview.doctree (added)
-
docs/src/_build/doctrees/running.doctree (added)
-
docs/src/_build/html/.buildinfo (added)
-
docs/src/_build/html/_images/postman_architecture.png (added)
-
docs/src/_build/html/_sources/configuration.txt (added)
-
docs/src/_build/html/_sources/development.txt (added)
-
docs/src/_build/html/_sources/examples.txt (added)
-
docs/src/_build/html/_sources/index.txt (added)
-
docs/src/_build/html/_sources/install.txt (added)
-
docs/src/_build/html/_sources/overview.txt (added)
-
docs/src/_build/html/_sources/running.txt (added)
-
docs/src/_build/html/_static/ajax-loader.gif (added)
-
docs/src/_build/html/_static/basic.css (added)
-
docs/src/_build/html/_static/comment-bright.png (added)
-
docs/src/_build/html/_static/comment-close.png (added)
-
docs/src/_build/html/_static/comment.png (added)
-
docs/src/_build/html/_static/default.css (added)
-
docs/src/_build/html/_static/doctools.js (added)
-
docs/src/_build/html/_static/down-pressed.png (added)
-
docs/src/_build/html/_static/down.png (added)
-
docs/src/_build/html/_static/file.png (added)
-
docs/src/_build/html/_static/jquery.js (added)
-
docs/src/_build/html/_static/minus.png (added)
-
docs/src/_build/html/_static/plus.png (added)
-
docs/src/_build/html/_static/pygments.css (added)
-
docs/src/_build/html/_static/searchtools.js (added)
-
docs/src/_build/html/_static/sidebar.js (added)
-
docs/src/_build/html/_static/underscore.js (added)
-
docs/src/_build/html/_static/up-pressed.png (added)
-
docs/src/_build/html/_static/up.png (added)
-
docs/src/_build/html/_static/websupport.js (added)
-
docs/src/_build/html/configuration.html (added)
-
docs/src/_build/html/development.html (added)
-
docs/src/_build/html/examples.html (added)
-
docs/src/_build/html/genindex.html (added)
-
docs/src/_build/html/index.html (added)
-
docs/src/_build/html/install.html (added)
-
docs/src/_build/html/objects.inv (added)
-
docs/src/_build/html/overview.html (added)
-
docs/src/_build/html/running.html (added)
-
docs/src/_build/html/search.html (added)
-
docs/src/_build/html/searchindex.js (added)
-
docs/src/conf.py (added)
-
docs/src/configuration.rst (added)
-
docs/src/development.rst (added)
-
docs/src/examples.rst (added)
-
docs/src/index.rst (added)
-
docs/src/install.rst (added)
-
docs/src/overview.rst (added)
-
docs/src/postman_architecture.png (added)
-
docs/src/running.rst (added)
-
postman/daemon.py (modified) (2 diffs)
-
postman/tests/postman.conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
INSTALL
r12 r13 10 10 11 11 Postman has been tested with python *2.7.x*, but it should work with versions 12 2.6.xtoo.12 *2.6.x* too. 13 13 14 14 Please, refer to your operating system package system documentation to learn … … 55 55 source /path/to/your/env/bin/activate.csh 56 56 57 And, once the environment has been activated, us ingpip to install Postman::57 And, once the environment has been activated, use pip to install Postman:: 58 58 59 59 env$ pip install -e https://bitbucket.org/codigo23/postman#egg=postman -
conf/postman.conf
r8 r13 7 7 port = 9876 8 8 ssl = false 9 ssl_key = /usr/local/etc/postman/ssl/postman.key 10 ssl_crt = /usr/local/etc/postman/ssl/postman.crt 9 11 logfile = /var/log/postman/xmlrpc_server.log 10 12 -
postman/daemon.py
r10 r13 164 164 self.postman.add_mailing_list(info) 165 165 def addresses(self): 166 return self.postman.mailings_addresses 166 return self.postman.mailings_addresses 167 167 168 168 … … 173 173 def add(self, member_addr=None, list_addr=None): 174 174 self.postman.add_mailing_member(member_addr, list_addr) 175 176 177 175 def list(self, mailing): 176 if mailing in self.postman.mailings_addresses: 177 return self.postman.mailings[mailing].members_addresses() 178 179 178 180 class PostmanDaemon(): 179 181 def __init__(self, configfile=None): -
postman/tests/postman.conf
r10 r13 9 9 port = 9876 10 10 ssl = false 11 ssl_key = /usr/local/etc/postman/ssl/postman.key 12 ssl_crt = /usr/local/etc/postman/ssl/postman.crt 11 13 logfile = /tmp/postman-tests/xmlrpc_server.log 12 14
Note:
See TracChangeset
for help on using the changeset viewer.
