2020-07-21 06:45:24 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: channel_email
|
|
|
|
#
|
2021-11-19 06:22:27 +00:00
|
|
|
# id :bigint not null, primary key
|
|
|
|
# email :string not null
|
|
|
|
# forward_to_email :string not null
|
|
|
|
# imap_address :string default("")
|
|
|
|
# imap_enable_ssl :boolean default(TRUE)
|
|
|
|
# imap_enabled :boolean default(FALSE)
|
|
|
|
# imap_inbox_synced_at :datetime
|
2022-04-11 14:07:20 +00:00
|
|
|
# imap_login :string default("")
|
2021-11-19 06:22:27 +00:00
|
|
|
# imap_password :string default("")
|
|
|
|
# imap_port :integer default(0)
|
|
|
|
# smtp_address :string default("")
|
|
|
|
# smtp_authentication :string default("login")
|
|
|
|
# smtp_domain :string default("")
|
2022-02-08 11:26:13 +00:00
|
|
|
# smtp_enable_ssl_tls :boolean default(FALSE)
|
2021-11-19 06:22:27 +00:00
|
|
|
# smtp_enable_starttls_auto :boolean default(TRUE)
|
|
|
|
# smtp_enabled :boolean default(FALSE)
|
2022-04-11 14:07:20 +00:00
|
|
|
# smtp_login :string default("")
|
2022-02-08 11:26:13 +00:00
|
|
|
# smtp_openssl_verify_mode :string default("none")
|
2021-11-19 06:22:27 +00:00
|
|
|
# smtp_password :string default("")
|
|
|
|
# smtp_port :integer default(0)
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# account_id :integer not null
|
2020-07-21 06:45:24 +00:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2021-03-04 08:29:59 +00:00
|
|
|
# index_channel_email_on_email (email) UNIQUE
|
|
|
|
# index_channel_email_on_forward_to_email (forward_to_email) UNIQUE
|
2020-07-21 06:45:24 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
class Channel::Email < ApplicationRecord
|
2021-09-10 20:01:17 +00:00
|
|
|
include Channelable
|
2022-03-22 06:44:17 +00:00
|
|
|
include Reauthorizable
|
2021-09-10 20:01:17 +00:00
|
|
|
|
2022-05-26 14:53:00 +00:00
|
|
|
AUTHORIZATION_ERROR_THRESHOLD = 10
|
|
|
|
|
2020-07-21 06:45:24 +00:00
|
|
|
self.table_name = 'channel_email'
|
2022-04-11 14:07:20 +00:00
|
|
|
EDITABLE_ATTRS = [:email, :imap_enabled, :imap_login, :imap_password, :imap_address, :imap_port, :imap_enable_ssl, :imap_inbox_synced_at,
|
|
|
|
:smtp_enabled, :smtp_login, :smtp_password, :smtp_address, :smtp_port, :smtp_domain, :smtp_enable_starttls_auto,
|
2022-04-11 10:13:05 +00:00
|
|
|
:smtp_enable_ssl_tls, :smtp_openssl_verify_mode, :smtp_authentication].freeze
|
2020-07-21 06:45:24 +00:00
|
|
|
|
|
|
|
validates :email, uniqueness: true
|
2021-03-04 08:29:59 +00:00
|
|
|
validates :forward_to_email, uniqueness: true
|
2020-07-21 06:45:24 +00:00
|
|
|
|
2021-03-04 08:29:59 +00:00
|
|
|
before_validation :ensure_forward_to_email, on: :create
|
2020-07-21 06:45:24 +00:00
|
|
|
|
2020-09-04 13:43:47 +00:00
|
|
|
def name
|
|
|
|
'Email'
|
|
|
|
end
|
|
|
|
|
2020-07-21 06:45:24 +00:00
|
|
|
private
|
|
|
|
|
2021-03-04 08:29:59 +00:00
|
|
|
def ensure_forward_to_email
|
|
|
|
self.forward_to_email ||= "#{SecureRandom.hex}@#{account.inbound_email_domain}"
|
2020-07-21 06:45:24 +00:00
|
|
|
end
|
|
|
|
end
|