2021-06-04 12:05:47 -04:00
|
|
|
* Add `attachments` to the list of permitted parameters for inbound emails conductor.
|
|
|
|
|
|
|
|
When using the conductor to test inbound emails with attachments, this prevents an
|
|
|
|
unpermitted parameter warning in default configurations, and prevents errors for
|
|
|
|
applications that set:
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
config.action_controller.action_on_unpermitted_parameters = :raise
|
|
|
|
```
|
|
|
|
|
|
|
|
*David Jones*, *Dana Henke*
|
|
|
|
|
2021-06-28 20:02:23 -04:00
|
|
|
* Add ability to configure ActiveStorage service
|
|
|
|
for storing email raw source.
|
|
|
|
|
|
|
|
```yml
|
|
|
|
# config/storage.yml
|
|
|
|
incoming_emails:
|
|
|
|
service: Disk
|
|
|
|
root: /secure/dir/for/emails/only
|
|
|
|
```
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
config.action_mailbox.storage_service = :incoming_emails
|
|
|
|
```
|
|
|
|
|
|
|
|
*Yurii Rashkovskii*
|
|
|
|
|
2021-06-19 14:59:59 -04:00
|
|
|
* Add ability to incinerate an inbound message through the conductor interface.
|
2020-11-02 16:12:47 -05:00
|
|
|
|
2021-06-19 14:59:59 -04:00
|
|
|
*Santiago Bartesaghi*
|
2020-07-21 19:38:38 -04:00
|
|
|
|
2021-03-22 05:25:49 -04:00
|
|
|
* OpenSSL constants are now used for Digest computations.
|
|
|
|
|
|
|
|
*Dirkjan Bussink*
|
2020-07-21 19:38:38 -04:00
|
|
|
|
2021-07-20 21:08:08 -04:00
|
|
|
|
2020-12-02 18:37:26 -05:00
|
|
|
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/actionmailbox/CHANGELOG.md) for previous changes.
|