Files
gochat/internal/model/channel/email.go.txt
T
2026-06-04 15:44:48 +08:00

35 lines
1.6 KiB
Plaintext

package channel
import (
"time"
"github.com/gochat/gochat/internal/model"
)
// ChannelEmail represents an email channel configuration.
// Reference: Chatwoot Channel::Email + P2B M2 spec
type ChannelEmail struct {
ID uint `gorm:"primaryKey" json:"id"`
InboxID uint `gorm:"uniqueIndex;not null" json:"inbox_id"`
IMAPEnabled bool `gorm:"default:false" json:"imap_enabled"`
IMAPEmail string `gorm:"size:255" json:"imap_email"`
IMAPPassword string `gorm:"size:255" json:"-"`
IMAPAddress string `gorm:"size:255" json:"imap_address"`
IMAPPort int `json:"imap_port"`
IMAPSSL bool `gorm:"default:false" json:"imap_ssl"`
SMTPEnabled bool `gorm:"default:false" json:"smtp_enabled"`
SMTPEmail string `gorm:"size:255" json:"smtp_email"`
SMTPPassword string `gorm:"size:255" json:"-"`
SMTPAddress string `gorm:"size:255" json:"smtp_address"`
SMTPPort int `json:"smtp_port"`
SMTPSSL bool `gorm:"default:false" json:"smtp_ssl"`
MailForwarding bool `gorm:"default:false" json:"mail_forwarding"`
CreatedAt time.Time `gorm:"autoCreateTime" json:"created_at"`
UpdatedAt time.Time `gorm:"autoUpdateTime" json:"updated_at"`
Inbox model.Inbox `gorm:"foreignKey:InboxID" json:"inbox,omitempty"`
}
func (ChannelEmail) TableName() string { return "channel_emails" }
func (c ChannelEmail) GetInboxID() uint { return c.InboxID }
func (c ChannelEmail) GetChannelType() model.InboxChannelType { return model.InboxChannelTypeEmail }