Sha256: 72ec5ca6e596c5e40b5a5184882369141aee7c5e2f0e13bb6173dd11e77f6c14
Contents?: true
Size: 1.17 KB
Versions: 19
Compression:
Stored size: 1.17 KB
Contents
# Copyright © 2012 The Pennsylvania State University # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Mailboxer.setup do |config| #Configures if you applications uses or no the email sending for Notifications and Messages config.uses_emails = true #Configures the default from for the email sent for Messages and Notifications of Mailboxer config.default_from = "no-reply@mailboxer.com" #Configures the methods needed by mailboxer config.email_method = :mailboxer_email config.name_method = :name #Configures if you use or not a search engine and wich one are you using #Supported enignes: [:solr,:sphinx] config.search_enabled = false config.search_engine = :solr end
Version data entries
19 entries across 19 versions & 1 rubygems