Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.35 KB | None | 0 0
  1. development: &development
  2.   email_address: 'John Deer <john.deer@example.com>'
  3.   smtp_settings:
  4.     :address: 'mailcatcher'
  5.     :domain: 'smtp.com'
  6.     :port: 1025
  7.     :user_name: ''
  8.     :password: ''
  9.     :authentication: 'plain'
  10.     :enable_starttls_auto: true
  11. test:
  12.   <<: *development
  13. staging:
  14.   <<: *development
  15. production:
  16.   <<: *development
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement