* Bump rubocop from 1.17.0 to 1.18.0 Bumps [rubocop](https://github.com/rubocop/rubocop) from 1.17.0 to 1.18.0. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.17.0...v1.18.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * yarn install * Fix violations * Restore the default aligned setting * Trigger Travis CI * Escape HTML Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: rhymes <github@rhymes.dev>
33 lines
1 KiB
Ruby
33 lines
1 KiB
Ruby
module Constants
|
|
module Settings
|
|
module SMTP
|
|
DETAILS = {
|
|
address: {
|
|
description: "Address of the remote mail server",
|
|
placeholder: "ie. smtp.gmail.com"
|
|
},
|
|
port: {
|
|
description: "The port that your mail server runs on",
|
|
placeholder: "25"
|
|
},
|
|
authentication: {
|
|
description: " If your mail server requires authentication, " \
|
|
"you need to specify the authentication type here",
|
|
placeholder: "ie. plain, login, or cram_md5"
|
|
},
|
|
user_name: {
|
|
description: "If your mail server requires authentication, copy the username from your server",
|
|
placeholder: ""
|
|
},
|
|
password: {
|
|
description: "If your mail server requires authentication, copy the password from your server",
|
|
placeholder: ""
|
|
},
|
|
domain: {
|
|
description: "If you need to specify a HELO domain, you can do it here",
|
|
placeholder: ""
|
|
}
|
|
}.freeze
|
|
end
|
|
end
|
|
end
|