Changeset 11:078c7b030cee in mailjam
- Timestamp:
 - May 20, 2012, 10:02:10 AM (13 years ago)
 - Branch:
 - default
 - Phase:
 - public
 - Location:
 - postman
 - Files:
 - 
      
- 7 edited
 
- 
          
  config.py (modified) (2 diffs)
 - 
          
  models.py (modified) (1 diff)
 - 
          
  mta.py (modified) (1 diff)
 - 
          
  storage.py (modified) (1 diff)
 - 
          
  tests/__init__.py (modified) (1 diff)
 - 
          
  tests/daemon.py (modified) (1 diff)
 - 
          
  tools.py (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
postman/config.py
r9 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - config.py 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 import os … … 43 53 return config 44 54 45 46 # The default path for storage files47 storage_path = os.path.join(os.path.dirname(__file__), 'storage')48 49 # The default path for the archives50 archive_path = os.path.join(os.path.dirname(__file__), 'archives')51 52 # Set to True to set that, by default, only emails from members53 # will go into the list54 private_mailing = True - 
      
postman/models.py
r10 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - models.py 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 import os  - 
      
postman/mta.py
r10 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - mta.py 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 import sys, email, smtplib  - 
      
postman/storage.py
r5 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - storage.py 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 import os, errno, json  - 
      
postman/tests/__init__.py
r5 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - tests module 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 from models import *  - 
      
postman/tests/daemon.py
r10 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - daemon.py 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 import os, multiprocessing, xmlrpclib, time  - 
      
postman/tools.py
r1 r11 1 1 # -*- coding: utf-8 -*- 2 3 """ 4 The postman project - tools.py 5 6 This file is released under the BSD license, see LICENSE for 7 more information. 8 9 Francisco de Borja Lopez Rio - <borja@codigo23.net> 10 Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net 11 """ 2 12 3 13 import re  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  