mailcatcher/README.md

64 lines
2.7 KiB
Markdown
Raw Normal View History

2010-10-24 21:23:40 -04:00
# MailCatcher
Catches mail and serves it through a dream.
MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface. Run mailcatcher, set your favourite app to deliver to smtp://127.0.0.1:1025 instead of your default SMTP server, then check out http://127.0.0.1:1080 to see the mail that's arrived so far.
![MailCatcher screenshot](http://puu.sh/2fZR)
2011-05-19 10:33:26 -04:00
2010-10-27 15:27:07 -04:00
## How
1. `gem install mailcatcher`
2. `mailcatcher`
3. Go to http://localhost:1080/
4. Send mail through smtp://localhost:1025
2010-10-24 21:23:40 -04:00
## Features
* Catches all mail and stores it for display.
* Shows HTML, Plain Text and Source version of messages, as applicable.
* Download original email to view in your native mail client(s).
2011-05-27 00:48:03 -04:00
* Rewrites HTML enabling display of embedded, inline images/etc and open links in a new window. (currently very basic)
2010-10-24 21:23:40 -04:00
* Lists attachments and allows separate downloading of parts.
2010-10-24 21:26:50 -04:00
* Written super-simply in EventMachine, easy to dig in and change.
* Command line options to override the default SMTP/HTTP IP and port settings.
2010-10-27 15:30:37 -04:00
* Mail appears instantly if your browser supports [WebSockets][websockets].
2011-05-27 00:48:03 -04:00
* Daemonizable to run in the background.
2010-10-24 21:23:40 -04:00
## Caveats
2011-05-27 00:48:03 -04:00
* Mail processing is fairly basic but easily modified. If something doesn't work for you, fork and fix it or file an issue and let me know. Include the whole message you're having problems with.
2010-10-24 21:23:40 -04:00
* The interface is very basic and has not been tested on many browsers yet.
## RVM
Under RVM your mailcatcher command may only available under the ruby you install mailcatcher into. To prevent this, and to prevent gem conflicts, install mailcatcher into a dedicated gemset and create wrapper scripts:
rvm default@mailcatcher --create gem install mailcatcher
rvm wrapper default@mailcatcher --no-prefix mailcatcher catchmail
## API
A fairly RESTful URL schema means you can download a list of messages in JSON from `/messages`, each message's metadata with `/messages/:id.json`, and then the pertinent parts with `/messages/:id.html` and `/messages/:id.plain` for the default HTML and plain text version, `/messages/:id/:cid` for individual attachments by CID, or the whole message with `/messages/:id.source`.
2010-10-24 21:23:40 -04:00
## TODO
2010-10-24 21:26:50 -04:00
* Growl support.
2010-10-24 21:23:40 -04:00
* Test suite.
* Add mail delivery on request, optionally multiple times.
* Forward mail to rendering service, maybe CampaignMonitor?
2010-10-27 15:23:29 -04:00
* Package as an app? Native interfaces? HotCocoa?
2010-10-24 21:23:40 -04:00
## Thanks
2010-10-24 21:23:40 -04:00
MailCatcher is just a mishmash of other people's hard work. Thank you so much to the people who have built the wonderful guts on which this project relies.
## Copyright
Copyright (c) 2010 Samuel Cochran. See LICENSE for details.
2010-10-24 21:23:40 -04:00
## Dreams
2010-10-27 15:23:29 -04:00
For dream catching, try [this](http://goo.gl/kgbh).
[websockets]: http://www.whatwg.org/specs/web-socket-protocol/