From c50ce75f2e06b6b8abe49e34775d343b74f7e8cd Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 26 Feb 2008 17:27:08 +0100 Subject: The original upstream from Debian orig.tar.gz tarball. --- pyginfo.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pyginfo.py (limited to 'pyginfo.py') diff --git a/pyginfo.py b/pyginfo.py new file mode 100644 index 0000000..a9a0bfa --- /dev/null +++ b/pyginfo.py @@ -0,0 +1,26 @@ +"""News to mail gateway script. Copyright 2000 Cosimo Alfarano + +Author: Cosimo Alfarano +Date: June 11 2000 + +pyginfo.py - Copyright 2000 by Cosimo Alfarano +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 + -- cgit