Follow up b930827b77
- Fixes #3240 - Fixed key for microsoft migration.
This commit is contained in:
parent
909715136e
commit
9e1581d9b6
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ class ExternalCredential::Microsoft365
|
||||||
Channel.where(area: 'Email::Account').find_each do |channel|
|
Channel.where(area: 'Email::Account').find_each do |channel|
|
||||||
next if channel.options.dig(:inbound, :options, :host)&.downcase != 'outlook.office365.com'
|
next if channel.options.dig(:inbound, :options, :host)&.downcase != 'outlook.office365.com'
|
||||||
next if channel.options.dig(:outbound, :options, :host)&.downcase != 'smtp.office365.com'
|
next if channel.options.dig(:outbound, :options, :host)&.downcase != 'smtp.office365.com'
|
||||||
next if channel.options.dig(:outbound, :options, :user)&.downcase != user_data[:email].downcase && channel.options.dig(:outbound, :email)&.downcase != user_data[:email].downcase
|
next if channel.options.dig(:outbound, :options, :user)&.downcase != user_data[:preferred_username].downcase && channel.options.dig(:outbound, :email)&.downcase != user_data[:preferred_username].downcase
|
||||||
|
|
||||||
migrate_channel = channel
|
migrate_channel = channel
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue