ConfigMan/lib/configman/modules/email.rb

18 lines
370 B
Ruby
Raw Normal View History

2023-10-13 21:16:43 -06:00
# frozen_string_literal: true
module ConfigMan
module Modules
module Email
def self.populate_defaults
{
'smtp_server' => 'smtp.example.com',
'smtp_port' => 587,
'smtp_user' => 'user@example.com',
'smtp_password' => 'password_here',
'smtp_protocol' => 'SSL/TLS'
}
end
end
end
end