mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
c903dfe618
Permit attachments in inbound email conductor mail params
1 KiB
1 KiB
-
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:
config.action_controller.action_on_unpermitted_parameters = :raise
David Jones, Dana Henke
-
Add ability to configure ActiveStorage service for storing email raw source.
# config/storage.yml incoming_emails: service: Disk root: /secure/dir/for/emails/only
config.action_mailbox.storage_service = :incoming_emails
Yurii Rashkovskii
-
Add ability to incinerate an inbound message through the conductor interface.
Santiago Bartesaghi
-
OpenSSL constants are now used for Digest computations.
Dirkjan Bussink
Please check 6-1-stable for previous changes.