Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
510
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # Setting this to true enables diaspora's "send email" functionality
  2. # requiring meaningful smtp_* settings. These are options for RoR's
  3. # ActionMailer class.
  4. mailer_on: true
  5.  
  6. # Address/port to smtp server handing outgoing mail.
  7. smtp_address: 'smtp.marcbertram.eu'
  8. smtp_port: '587'
  9.  
  10. # Domain administered of smtp server.
  11. # smtp_domain: 'marcbertram.eu'
  12.  
  13. # Sender address in diaspora's outgoing mail.
  14. smtp_sender_address: 'diaspora@marcbertram.eu'
  15.  
  16. # Authentication required to send mail. One of "plain",
  17. # "login" or "cram-md5"
  18. smtp_authentication: 'plain'
  19.  
  20. # Credentails possibly required to log in to SMTP server if
  21. # smtp_authentication != 'plain'
  22. smtp_username: 'diaspora@marcbertram.eu'
  23. smtp_password: 'password'
  24.  
  25. smtp_enable_starttls_auto: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement