Go to file
Samuel Cochran 76cef09b4e Expand path on sinatra root 2012-10-29 10:36:36 +08:00
bin Add catchmail support for `-f FROM` a la sendmail 2012-01-23 15:30:03 +08:00
examples Discard periods prefixing SMTP data per RFC 821 4.5.2 2012-07-18 11:27:27 +08:00
lib Expand path on sinatra root 2012-10-29 10:36:36 +08:00
public WebKit's fussy about WebSocket protocols now 2012-07-17 23:03:20 +08:00
views Add keyboard navigation 2012-04-19 18:26:40 +03:00
.gitignore Ignore SASS cache. 2011-06-03 09:47:39 +08:00
Gemfile Update gems, remove deprecated guard-ego 2012-03-22 11:43:47 +08:00
Gemfile.lock Version v0.5.10 2012-09-30 18:43:35 +08:00
Guardfile Update gems, remove deprecated guard-ego 2012-03-22 11:43:47 +08:00
LICENSE Update LICENSE year 2011-05-31 06:48:57 -07:00
README.md Add keyboard navigation 2012-04-19 18:26:40 +03:00
Rakefile Use `doc` as rdoc task and directory 2012-07-25 12:05:07 +08:00
mailcatcher.gemspec Bump dependencies 2012-09-30 18:43:25 +08:00

README.md

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

Features

  • Catches all mail and stores it for display.
  • Shows HTML, Plain Text and Source version of messages, as applicable.
  • 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.
  • 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, otherwise updates every thirty seconds.
  • Growl notifications when you receive a new message.
  • Runs as a daemon run in the background.
  • Sendmail-analogue command, catchmail, makes using mailcatcher from PHP a lot easier.
  • Written super-simply in EventMachine, easy to dig in and change.
  • Keyboard navigation between messages

How

  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.

RVM

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 in your php.ini to send via MailCatcher with:

sendmail_path = /usr/bin/env catchmail

You can do this in an Apache htaccess file 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

  • 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.
  • The interface is very basic and has not been tested on many browsers yet.

TODO

  • Add mail delivery on request, optionally multiple times.
  • Better Growl support in MacRuby and RubyCocoa with click notifications which takes you to the received message.
  • An API-compatible nodejs version, for fun and profit (and non-ruby npm users).
  • Test suite.
  • Compatibility testing against CampaignMonitor's design guidelines and CSS support matrix.
  • Forward mail to rendering service, maybe CampaignMonitor?
  • Package as an app? Native interfaces? HotCocoa?

Thanks

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 for giving me the idea, being great guinea pigs and letting me steal pieces of time to keep the project alive.

Donations

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. If you'd like a specific feature added to MailCatcher and are willing to pay for it, please email me.

License

Copyright © 2010-2011 Samuel Cochran (sj26@sj26.com). Released under the MIT License, see LICENSE for details.

Dreams

For dream catching, try this. OR THIS, OMG.