1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
3 (in-package :common-lisp-user)
5 (asdf:defsystem :net.smtp-client
6 :description "SMTP client library."
7 :author "Jan Idzikowski"
8 :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
10 :depends-on (:alexandria :osicat :net.sockets :cl-base64)
11 :pathname (merge-pathnames (make-pathname :directory '(:relative "protocols" "smtp"))
17 (:file "client-commands")
18 (:file "client-authentication")