about summary refs log tree commit diff stats
path: root/config/mail.yml
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 13:31:31 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 13:31:31 -0500
commitb5afc0cf9db8d50d1d95fc2c2fe8b451f8825b46 (patch)
tree95ea3dfc7d0aa75be20f4e6f7cfe099b96805c21 /config/mail.yml
parenteb41f85dd46b4d224aa3f3bc2c05d577ac50625f (diff)
downloadthoughts-b5afc0cf9db8d50d1d95fc2c2fe8b451f8825b46.tar.gz
thoughts-b5afc0cf9db8d50d1d95fc2c2fe8b451f8825b46.tar.bz2
thoughts-b5afc0cf9db8d50d1d95fc2c2fe8b451f8825b46.zip
Moved secret base, Akismet, Sendgrid, and database keys into credentials
Diffstat (limited to 'config/mail.yml')
-rw-r--r--config/mail.yml12
1 files changed, 6 insertions, 6 deletions
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 @@
1production: 1production:
2 smtp_settings: 2 smtp_settings:
3 address: "" 3 address: "smtp.sendgrid.com"
4 port: 25 4 port: 587
5 user_name: "" 5 user_name: "apikey"
6 password: "" 6 password: <%= Rails.application.credentials.sendgrid_api_key %>
7 authentication: "" 7 authentication: "plain"
8 openssl_verify_mode: "" 8 openssl_verify_mode: "none"