aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/nodemailer/lib/wellknown.js
diff options
context:
space:
mode:
authorCliff Brake <cbrake@bec-systems.com>2012-08-17 13:43:14 -0400
committerCliff Brake <cbrake@bec-systems.com>2012-08-17 13:43:14 -0400
commita94e78479793722bc97b8771158d1acee3f55413 (patch)
treebf8f79959febb472513b299df99774de524f5fd1 /tools/node_modules/nodemailer/lib/wellknown.js
parentc11f922b0bfa023a4cf49f26e55aec6a1413344b (diff)
downloadopenembedded-admin-a94e78479793722bc97b8771158d1acee3f55413.tar.gz
add node modules to git
This is now the best practice for deployed apps
Diffstat (limited to 'tools/node_modules/nodemailer/lib/wellknown.js')
-rw-r--r--tools/node_modules/nodemailer/lib/wellknown.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/tools/node_modules/nodemailer/lib/wellknown.js b/tools/node_modules/nodemailer/lib/wellknown.js
new file mode 100644
index 0000000..72a4e62
--- /dev/null
+++ b/tools/node_modules/nodemailer/lib/wellknown.js
@@ -0,0 +1,58 @@
+/*
+ * This is a collection of well known SMTP service providers
+ */
+
+module.exports = {
+ "Gmail":{
+ host: "smtp.gmail.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "Yahoo":{
+ host: "smtp.mail.yahoo.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "Hotmail":{
+ host: "smtp.live.com",
+ port: 587,
+ requiresAuth: true
+ },
+ "hot.ee":{
+ host: "mail.hot.ee",
+ requiresAuth: true
+ },
+ "mail.ee":{
+ host: "smtp.mail.ee",
+ requiresAuth: true
+ },
+ "SES":{
+ host: "email-smtp.us-east-1.amazonaws.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "Zoho":{
+ host: "smtp.zoho.com",
+ secureConnection: true,
+ port: 465,
+ requiresAuth: true
+ },
+ "iCloud":{
+ host:"smtp.mail.me.com",
+ port: 587,
+ requiresAuth: true
+ },
+ "SendGrid":{
+ host: "smtp.sendgrid.net",
+ port: 587,
+ requiresAuth: true
+ },
+ "Postmark":{
+ host: "smtp.postmarkapp.com",
+ port: 25,
+ requiresAuth: true
+ }
+}; \ No newline at end of file