Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giuseppe/maildirwatch
watch a Maildir for incoming messages
https://github.com/giuseppe/maildirwatch
Last synced: about 1 month ago
JSON representation
watch a Maildir for incoming messages
- Host: GitHub
- URL: https://github.com/giuseppe/maildirwatch
- Owner: giuseppe
- License: gpl-3.0
- Created: 2014-09-17T20:38:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-09-20T14:41:26.000Z (over 3 years ago)
- Last Synced: 2024-10-14T16:43:27.138Z (3 months ago)
- Language: C
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
** Maildirwatch **
A simple program that watches a collection of Maildirs[1] for incoming
messages. It works only on GNU/Linux as it uses inotify to monitor
changes on the file system.1) http://en.wikipedia.org/wiki/Maildir
* Integration with Emacs
New messages can be quickly notified in Emacs by adding these few
lines to your .emacs file:;; begin of maildirwatch
(load "/path/to/maildirwatch.el")
;; Path to the maildir executable
(setq maildirwatch-path "/path/to/maildirwatch");; List of Maildirs to watch for incoming messages
(maildirwatch-watch '("~/Maildir"));; end of maildirwatch