|
@@ -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
|
|
|
|