Simple LISP library to parse a maildir file into a usable structure. It can then be used to move messages around based on these rules. Developed to fulfill my personal itch, pull requests welcome!

mailfilter-parse.asd 374B

12345678910111213
  1. ;;;; mailfilter-parse.asd
  2. (asdf:defsystem #:mailfilter-parse
  3. :description "Read mailfilter files and apply the rules to mail messages."
  4. :author "Lily Carpenter (azrazalea)"
  5. :license "BSD 3-clause"
  6. :depends-on (#:cl-ppcre
  7. #:alexandria
  8. #:mel-base)
  9. :serial t
  10. :components ((:file "package")
  11. (:file "mailfilter-parse")))