최신 업데이트 후 메일이 전송되지 않습니다

진단:

./launcher enter appopenssl s_client -connect smtp.beget.com:465 -servername smtp.beget.co

Rails에서 테스트:

./launcher enter app
rails c
ActionMailer::Base.smtp_settings = {
  address: 'smtp.beget.com',
  port: 465,
  user_name: 'admin@email.com',
  password: 'password',
  authentication: :login,
  ssl: true,
  tls: true,
  enable_starttls_auto: false,
  openssl_verify_mode: 'none'
}

# 테스트 발송
ActionMailer::Base.mail(
  from: 'admin@email.com',
  to: 'admin@email.com',
  subject: 'Test from Rails',
  body: 'Test message'
).deliver_now

이로 인해 명확한 오류 메시지가 표시됩니다