-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
complete mailer environement settings
- Loading branch information
ismail Akbudak
committed
Jun 21, 2016
1 parent
9e27376
commit ef5bf14
Showing
4 changed files
with
39 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
root_path: <%= ENV['ROOT_PATH'] %> | ||
|
||
smtp: | ||
address: <%= ENV['SMTP_ADDRESS'] %> | ||
port: 587 | ||
enable_starttls_auto: true | ||
user_name: <%= ENV['SMTP_USER_NAME'] %> | ||
password: <%= ENV['SMTP_PASSWORD'] %> | ||
authentication: 'plain' | ||
AWS: | ||
S3: | ||
bucket: <%= ENV['S3_BUCKET_NAME'] %> | ||
access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %> | ||
secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %> | ||
aws_url: http://<%= ENV['AWS_RAW_URL'] %> | ||
aws_raw_url: <%= ENV['AWS_RAW_URL'] %> | ||
# Bucket region should be ireland for this setting | ||
end_point: s3-eu-west-1.amazonaws.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +0,0 @@ | ||
smtp: | ||
mandrill: | ||
address: 'smtp.mandrillapp.com' | ||
port: 587 | ||
enable_starttls_auto: true | ||
user_name: '[email protected]' | ||
password: 'password' | ||
authentication: 'plain' | ||
|
||
AWS: | ||
S3: | ||
bucket: projectname-production | ||
access_key_id: XXXXXXXXXXXXXXXX | ||
secret_access_key: YYYYYYYYYYYYYYYYYY | ||
aws_url: http://projectname-production.s3.amazonaws.com/ | ||
aws_raw_url: projectname-production.s3.amazonaws.com | ||
end_point: s3-eu-west-1.amazonaws.com | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +0,0 @@ | ||
smtp: | ||
mandrill: | ||
address: 'smtp.mandrillapp.com' | ||
port: 587 | ||
enable_starttls_auto: true | ||
user_name: '[email protected]' | ||
password: 'password' | ||
authentication: 'plain' | ||
|
||
AWS: | ||
S3: | ||
bucket: projectname-production | ||
access_key_id: XXXXXXXXXXXXXXXX | ||
secret_access_key: YYYYYYYYYYYYYYYYYY | ||
aws_url: http://projectname-production.s3.amazonaws.com/ | ||
aws_raw_url: projectname-production.s3.amazonaws.com | ||
end_point: s3-eu-west-1.amazonaws.com | ||