Skip to content

Commit

Permalink
Merge pull request #157 from meteormatt/master
Browse files Browse the repository at this point in the history
Add QQ to well known services for SMTP
  • Loading branch information
andris9 committed May 22, 2013
2 parents 03e2d9b + 13c1434 commit d84c0d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules
npm-debug.log
.DS_Store
.idea
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -397,6 +397,7 @@ Currently supported services are:
* **Yahoo**
* **yandex**
* **Zoho**
* **QQ**

Predefined service data covers `host`, `port` and secure connection settings,
any other parameters (ie. `auth`) need to be set separately. Service names are
Expand Down
7 changes: 7 additions & 0 deletions lib/wellknown.js
Expand Up @@ -96,5 +96,12 @@ module.exports = {
host: "in.mailjet.com",
port: 587,
requiresAuth: true
},
"QQ":{
host: "smtp.qq.com",
secureConnection: true,
port: 465,
requiresAuth: true,
domains: ["qq.com"]
}
};

0 comments on commit d84c0d2

Please sign in to comment.