2016-11-25 16:57:20 +00:00
|
|
|
# frozen_string_literal: true
|
2016-11-01 03:18:27 +00:00
|
|
|
Mailboxer.setup do |config|
|
2016-11-25 16:57:20 +00:00
|
|
|
# Configures if your application uses or not email sending for Notifications and Messages
|
2016-11-01 03:18:27 +00:00
|
|
|
config.uses_emails = true
|
|
|
|
|
2016-11-25 16:57:20 +00:00
|
|
|
# Configures the default from for emails sent for Messages and Notifications
|
|
|
|
config.default_from = 'no-reply@metamaps.cc'
|
2016-11-01 03:18:27 +00:00
|
|
|
|
2016-11-25 16:57:20 +00:00
|
|
|
# Configures the methods needed by mailboxer
|
2016-11-01 03:18:27 +00:00
|
|
|
config.email_method = :mailboxer_email
|
|
|
|
config.name_method = :name
|
|
|
|
|
2016-11-25 16:57:20 +00:00
|
|
|
# Configures if you use or not a search engine and which one you are using
|
|
|
|
# Supported engines: [:solr,:sphinx]
|
2016-11-01 03:18:27 +00:00
|
|
|
config.search_enabled = false
|
|
|
|
config.search_engine = :solr
|
|
|
|
|
2016-11-25 16:57:20 +00:00
|
|
|
# Configures maximum length of the message subject and body
|
2016-11-01 03:18:27 +00:00
|
|
|
config.subject_max_length = 255
|
2016-11-25 16:57:20 +00:00
|
|
|
config.body_max_length = 32_000
|
2016-11-01 03:18:27 +00:00
|
|
|
end
|