Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
gendl
cl-smtp
Commits
aa12a246
Commit
aa12a246
authored
Apr 02, 2008
by
Jan Idzikowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ups sorry, the package.lisp file from Hans Huebners patch
parent
2c255874
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
package.lisp
package.lisp
+38
-0
No files found.
package.lisp
0 → 100644
View file @
aa12a246
;;; -*- mode: Lisp -*-
;;; This file is part of CL-SMTP, the Lisp SMTP Client
;;; Copyright (C) 2004/2005/2006/2007 Jan Idzikowski
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the Lisp Lesser General Public License
;;; (http://opensource.franz.com/preamble.html), known as the LLGPL.
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; Lisp Lesser GNU General Public License for more details.
;;; File: package.lisp
;;; Description: cl-smtp package definition file
(
in-package
:cl-user
)
(
defpackage
:cl-smtp
(
:use
:cl
:asdf
:flexi-streams
:trivial-gray-streams
)
(
:export
"SEND-EMAIL"
"WITH-SMTP-MAIL"
"SMTP-ERROR"
"SMTP-PROTOCOL-ERROR"
"NO-SUPPORTED-AUTHENTICATION-METHOD"
"RCPT-FAILED"
"IGNORE-RECIPIENT"
))
(
in-package
:cl-smtp
)
(
defparameter
*debug*
nil
)
(
defmacro
print-debug
(
str
)
`
(
when
*debug*
(
print
,
str
)))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment