mailcatcher/README.md

105 lines
5.6 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.
2012-01-02 07:31:09 -05:00
![MailCatcher screenshot](http://f.cl.ly/items/3w2T1p0F3g003b2i1F2z/Screen%20shot%202011-06-23%20at%2011.39.03%20PM.png)
2011-05-19 10:33:26 -04:00
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.
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)
* Can send HTML for analysis by [Fractal][fractal].
2010-10-24 21:23:40 -04:00
* Lists attachments and allows separate downloading of parts.
* Download original email to view in your native mail client(s).
* Command line options to override the default SMTP/HTTP IP and port settings.
* Mail appears instantly if your browser supports [WebSockets][websockets], otherwise updates every thirty seconds.
2011-06-09 23:21:39 -04:00
* Growl notifications when you receive a new message.
2011-05-31 13:38:19 -04:00
* Runs as a daemon run in the background.
* Sendmail-analogue command, `catchmail`, makes [using mailcatcher from PHP][withphp] a lot easier.
* Written super-simply in EventMachine, easy to dig in and change.
2012-04-19 11:26:40 -04:00
* Keyboard navigation between messages
2010-10-24 21:23:40 -04:00
## How
2010-10-24 21:23:40 -04:00
1. `gem install mailcatcher`
2. `mailcatcher`
3. Go to http://localhost:1080/
4. Send mail through smtp://localhost:1025
The brave can get the source from [the GitHub repository][mailcatcher-github].
2010-10-24 21:23:40 -04:00
### RVM
2012-01-16 15:02:19 -05:00
Under RVM your mailcatcher command may only be 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
### Rails
To set up your rails app, I recommend adding this to your `environment/development.rb`:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 }
### PHP
For projects using PHP, or PHP frameworks and application platforms like Drupal, you can set [PHP's mail configuration](http://www.php.net/manual/en/mail.configuration.php) in your [php.ini](http://www.php.net/manual/en/configuration.file.php) to send via MailCatcher with:
sendmail_path = /usr/bin/env catchmail
You can do this in an [Apache htaccess file](http://php.net/manual/en/configuration.changes.php) or general configuration like so:
php_value sendmail_path "/usr/bin/env catchmail"
If you've installed via RVM this probably won't work unless you've manually added your RVM bin paths to your system environment's PATH. In that case, run `which catchmail` and put that path into the `sendmail_path` directive above instead of `/usr/bin/env 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`.
## Caveats
2011-07-07 04:11:17 -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][mailcatcher-issues] and let me know. Include the whole message you're having problems with.
* The interface is very basic and has not been tested on many browsers yet.
2010-10-24 21:23:40 -04:00
## TODO
* Add mail delivery on request, optionally multiple times.
2011-06-09 23:24:08 -04:00
* Better Growl support in MacRuby and RubyCocoa with click notifications which takes you to the received message.
2011-06-09 23:22:19 -04:00
* An API-compatible nodejs version, for fun and profit (and non-ruby npm users).
2011-06-09 23:24:08 -04:00
* Test suite.
2011-06-09 23:22:19 -04:00
* Compatibility testing against CampaignMonitor's [design guidelines](http://www.campaignmonitor.com/design-guidelines/) and [CSS support matrix](http://www.campaignmonitor.com/design-guidelines/).
2010-10-24 21:23:40 -04:00
* 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.
Thanks also to [The Frontier Group][tfg] for giving me the idea, being great guinea pigs and letting me steal pieces of time to keep the project alive.
## Donations
2011-06-10 00:39:08 -04:00
I work on MailCatcher mostly in my own spare time. If you've found Mailcatcher useful and would like to help feed me and fund continued development and new features, please [donate via PayPal][donate]. If you'd like a specific feature added to MailCatcher and are willing to pay for it, please [email me](mailto:sj26@sj26.com).
## License
Copyright © 2010-2011 Samuel Cochran (sj26@sj26.com). Released under the MIT License, see [LICENSE][license] for details.
2010-10-24 21:23:40 -04:00
## Dreams
For dream catching, try [this](http://goo.gl/kgbh). OR [THIS](http://www.nyanicorn.com), OMG.
2010-10-27 15:23:29 -04:00
[donate]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=522WUPLRWUSKE
[fractal]: http://getfractal.com
[license]: https://github.com/sj26/mailcatcher/blob/master/LICENSE
[mailcatcher-github]: https://github.com/sj26/mailcatcher
2011-07-07 04:11:17 -04:00
[mailcatcher-issues]: https://github.com/sj26/mailcatcher/issues
[tfg]: http://www.thefrontiergroup.com.au
[websockets]: http://www.whatwg.org/specs/web-socket-protocol/
[withphp]: http://webschuur.com/publications/blogs/2011-05-29-catchmail_for_drupal_and_other_phpapplications_the_simple_version