This file is indexed.

/usr/share/common-lisp/source/postoffice/postoffice.asd is in cl-postoffice 1.8.2.3-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          postoffice.asd
;;;; Purpose:       ASDF definition file for Postoffice
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Sep 2002
;;;;
;;;; $Id: postoffice.asd 7061 2003-09-07 06:34:45Z kevin $
;;;;
;;;; This file, part of cl-postoffice, is Copyright (c) 2002 by Kevin M. Rosenberg
;;;;
;;;; cl-postoffice users are granted the rights to distribute and use this software
;;;; as governed by the terms of the GNU Lesser General Public License 
;;;; (http://www.gnu.org/licenses/lgpl.html)
;;;; *************************************************************************

(in-package #:cl-user)
(defpackage #:postoffice-system (:use #:asdf #:cl))
(in-package #:postoffice-system)

#+(or allegro lispworks cmu openmcl sbcl)
(defsystem postoffice
  :name "cl-postoffice"
  :author "Franz, Inc"
  :version "CVS.2002.10.09"
  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
  :licence "GNU Lesser General Public License"
  :description "Franz's Post Office Package"
  :long-description "Post Office provides an interface to the SMTP, POP, and IMAP servers. It uses the ACL-COMPAT library for use with non-Allegro CL implementations."
  
  :components
  ((:file "package")
   (:file "smtp" :depends-on ("package"))
   (:file "imap" :depends-on ("package")))
  #-allegro :depends-on #-allegro (:acl-compat)
  )