From 11a5b5842db8c822681131e589b43a9146c95065 Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Sat, 31 Jan 2026 11:39:30 +0200 Subject: [PATCH] starttls label --- app/views/email_smtp_settings/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/email_smtp_settings/index.html.erb b/app/views/email_smtp_settings/index.html.erb index 76733144..7e556a47 100644 --- a/app/views/email_smtp_settings/index.html.erb +++ b/app/views/email_smtp_settings/index.html.erb @@ -39,7 +39,7 @@
<%= ff.label :security_label, 'SMTP Security', class: 'label' %>
- <% [%w[Auto none], %w[SSL ssl], %w[TLS tls], %w[Noverify noverify]].each do |(label, val)| %> + <% [%w[STARTTLS none], %w[TLS tls], %w[SSL ssl], %w[Noverify noverify]].each do |(label, val)| %> <%= ff.label :security, value: val, for: "#{val}_radio", class: 'label' do %> <%= ff.radio_button :security, val, checked: (value['security'].blank? && val == 'none') || value['security'] == val, id: "#{val}_radio", class: 'base-radio mr-2' %> <%= label %>