├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── lib └── smtp-connection.js ├── package.json └── test └── smtp-connection-test.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "nodemailer" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | examples 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/README.md -------------------------------------------------------------------------------- /lib/smtp-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/lib/smtp-connection.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/package.json -------------------------------------------------------------------------------- /test/smtp-connection-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodemailer/smtp-connection/HEAD/test/smtp-connection-test.js --------------------------------------------------------------------------------