Changeset 2787
- Timestamp:
- 03/23/08 20:49:15 (8 months ago)
- Files:
-
- trunk/thirdparty/cl-smtp/README (modified) (1 diff)
- trunk/thirdparty/cl-smtp/cl-smtp.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/thirdparty/cl-smtp/README
r2784 r2787 46 46 is read on each loop before encoding 47 47 and transmitting the contents, 48 the number is interpret ted in KB49 - ssl ( Boolean) : if true thanuse the STARTTLS functionality50 to make a ssl connection48 the number is interpreted in KB 49 - ssl (or t :starttls :tls) : if t or :STARTTLS: use the STARTTLS functionality 50 if :TLS: use TLS directly 51 51 52 52 Returns nil or error with message trunk/thirdparty/cl-smtp/cl-smtp.lisp
r2785 r2787 341 341 The server is expected to be inside of the DATA SMTP command. The 342 342 connection is then terminated by sending a QUIT command." 343 (fresh-line stream) 343 344 (smtp-command stream "." 250) 344 345 (smtp-command stream "QUIT" 221))
