logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

CVS: tmda/TMDA Cookie.py,1.17,1.18 Defaults.py,1.108,1.109 Deliver.py,1.2,1: msg#00116

Subject: CVS: tmda/TMDA Cookie.py,1.17,1.18 Defaults.py,1.108,1.109 Deliver.py,1.2,1.3 Errors.py,1.5,1.6 FilterParser.py,1.34,1.35 HMAC.py,1.3,1.4 MTA.py,1.10,1.11 Util.py,1.45,1.46 Version.py,1.15,1.16 __init__.py,1.1.1.1,1.2
Update of /cvsroot/tmda/tmda/TMDA
In directory usw-pr-cvs1:/tmp/cvs-serv11239/TMDA

Modified Files:
        Cookie.py Defaults.py Deliver.py Errors.py FilterParser.py 
        HMAC.py MTA.py Util.py Version.py __init__.py 
Log Message:
TMDA is now released under the GNU General Public License (GNU GPL).

In accordance with GPL HOWTO[1], both a copyright notice, and a
statement of copying permission was added to each source file.
Additionally, a copy of the GNU GPL was added as COPYING.

Footnotes:
1.  http://www.gnu.org/licenses/gpl-howto.html


Index: Cookie.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Cookie.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- Cookie.py   18 Feb 2002 21:59:33 -0000      1.17
+++ Cookie.py   27 Feb 2002 22:01:42 -0000      1.18
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """Crypto-cookie functions."""
 

Index: Defaults.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Defaults.py,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- Defaults.py 26 Feb 2002 17:20:31 -0000      1.108
+++ Defaults.py 27 Feb 2002 22:01:42 -0000      1.109
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """TMDA configuration variable defaults."""
 

Index: Deliver.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Deliver.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Deliver.py  27 Feb 2002 00:20:03 -0000      1.2
+++ Deliver.py  27 Feb 2002 22:01:42 -0000      1.3
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """TMDA local mail delivery."""
 

Index: Errors.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Errors.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Errors.py   24 Feb 2002 03:35:31 -0000      1.5
+++ Errors.py   27 Feb 2002 22:01:42 -0000      1.6
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """Shared TMDA errors and messages."""
 

Index: FilterParser.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/FilterParser.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- FilterParser.py     26 Feb 2002 00:40:50 -0000      1.34
+++ FilterParser.py     27 Feb 2002 22:01:42 -0000      1.35
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """
 TMDA filter file parser.

Index: HMAC.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/HMAC.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- HMAC.py     31 Jan 2002 01:28:39 -0000      1.3
+++ HMAC.py     27 Feb 2002 22:01:42 -0000      1.4
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """
 HMAC (Keyed-Hashing for Message Authentication) Python module.

Index: MTA.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/MTA.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- MTA.py      24 Feb 2002 03:35:31 -0000      1.10
+++ MTA.py      27 Feb 2002 22:01:42 -0000      1.11
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """Mail Transfer Agent (MTA) related objects."""
 

Index: Util.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Util.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- Util.py     26 Feb 2002 17:20:32 -0000      1.45
+++ Util.py     27 Feb 2002 22:01:42 -0000      1.46
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """General purpose functions."""
 

Index: Version.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Version.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- Version.py  19 Feb 2002 23:39:47 -0000      1.15
+++ Version.py  27 Feb 2002 22:01:42 -0000      1.16
@@ -1,4 +1,23 @@
 # -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
 """ Various versioning information."""
 

Index: __init__.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/__init__.py,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- __init__.py 17 Apr 2001 20:29:14 -0000      1.1.1.1
+++ __init__.py 27 Feb 2002 22:01:42 -0000      1.2
@@ -0,0 +1,20 @@
+# -*- python -*-
+#
+# Copyright (C) 2001,2002 Jason R. Mastaler <jason@xxxxxxxxxxxx>
+#
+# This file is part of TMDA.
+#
+# TMDA is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.  A copy of this license should
+# be included in the file COPYING.
+#
+# TMDA is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with TMDA; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

_______________________________________________
tmda-cvs mailing list
http://libertine.org/lists/listinfo/tmda-cvs



<Prev in Thread] Current Thread [Next in Thread>