Changeset 2790
- Timestamp:
- 03/24/08 08:51:11 (3 months ago)
- Files:
-
- trunk/thirdparty/cl-smtp/cl-smtp.asd (modified) (2 diffs)
- trunk/thirdparty/cl-smtp/cl-smtp.lisp (modified) (1 diff)
- trunk/thirdparty/cl-smtp/package.lisp (added)
- trunk/thirdparty/cl-smtp/smtp-output-stream.lisp (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/thirdparty/cl-smtp/cl-smtp.asd
r2784 r2790 17 17 ;;; Description: cl-smtp ASDF system definition file 18 18 19 (defpackage :cl-smtp20 (:use :cl :asdf)21 (:export "SEND-EMAIL"22 "WITH-SMTP-MAIL"23 24 "SMTP-ERROR"25 "SMTP-PROTOCOL-ERROR"26 "NO-SUPPORTED-AUTHENTICATION-METHOD"27 "RCPT-FAILED"28 "IGNORE-RECIPIENT"))29 30 (in-package :cl-smtp)31 32 (defparameter *debug* nil)33 34 (defmacro print-debug (str)35 `(when *debug*36 (print ,str)))37 38 19 (asdf:defsystem :cl-smtp 39 20 :version "20071113.1" … … 43 24 #-allegro :flexi-streams 44 25 #-allegro :cl+ssl) 45 :components ((:file "cl-smtp" :depends-on ("attachments")) 26 :serial t 27 :components ((:file "package") 46 28 (:file "attachments") 29 (:file "cl-smtp") 30 (:file "smtp-output-stream") 47 31 (:file "mime-types"))) trunk/thirdparty/cl-smtp/cl-smtp.lisp
r2787 r2790 110 110 :local-hostname local-hostname))) 111 111 (initiate-smtp-mail stream from to) 112 (funcall thunk stream)112 (funcall thunk (make-instance 'smtp-output-stream :stream stream)) 113 113 (finish-smtp-mail stream)))) 114 114
