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
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.