InboxSync
Move messages from one inbox to another. Useful when server-side email forwarding is not an option. Can apply filters to messages as they are being moved. Run on-demand, on a schedule, or as a daemon.
Installation
Add this line to your application's Gemfile:
gem 'inbox-sync'
And then execute:
$ bundle
Or install it yourself as:
$ gem install inbox-sync
How does it work?
InboxSync uses IMAP to query a source inbox, process its messages, append them to a destination inbox, and archive them on the source. It logs each step in the process and will send notification emails when something goes wrong.
InboxSync provides a framework for defining destination filters for post-sync mail processing (ie moving/archiving, copying/labeling, deletion, etc).
InboxSync provides a basic ruby runner class to handle polling the source on an interval and running the configured sync(s). You can call it in any number of ways: in a script, from a cron, as a daemon, or as part of a larger system.
Usage
It should be fairly straight-forward: create and configure a sync then run it. This will move all messages in the source
inbox to the dest
inbox.
Create your Sync
sync = InboxSync.new
Configure it
# manually set configs
sync.config.source.host = 'imap.source-host.com'
# or use a more DSL like approach
sync.config.source.login.user 'me'
sync.config.source.login.pw 'secret'
# or use a configure block, if you like
sync.configure do
dest.host 'imap.dest-host.com'
dest.login 'me', 'secret'
end
Run it
InboxSync.run(sync, :interval => 5)
Sync Definition
source
IMAP settings for the source inbox.
- host: eg.
'imap.some-domain.com'
. - port: defaults to
143
. - ssl: whether to use SSL. defaults to
false
. - login: credentials (user, pw).
- inbox: name of the inbox folder. defaults to
'INBOX'
- expunge: whether to expunge the inbox before and after processing. defaults to
true
.
dest
IMAP settings for the destination inbox. Has the some attributes and defaults as the source
.
notify
SMTP settings to send notifications with.
- host: eg.
'smtp.some-domain.com'
. - port: defaults to
25
. - tls: whethe to use TLS encryption. defaults to
false
. - helo: the helo domain to send with.
- login: credentials (user, pw).
- authtype: defaults to
:login
. - from_addr: address to send the notifications from.
- to_addr: address(es) to send the notifications to.
archive_folder
The (optional) folder on the source to create and archive (move) source inbox messages to when processing is complete. Defaults to "Archived"
. Set to nil
to disable archiving on the source and delete the messages after processing.
logger
A logger to use. Defaults to ruby's Logger
on STDOUT
.
num_workers
This is the number of worker threads to sync mail items with. Each time a sync is run, the number of mail items that need to sync'd will be broken into num_workers
groups and each group will sync its mail items in its own thread. The default is 1
which means only 1 worker thread will be spawned and each message will be sync'd sequentially.
Running
InboxSync provides a Runner
class that will loop indefinitely, running syncs every :interval
seconds. Stick it in a daemon, a rake task, a CLI, or whatever depending on how you want to invoke it. Here is an example using it in a basic ruby script:
require 'inbox-sync'
sync = InboxSync.new.configure do
source.host 'imap.gmail.com'
source.port 993
source.ssl 'Yes'
source.login '[email protected]', 'joetest1'
dest.host 'imap.gmail.com'
dest.port 993
dest.ssl 'Yes'
dest.login '[email protected]', 'suetest1'
notify.host 'smtp.gmail.com'
notify.port 587
notify.tls 'Yes'
notify.helo 'gmail.com'
notify.login '[email protected]', 'joetest1'
notify.to_addr '[email protected]'
notify.to_addr '[email protected]'
logger Logger.new('log/inbox-sync.log')
end
InboxSync.run(sync, :interval => 20)
The InboxSync.run
method is just a macro for creating a runner and calling its start
method.
InboxSync::Runner.new(sync, :interval => 5).start
By default, it will log to STDOUT
but accepts a :logger
option to override this.
InboxSync.run(sync, {
:interval => 5,
:logger => Logger.new('/path/to/log.log')
})
You can pass any number of syncs to run. Each :interval
period, it will run them sequentially:
InboxSync.run(sync1, sync2, sync3, :interval => 5)
If you pass no :interval
option (or pass a negative value for it), the runner will run the sync(s) once and then exit instead of running the syncs indefinitely on the interval.
InboxSync.run(sync)
The runner traps SIGINT
and SIGQUIT
and will shutdown nicely once any in-progress syncs have finished.
Filter Framework
You can configure filters for your syncs. Filters are applied to destination messages after they have been appended to the inbox.
sync = InboxSync.new.configure do
# conditions to match on
filter(:subject => contains('hi there')) do
# actions to perform
copy_to 'Some-Folder'
end
end
Conditions
The first step in defining a filter is specifying the match conditions. You can filter on any attribute of the message (Mail::Message
). The filter conditions are specified as a hash, where the keys are the attributes to match on and the values are what to match with.
The default comparison is equals (==
). You have a few helpers for other comparisons at your disposal as well:
contains
: converts to/.*#{value}.*/
and matches. aliased aslike
andincludes
.starts_with
: converts your value to/\A#{value}.*/
and matches. aliased assw
.ends_with
: converts your value to/.*#{value}\Z/
and matches. aliased asew
.- pass a custom regex: it will be matched
sync = InboxSync.new.configure do
filter(:subject => 'hi there you') { ... }
filter(:subject => contains('there')) { ... }
filter(:subject => starts_with('hi') { ... }
filter(:subject => ends_with('you')) { ... }
filter(:subject => /\Ahi\s+.+\s+you\Z/ { ... }
end
Actions
The second step in defining a filter is what to do with a message if it matches. InboxSync provides a set of actions that can be performed on a message.
copy_to
: copies the message to a given folder. will create the folder if necessary. aliased aslabel
.move_to
: moves the message to a given folder. will create the folder if necessary. aliased asarchive_to
.mark_read
: marks the message as read (flag :Seen)delete
: deletes the message (flag :Deleted)flag
: apply a custom flag
Actions are specified using a block. If a message matches the filter conditions, the filters actions will be applied to the message on the destination. In the case multiplie filters match the message, actions are aggregated and applied once after all filters have been processed.
sync = InboxSync.new.configure do
filter(...) { copy_to 'Something' }
filter(...) { move_to 'Somewhere' }
filter(...) { mark_read; archive }
end
Actions are applied according to precedence rules. They go something like this:
- flags first - they will carry over as messages are copied/moved.
- copies/moves next - moves are just a macro for copy-then-delete
This order ensures the message is available for all actions needed.
Error Handling
InboxSync generates detailed logs of both running its syncs and processing sync mail items. If a mail fails to append (ie rejected by the dest IMAP), InboxSync will attempt to strip the mail to its most basic (ie plain/text) form and will retry the append.
In addtion, InboxSync will notify via email when something goes wrong with a sync. You configure notify
settings when defining your syncs. These settings determine where/how notifications are sent out. There are two types a notifications InboxSync will send: RunSyncError
and SyncMailItemError
.
In any case, if an archive_folder
is set, no source messages will be permanently deleted and are always available there for reference.
RunSyncError
notification
This notification is sent when there is a problem running a sync in general. For example, the sync can't connect to the source to read its mail items or the runner itself has a runtime exception. This notification lets you know that something went wrong and that mail items aren't being sync'd. It also details the exception that happened with a full backtrace.
SyncMailItemError
notification
This notification is sent wnen there is a problem syncing a specific mail item. For example the destination rejects the append or there was a problem archiving the mail item at the source. It lets you know there was a problem and gives you some info about the email that had a problem. It also details the exception that happened with a full backtrace.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request