From b5afc0cf9db8d50d1d95fc2c2fe8b451f8825b46 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 7 Dec 2024 13:31:31 -0500 Subject: Moved secret base, Akismet, Sendgrid, and database keys into credentials --- config/mail.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'config/mail.yml') diff --git a/config/mail.yml b/config/mail.yml index 3c88234..e2d15c3 100644 --- a/config/mail.yml +++ b/config/mail.yml @@ -1,8 +1,8 @@ production: smtp_settings: - address: "" - port: 25 - user_name: "" - password: "" - authentication: "" - openssl_verify_mode: "" + address: "smtp.sendgrid.com" + port: 587 + user_name: "apikey" + password: <%= Rails.application.credentials.sendgrid_api_key %> + authentication: "plain" + openssl_verify_mode: "none" -- cgit 1.4.1