Follow up b930827b77 - Fixes #3240 - Fixed key for microsoft migration.

This commit is contained in:
Rolf Schmidt 2022-03-28 15:14:52 +02:00
parent 909715136e
commit 9e1581d9b6

View file

@ -91,7 +91,7 @@ class ExternalCredential::Microsoft365
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(: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