Project

General

Profile

Actions

Bug #2099

closed

Collection #2102: Bug fixing: WebDAV, mail, subscription period

Fix openssl_verify_mode data type

Added by liaham about 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Start date:
Due date:
% Done:

100%

Estimated time:
Affected Version:
Compatible Redmine Version:

Description

Current config:

# configuration.yml

    <% if ENV['EMAIL_OPENSSL_VERIFY_MODE'].present? %>
      openssl_verify_mode: :"<%= ENV['EMAIL_OPENSSL_VERIFY_MODE']&.to_sym %>" # <-- The colon needs to be removed!!!
    <% end %> 

Fixed config:

# configuration.yml

    <% if ENV['EMAIL_OPENSSL_VERIFY_MODE'].present? %>
      openssl_verify_mode: "<%= ENV['EMAIL_OPENSSL_VERIFY_MODE']&.to_sym %>" # <-- The colon is removed!!!
    <% end %> 
Actions

Also available in: Atom PDF