blob: a9a0bfa82581898319328bf547d8b9ebbdf34045 (
plain) (
tree)
|
|
"""News to mail gateway script. Copyright 2000 Cosimo Alfarano
Author: Cosimo Alfarano
Date: June 11 2000
pyginfo.py - Copyright 2000 by Cosimo Alfarano <Alfarano@Students.CS.UniBo.It>
You can use this software under the terms of the GPL. If we meet some day,
and you think this stuff is worth it, you can buy me a beer in return.
Thanks to md for this useful formula. Beer is beer.
Gets news article and sends it via SMTP.
"""
class pygsinfo:
"""The Python Gateway Script: news2mail mail2news gateway"""
PROGNAME = 'pyg'
PROGDESC= 'The Python Gateway'
MAJOR = '0'
MINOR = '7b'
VERSION = MAJOR + '.' + MINOR
|