Changeset 68
- Timestamp:
- 07/27/07 23:21:05 (1 year ago)
- Files:
-
- projects/sAsync/trunk/setup.py (modified) (2 diffs)
- projects/Twisted-Goodies/trunk/misc/etc_simpleserver_server.conf (modified) (1 diff)
- projects/Twisted-Goodies/trunk/misc/var_www_foss.tellectual.com_index.py (modified) (1 diff)
- projects/Twisted-Goodies/trunk/twisted_goodies/simpleserver/pop3.py (modified) (1 diff)
- projects/Twisted-Goodies/trunk/twisted_goodies/simpleserver/smtp (added)
- projects/Twisted-Goodies/trunk/twisted_goodies/simpleserver/smtp/__init__.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/sAsync/trunk/setup.py
r67 r68 76 76 """.split("\n")) 77 77 78 kw['long_description'] = " ""78 kw['long_description'] = " ".join(""" 79 79 An enhancement to the SQLAlchemy package that provides asynchronous, 80 80 deferred-result access via the Twisted framework and an access broker that … … 82 82 are modules for implementing persistent dictionaries, three-dimensional arrays, 83 83 and graph objects. 84 """ 84 """.split("\n")) 85 85 86 86 ### Finally, run the setup projects/Twisted-Goodies/trunk/misc/etc_simpleserver_server.conf
r42 r68 31 31 base dir = /var/mail 32 32 33 34 [SMTP] 35 tcp = 22 36 base dir = /var/mail 37 accounts = /etc/simpleserver/mail.accounts 38 whitelist = /etc/simpleserver/mail.whitelist 39 dnsbl primary = sbl-xbl.spamhaus.org, dsn.rfc-ignorant.org 40 dnsbl secondary = dnsbl.sorbs.net 41 projects/Twisted-Goodies/trunk/misc/var_www_foss.tellectual.com_index.py
r66 r68 171 171 vhost subdirectory. 172 172 """ 173 if not segments[0]: 173 root = segments[0] 174 if not root: 174 175 return self, () 175 if segments[0]== 'trac':176 if root == 'trac': 176 177 return self.tracChild(request, segments[1:]) 178 if root in [x[0] for x in PROJECTS]: 179 return self.tracChild(request, segments) 177 180 return static.File(os.path.join(self.vhostPath, *segments)), () 178 181 projects/Twisted-Goodies/trunk/twisted_goodies/simpleserver/pop3.py
r66 r68 18 18 """ 19 19 The simplemail POP3 server. 20 21 Copyright (C) 2006-2007 by Edwin A. Suominen, http://www.eepatents.com 22 23 This program is free software; you can redistribute it and/or modify it under 24 the terms of the GNU General Public License as published by the Free Software 25 Foundation; either version 2 of the License, or (at your option) any later 26 version. 27 28 This program is distributed in the hope that it will be useful, but WITHOUT ANY 29 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 30 PARTICULAR PURPOSE. See the file COPYING for more details. 31 32 You should have received a copy of the GNU General Public License along with 33 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin 34 Street, Fifth Floor, Boston, MA 02110-1301, USA 20 35 """ 21 36
