1 ;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
3 (in-package :common-lisp-user)
5 (eval-when (:compile-toplevel :load-toplevel :execute)
6 (asdf:operate 'asdf:load-op :asdf-additions))
8 (defpackage #:net.smtp-client.system
9 (:use #:common-lisp #:asdf-additions))
11 (in-package #:net.smtp-client.system)
13 (asdf:defsystem :net.smtp-client
14 :description "SMTP client library."
15 :author "Jan Idzikowski"
16 :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
18 :depends-on (:iolib-posix
22 :default-component-class muffled-source-file
23 :pathname (merge-pathnames (make-pathname :directory '(:relative "protocols" "smtp"))
29 (:file "client-commands")
30 (:file "client-authentication")