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!

.gitignore 582B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Created by https://www.gitignore.io/api/emacs,linux,commonlisp
  2. ### Emacs ###
  3. # -*- mode: gitignore; -*-
  4. *~
  5. \#*\#
  6. /.emacs.desktop
  7. /.emacs.desktop.lock
  8. *.elc
  9. auto-save-list
  10. tramp
  11. .\#*
  12. # Org-mode
  13. .org-id-locations
  14. *_archive
  15. # flymake-mode
  16. *_flymake.*
  17. # eshell files
  18. /eshell/history
  19. /eshell/lastdir
  20. # elpa packages
  21. /elpa/
  22. # reftex files
  23. *.rel
  24. # AUCTeX auto folder
  25. /auto/
  26. # cask packages
  27. .cask/
  28. ### Linux ###
  29. *~
  30. # KDE directory preferences
  31. .directory
  32. # Linux trash folder which might appear on any partition or disk
  33. .Trash-*
  34. ### CommonLisp ###
  35. *.FASL
  36. *.fasl
  37. *.lisp-temp