2021-06-29 08:02:23 +08: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-20 02:59:59 +08:00
|
|
|
* Add ability to incinerate an inbound message through the conductor interface.
|
2020-11-03 05:12:47 +08:00
|
|
|
|
2021-06-20 02:59:59 +08:00
|
|
|
*Santiago Bartesaghi*
|
2020-07-22 07:38:38 +08:00
|
|
|
|
2021-03-22 17:25:49 +08:00
|
|
|
* OpenSSL constants are now used for Digest computations.
|
|
|
|
|
|
|
|
*Dirkjan Bussink*
|
2020-07-22 07:38:38 +08:00
|
|
|
|
2021-07-21 09:08:08 +08:00
|
|
|
|
2020-12-03 07:37:26 +08:00
|
|
|
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/actionmailbox/CHANGELOG.md) for previous changes.
|