2021-11-30 17:42:05 +01:00
|
|
|
(defpackage :maildir
|
|
|
|
(:use :common-lisp)
|
|
|
|
(:shadow :list)
|
|
|
|
(:export :list)
|
|
|
|
(:documentation
|
|
|
|
"Very incomplete package for dealing with maildir(5)."))
|
|
|
|
|
2022-01-13 00:33:59 +01:00
|
|
|
(defpackage :note
|
2021-08-02 15:13:05 +02:00
|
|
|
(:use
|
|
|
|
:common-lisp
|
|
|
|
:closure-html
|
|
|
|
:who
|
2022-01-13 00:33:59 +01:00
|
|
|
:cl-date-time-parser
|
|
|
|
:mime4cl
|
|
|
|
:who)
|
2021-08-02 15:13:05 +02:00
|
|
|
(:import-from
|
|
|
|
:alexandria
|
|
|
|
:when-let*
|
|
|
|
:when-let
|
|
|
|
:starts-with-subseq
|
|
|
|
:ends-with-subseq)
|
2022-01-13 00:33:59 +01:00
|
|
|
(:shadow :with-html-output) ; conflict between closure-html and who
|
|
|
|
(:export
|
|
|
|
:apple-note
|
|
|
|
:apple-note-uuid
|
|
|
|
:apple-note-subject
|
|
|
|
:apple-note-time
|
|
|
|
:apple-note-text-part
|
|
|
|
:make-apple-note
|
|
|
|
:apple-note-html-fragment))
|
|
|
|
|
|
|
|
(defpackage :mblog
|
|
|
|
(:use
|
|
|
|
:common-lisp
|
|
|
|
:uiop
|
|
|
|
:note)
|
2021-08-02 15:13:05 +02:00
|
|
|
(:export :main))
|