├── .gitignore ├── .npmignore ├── CHANGELOG ├── LICENSE ├── README.md ├── demos ├── demo.js └── retrieve-all.js ├── main.js ├── package.json └── tests ├── apop.js ├── apop.sh ├── basic.js ├── basic.sh ├── login.js ├── login.sh ├── runner.sh ├── sasl.js ├── sasl.sh ├── sendmail.sh ├── stls.js ├── stls.sh ├── tls.js └── tls.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw? 2 | .lock-wscript 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/README.md -------------------------------------------------------------------------------- /demos/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/demos/demo.js -------------------------------------------------------------------------------- /demos/retrieve-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/demos/retrieve-all.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/package.json -------------------------------------------------------------------------------- /tests/apop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/apop.js -------------------------------------------------------------------------------- /tests/apop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/apop.sh -------------------------------------------------------------------------------- /tests/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/basic.js -------------------------------------------------------------------------------- /tests/basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/basic.sh -------------------------------------------------------------------------------- /tests/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/login.js -------------------------------------------------------------------------------- /tests/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/login.sh -------------------------------------------------------------------------------- /tests/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/runner.sh -------------------------------------------------------------------------------- /tests/sasl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/sasl.js -------------------------------------------------------------------------------- /tests/sasl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/sasl.sh -------------------------------------------------------------------------------- /tests/sendmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/sendmail.sh -------------------------------------------------------------------------------- /tests/stls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/stls.js -------------------------------------------------------------------------------- /tests/stls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/stls.sh -------------------------------------------------------------------------------- /tests/tls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/tls.js -------------------------------------------------------------------------------- /tests/tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ditesh/node-poplib/HEAD/tests/tls.sh --------------------------------------------------------------------------------