ditesh / node-poplib

POP3 client library for Node.js
MIT License
128 stars 44 forks source link

Some minor issues on documentation #11

Closed user1020 closed 10 years ago

user1020 commented 10 years ago

I love this module, it helped me in my project. Thanks Ditesh.

There are some minor issues on the documentation:

In the main page:

var POP3Client = require("node-poplib");

Should be

var POP3Client = require("poplib");

The following doesn't seem to work.

client.auth(username, password);

This line works

client.login(username, password);
ditesh commented 10 years ago

Thanks mate!