X-Git-Url: http://git.kpe.io/?p=postoffice.git;a=blobdiff_plain;f=package.lisp;fp=package.lisp;h=8f4352ba44d53368079978bb8d05b6eff4393ce2;hp=0000000000000000000000000000000000000000;hb=554f039600b5c30f84b71b1f7ed2e902d5097e9b;hpb=81acb4be0ab6aee57b87b724817729cd6394bc52 diff --git a/package.lisp b/package.lisp new file mode 100644 index 0000000..8f4352b --- /dev/null +++ b/package.lisp @@ -0,0 +1,71 @@ +(defpackage :net.post-office + (:use :lisp :excl + #-allegro :acl-socket + #+allegro :socket + #-allegro :acl-compat-mp + #+allegro :mp) + (:export + ;; From smtp.lisp + #:send-letter + #:send-smtp + #:test-email-address + + ;; From imap.lisp + + #:address-name + #:address-additional + #:address-mailbox + #:address-host + + #:alter-flags + #:close-connection + #:close-mailbox + #:copy-to-mailbox + #:create-mailbox + #:delete-letter + #:delete-mailbox + + #:envelope-date + #:envelope-subject + #:envelope-from + #:envelope-sender + #:envelope-reply-to + #:envelope-to + #:envelope-cc + #:envelope-bcc + #:envelope-in-reply-to + #:envelope-message-id + + #:expunge-mailbox + #:fetch-field + #:fetch-letter + #:fetch-parts + #:*imap-version-number* + #:make-envelope-from-text + #:mailbox-flags ; accessor + #:mailbox-permanent-flags ; acc + #:mailbox-list + #:mailbox-list-flags + #:mailbox-list-separator + #:mailbox-list-name + #:mailbox-message-count ; accessor + #:mailbox-recent-messages ; ac + #:mailbox-separator ; accessor + #:mailbox-uidvalidity + #:make-imap-connection + #:make-pop-connection + #:noop + #:parse-mail-header + #:top-lines ; pop only + #:unique-id ; pop only + + #:po-condition + #:po-condition-identifier + #:po-condition-server-string + #:po-error + + #:rename-mailbox + #:search-mailbox + #:select-mailbox + + ))