Changeset 11:078c7b030cee in mailjam


Ignore:
Timestamp:
May 20, 2012, 10:02:10 AM (12 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

Removed legacy configs from the config module

Added some headers to the sources (setting author, email, website
and references to the LICENSE)

Location:
postman
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • postman/config.py

    r9 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - config.py
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313import os
     
    4353    return config
    4454
    45 
    46 # The default path for storage files
    47 storage_path = os.path.join(os.path.dirname(__file__), 'storage')
    48 
    49 # The default path for the archives
    50 archive_path = os.path.join(os.path.dirname(__file__), 'archives')
    51 
    52 # Set to True to set that, by default, only emails from members
    53 # will go into the list
    54 private_mailing = True
  • postman/models.py

    r10 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - models.py
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313import os
  • postman/mta.py

    r10 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - mta.py
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313import sys, email, smtplib
  • postman/storage.py

    r5 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - storage.py
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313import os, errno, json
  • postman/tests/__init__.py

    r5 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - tests module
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313from models import *
  • postman/tests/daemon.py

    r10 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - daemon.py
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313import os, multiprocessing, xmlrpclib, time
  • postman/tools.py

    r1 r11  
    11# -*- coding: utf-8 -*-
     2
     3"""
     4The postman project - tools.py
     5
     6This file is released under the BSD license, see LICENSE for
     7more information.
     8
     9Francisco de Borja Lopez Rio - <borja@codigo23.net>
     10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
     11"""
    212
    313import re
Note: See TracChangeset for help on using the changeset viewer.