git.fiddlerwoaroof.com
Browse code

Remove CVS Ids; fix copyright

Change-Id: Icfcbf98cd026b533f4b0d30b173cef5367d7bad4

Kevin Layer authored on 09/04/2016 00:37:25
Showing 5 changed files
... ...
@@ -1,21 +1,3 @@
1
-#+(version= 7 0)
2
-(sys:defpatch "imap" 1
3
-  "v1: fetch-letter-sequence support."
4
-  :type :system
5
-  :post-loadable t)
6
-
7
-#+(version= 8 0)
8
-(sys:defpatch "imap" 1
9
-  "v1: fetch-letter-sequence support."
10
-  :type :system
11
-  :post-loadable t)
12
-
13
-#+(version= 8 1)
14
-(sys:defpatch "imap" 1
15
-  "v1: Add ssl/tls support for both imap/pop connections."
16
-  :type :system
17
-  :post-loadable t)
18
-
19 1
 ;; -*- mode: common-lisp; package: net.post-office -*-
20 2
 ;;
21 3
 ;; imap.cl
... ...
@@ -34,8 +16,24 @@
34 16
 ;; but without any warranty; without even the implied warranty of
35 17
 ;; merchantability or fitness for a particular purpose.  See the GNU
36 18
 ;; Lesser General Public License for more details.
37
-;;
38
-;; $Id: imap.cl,v 1.32 2009/03/25 22:46:02 layer Exp $
19
+
20
+#+(version= 7 0)
21
+(sys:defpatch "imap" 1
22
+  "v1: fetch-letter-sequence support."
23
+  :type :system
24
+  :post-loadable t)
25
+
26
+#+(version= 8 0)
27
+(sys:defpatch "imap" 1
28
+  "v1: fetch-letter-sequence support."
29
+  :type :system
30
+  :post-loadable t)
31
+
32
+#+(version= 8 1)
33
+(sys:defpatch "imap" 1
34
+  "v1: Add ssl/tls support for both imap/pop connections."
35
+  :type :system
36
+  :post-loadable t)
39 37
 
40 38
 ;; Description:
41 39
 ;;- This code in this file obeys the Lisp Coding Standard found in
... ...
@@ -35,7 +35,6 @@ v3: add mime structure parsing support."
35 35
 ;; merchantability or fitness for a particular purpose.  See the GNU
36 36
 ;; Lesser General Public License for more details.
37 37
 ;;
38
-;; $Id: mime-api.cl,v 1.11 2008/11/20 21:30:12 layer Exp $
39 38
 
40 39
 (defpackage :net.post-office
41 40
   (:use #:lisp #:excl)
... ...
@@ -14,7 +14,6 @@
14 14
 ;; merchantability or fitness for a particular purpose.  See the GNU
15 15
 ;; Lesser General Public License for more details.
16 16
 ;;
17
-;; $Id: mime-parse.cl,v 1.8 2008/05/21 21:01:56 layer Exp $
18 17
 
19 18
 (defpackage :net.post-office
20 19
   (:use #:lisp #:excl)
... ...
@@ -14,7 +14,6 @@
14 14
 ;; merchantability or fitness for a particular purpose.  See the GNU
15 15
 ;; Lesser General Public License for more details.
16 16
 ;;
17
-;; $Id: mime-transfer-encoding.cl,v 1.14 2007/08/02 18:14:31 layer Exp $
18 17
 
19 18
 (defpackage :net.post-office
20 19
   (:use #:lisp #:excl)
... ...
@@ -1,20 +1,16 @@
1
+;; copyright (c) 1999-2002 Franz Inc, Berkeley, CA - All rights reserved.
1 2
 ;; copyright (c) 2002-2016 Franz Inc, Oakland, CA - All rights reserved.
2 3
 ;;
3
-;; The software, data and information contained herein are proprietary
4
-;; to, and comprise valuable trade secrets of, Franz, Inc.  They are
5
-;; given in confidence by Franz, Inc. pursuant to a written license
6
-;; agreement, and may be stored and used only in accordance with the terms
7
-;; of such license.
4
+;; This code is free software; you can redistribute it and/or
5
+;; modify it under the terms of the version 2.1 of
6
+;; the GNU Lesser General Public License as published by 
7
+;; the Free Software Foundation, as clarified by the AllegroServe
8
+;; prequel found in license-allegroserve.txt.
8 9
 ;;
9
-;; Restricted Rights Legend
10
-;; ------------------------
11
-;; Use, duplication, and disclosure of the software, data and information
12
-;; contained herein by any agency, department or entity of the U.S.
13
-;; Government are subject to restrictions of Restricted Rights for
14
-;; Commercial Software developed at private expense as specified in
15
-;; DOD FAR Supplement 52.227-7013 (c) (1) (ii), as applicable.
16
-;;
17
-;; $Id: t-imap.cl,v 1.9 2007/04/17 22:01:42 layer Exp $
10
+;; This code is distributed in the hope that it will be useful,
11
+;; but without any warranty; without even the implied warranty of
12
+;; merchantability or fitness for a particular purpose.  See the GNU
13
+;; Lesser General Public License for more details.
18 14
 
19 15
 ;; imap testing
20 16
 ;; requires smtp module too