September 2010
1 post
Mailman 0.3.0 released
Mailman 0.3.0 has been released. There
are three new features:
CC condition
Messages can now be matched based on the CC header:
cc 'bob@example.com' do
# Process message
end
Class routing
You can now use instance methods as well as blocks to process
messages. This allows you to use a #receive method in a Rails mailers:
class Notifier < ActionMailer::Base
default :from =>...
July 2010
2 posts
Mailman Released!
I just released my Ruby Summer of Code project,
Mailman as a gem. You can install
it by running gem install mailman.
What is Mailman?
Mailman is an incoming email processing microframework. You point it at a
source of email, such as a POP3 account or a Maildir, and it will execute
routes based on the messages that come in.
For instance if you had a ticketing system, and wanted to add replies...
Mailman Midterm Update
Mailman is my Ruby
Summer of Code project. It’s an incoming email
processing microframework. The basic functionality is to receive
messages, and route them to blocks of code based on conditions.
Before Mailman, there was no standard way of processing incoming emails in
Ruby. Many Rails apps use one-off IMAP or POP3 pollers. Mailman aims to
replace them with its Rails integration, and...