r11859: Canonicalize whitespace
[postoffice.git] / package.lisp
1 (defpackage :net.post-office
2   (:use #:cl
3         #-allegro #:acl-compat.excl
4         #+allegro #:excl
5         #-allegro :acl-socket
6         #+allegro :socket
7         #-allegro :acl-compat-mp
8         #+allegro :mp)
9   (:export
10    ;; From smtp.lisp
11    #:send-letter
12    #:send-smtp
13    #:test-email-address
14
15    ;; From imap.lisp
16
17    #:address-name
18    #:address-additional
19    #:address-mailbox
20    #:address-host
21
22    #:alter-flags
23    #:close-connection
24    #:close-mailbox
25    #:copy-to-mailbox
26    #:create-mailbox
27    #:delete-letter
28    #:delete-mailbox
29
30    #:envelope-date
31    #:envelope-subject
32    #:envelope-from
33    #:envelope-sender
34    #:envelope-reply-to
35    #:envelope-to
36    #:envelope-cc
37    #:envelope-bcc
38    #:envelope-in-reply-to
39    #:envelope-message-id
40
41    #:expunge-mailbox
42    #:fetch-field
43    #:fetch-letter
44    #:fetch-parts
45    #:*imap-version-number*
46    #:make-envelope-from-text
47    #:mailbox-flags      ; accessor
48    #:mailbox-permanent-flags ; acc
49    #:mailbox-list
50    #:mailbox-list-flags
51    #:mailbox-list-separator
52    #:mailbox-list-name
53    #:mailbox-message-count ; accessor
54    #:mailbox-recent-messages ; ac
55    #:mailbox-separator  ; accessor
56    #:mailbox-uidvalidity
57    #:make-imap-connection
58    #:make-pop-connection
59    #:noop
60    #:parse-mail-header
61    #:top-lines  ; pop only
62    #:unique-id  ; pop only
63
64    #:po-condition
65    #:po-condition-identifier
66    #:po-condition-server-string
67    #:po-error
68
69    #:rename-mailbox
70    #:search-mailbox
71    #:select-mailbox
72
73    ))