-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathdevelopment_pony_options.rb.sample
More file actions
30 lines (27 loc) · 1.02 KB
/
development_pony_options.rb.sample
File metadata and controls
30 lines (27 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Gmail options
Pony.options = {
:via => 'smtp',
:via_options => {
:address => 'smtp.gmail.com',
:port => '587',
:enable_starttls_auto => true,
:user_name => 'yourusername',
:password => 'yourpassword',
:authentication => :plain, # :plain, :login, :cram_md5, no auth by default
:domain => "localhost.localdomain" # the HELO domain provided by the client to the server
}
}
# Oxford Nexus email options
# Pony.options = {
# :via => 'smtp',
# :from => 'Your Name <your.name@college.ox.ac.uk>',
# :via_options => {
# :address => 'smtp.ox.ac.uk',
# :port => '587',
# :enable_starttls_auto => true,
# :user_name => 'xxxx1234',
# :password => 'password12345',
# :authentication => :plain, # :plain, :login, :cram_md5, no auth by default
# :domain => "localhost.localdomain" # the HELO domain provided by the client to the server
# }
# }