aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailbox/lib
Commit message (Collapse)AuthorAgeFilesLines
* Delegate to the correct method in `ActionMailbox.mailbox_for`James Dabbs2019-05-051-1/+1
|
* Expose `mailbox_for` methodJames Dabbs2019-05-042-5/+9
| | | | | | | Currently, the only exposed entry point into the ApplicationMailbox's configured routing system is to call `route`, which performs a lot of work to fully `process` inbound email. It'd be nice to have a way (e.g. in test) of checking which mailbox an email would route to without necessarily processing it yet.
* Start Rails 6.1 developmentRafael Mendonça França2019-04-241-2/+2
|
* Remove the Amazon SES ingressGeorge Claghorn2019-04-142-11/+2
| | | It's unusable and not ready to ship in Rails 6.0. We'll rewrite it for 6.1.
* FIX: ActionMailbox test helper argument listKyle Zhao2019-04-091-6/+6
| | | | | | | | | | | | | | | | | `receive_inbound_email_from_source` should accept an argument list (`*args`) instead, to allow for the `source` argument in `create_inbound_email_from_source`. ```ruby receive_inbound_email_from_source(source, status: :processing) ``` Accepting a keyword argument list (`**kwargs`) results in an `ArgumentError` ```text ArgumentError: wrong number of arguments (given 1, expected 0) ```
* Prep releaseeileencodes2019-03-111-1/+1
| | | | | | | * Update RAILS_VERSION * Bundle * rake update_versions * rake changelog:header
* Preparing for 6.0.0.beta2 releaseRafael Mendonça França2019-02-251-1/+1
|
* Fix preparing the configured Action Mailbox ingress in productionGeorge Claghorn2019-02-181-6/+4
| | | | When reloading is disabled, after_initialize hooks run after to_prepare hooks have already run for the last time. Since to_prepare hooks always run after application initializers, we don't need need to use an after_initialize hook.
* Allow skipping incineration of processed emailsPratik2019-02-062-0/+3
|
* Preparing for 6.0.0.beta1 releaseRafael Mendonça França2019-01-181-1/+1
|
* Fix document formatting on ActionMailbox [ci skip]colorbox2019-01-174-20/+20
| | | | Use `+` instead of backquote.
* Add Exim and Qmail support to Action MailboxGeorge Claghorn2019-01-122-15/+71
|
* Exclude ActionMailbox::Base#perform_processing and #finished_processing? ↵George Claghorn2019-01-011-2/+2
| | | | from API docs
* Document ActionMailbox::Base#bounce_with [ci skip]George Claghorn2019-01-011-0/+1
|
* Add load hook for ActionMailbox::TestCaseGeorge Claghorn2018-12-311-0/+2
|
* Add load hook for ActionMailbox::BaseGeorge Claghorn2018-12-311-0/+2
|
* Require railties for all Action Mailbox dependenciesGeorge Claghorn2018-12-281-1/+6
|
* Remove frozen_string_literal pragma from Action Mailbox templatesGeorge Claghorn2018-12-282-4/+0
|
* Add missing quotes on Mailbox test templateyuuji.yaginuma2018-12-281-1/+1
|
* Nest ActionMailbox::Base in the API docs (missed in 6c168aa)George Claghorn2018-12-261-93/+95
|
* Nest Action Mailbox classes in the API docsGeorge Claghorn2018-12-266-84/+96
|
* Import Action MailboxGeorge Claghorn2018-12-2527-0/+653