Changeset 2790

Show
Ignore:
Timestamp:
03/24/08 08:51:11 (3 months ago)
Author:
hans
Message:

Add header quoting

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/thirdparty/cl-smtp/cl-smtp.asd

    r2784 r2790  
    1717;;; Description: cl-smtp ASDF system definition file 
    1818 
    19 (defpackage :cl-smtp 
    20   (: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  
    3819(asdf:defsystem :cl-smtp 
    3920  :version "20071113.1" 
     
    4324                        #-allegro :flexi-streams 
    4425                        #-allegro :cl+ssl) 
    45   :components ((:file "cl-smtp" :depends-on ("attachments")) 
     26  :serial t 
     27  :components ((:file "package") 
    4628               (:file "attachments") 
     29               (:file "cl-smtp") 
     30               (:file "smtp-output-stream") 
    4731               (:file "mime-types"))) 
  • trunk/thirdparty/cl-smtp/cl-smtp.lisp

    r2787 r2790  
    110110                                  :local-hostname local-hostname))) 
    111111      (initiate-smtp-mail stream from to) 
    112       (funcall thunk stream
     112      (funcall thunk (make-instance 'smtp-output-stream :stream stream)
    113113      (finish-smtp-mail stream)))) 
    114114