|
Revision 2855, 1.2 kB
(checked in by hans, 5 months ago)
|
update cl-smtp from trunk
|
| Line | |
|---|
| 1 |
;;; -*- mode: Lisp -*- |
|---|
| 2 |
|
|---|
| 3 |
;;; This file is part of CL-SMTP, the Lisp SMTP Client |
|---|
| 4 |
|
|---|
| 5 |
;;; Copyright (C) 2004/2005/2006/2007 Jan Idzikowski |
|---|
| 6 |
|
|---|
| 7 |
;;; This library is free software; you can redistribute it and/or |
|---|
| 8 |
;;; modify it under the terms of the Lisp Lesser General Public License |
|---|
| 9 |
;;; (http://opensource.franz.com/preamble.html), known as the LLGPL. |
|---|
| 10 |
|
|---|
| 11 |
;;; This library is distributed in the hope that it will be useful, |
|---|
| 12 |
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 |
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 |
;;; Lisp Lesser GNU General Public License for more details. |
|---|
| 15 |
|
|---|
| 16 |
;;; File: cl-smtp.asd |
|---|
| 17 |
;;; Description: cl-smtp ASDF system definition file |
|---|
| 18 |
|
|---|
| 19 |
(asdf:defsystem :cl-smtp |
|---|
| 20 |
:version "20080202.1" |
|---|
| 21 |
:perform (load-op :after (op webpage) |
|---|
| 22 |
(pushnew :cl-smtp cl:*features*)) |
|---|
| 23 |
:depends-on (:usocket |
|---|
| 24 |
:trivial-gray-streams |
|---|
| 25 |
:flexi-streams |
|---|
| 26 |
#-allegro :cl-base64 |
|---|
| 27 |
#-allegro :cl+ssl) |
|---|
| 28 |
:serial t |
|---|
| 29 |
:components ((:file "package") |
|---|
| 30 |
(:file "attachments") |
|---|
| 31 |
(:file "cl-smtp") |
|---|
| 32 |
(:file "smtp-output-stream") |
|---|
| 33 |
(:file "mime-types"))) |
|---|