Added migration to correct send_no_auto_response_reg_exp value. It's already changed in db/seeds/settings.rb
This commit is contained in:
parent
14d4b90f72
commit
88feeb38ba
1 changed files with 12 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
class SettingSendNoAutoResponseRegExp < ActiveRecord::Migration[5.0]
|
||||
def up
|
||||
|
||||
# return if it's a new setup
|
||||
return if !Setting.find_by(name: 'system_init_done')
|
||||
|
||||
# improved domain name matching
|
||||
return if !Setting.find_by(name: 'send_no_auto_response_reg_exp')
|
||||
Setting.set('send_no_auto_response_reg_exp', '(mailer-daemon|postmaster|abuse|root|noreply|noreply.+?|no-reply|no-reply.+?)@.+?')
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in a new issue