Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boorad/erlimap
Simple IMAP library for Erlang (work in progress...)
https://github.com/boorad/erlimap
Last synced: about 1 month ago
JSON representation
Simple IMAP library for Erlang (work in progress...)
- Host: GitHub
- URL: https://github.com/boorad/erlimap
- Owner: boorad
- Created: 2011-08-16T15:18:50.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-15T13:55:47.000Z (over 12 years ago)
- Last Synced: 2024-08-05T15:05:11.465Z (3 months ago)
- Language: Erlang
- Homepage:
- Size: 269 KB
- Stars: 17
- Watchers: 5
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# erlimap
This is an attempt at making an Erlang IMAP client library. It is not complete.
## Mostly Complete Commands
* connect/disconnect (tcp or ssl)
* LOGIN
* EXAMINE (read-only)
* SELECT (read-write)
* SEARCH
* FETCH
* STORE
* . store 1 flags \Seen
* . store 1,2 -flags \Seen
* NOOP## Releated Links
* http://www.imapwiki.org/
* http://dovecot.org/imap-client-coding-howto.html
* http://dovecot.org/client-commandments.txt
* http://bobpeers.com/technical/telnet_imap## Other Notes
Further, it is not intelligent about clearing out the fsm's list of untagged responses, and matching them up with the command to which the server was responding.
Lastly, it is a regex shitshow that needs to be converted to a grammar/parser rig, something like [neotoma](http://github.com/seancribbs/neotoma), like what was done in [diemap](http://github.com/vagabond/diemap).
LICENSE: BSD