izy-pop3 v2.1.21
izy-pop3
Node.js pop3 server components for Izyware
INSTALLATION
If you are using npm (the Node.js package manager) always ensure that your npm is up-to-date by running:
npm update -g npm
Then use:
npm install izy-pop3;cp -r node_modules/izy-pop3/* .;rm -rf node_modules/izy-pop3;
Command Line Usage
Server
node cli.js method serverpop3 port 1110 password 12345 mimestore.modhandler fake
node cli.js method serverpop3 port 1110 password 12345 mimestore.modhandler cloud mimestore.dataservice xxx mimestore.xxx ....
Notes about port forwarding
If you would like to run the server behind a firewall, you can use port forwarding:
ssh -i identity.pem -4 -v -R 1110:localhost:1110 user@your-server.com
Client
To connect using TLS, pass tls true as the config.
node cli.js method clientpop3 ip pop.secureserver.net port 995 user user@domain pass 'password' tls true verbose.clientLog cmd list
node cli.js method clientpop3 ip pop.secureserver.net port 995 user user@domain pass 'password' tls true mimestore.modhandler localfs mimestore.path /tmp/izyware/mimestore cmd retr query 1-10
Server Implementations Workarounds
Some POP3 server implementation do not strictly stick to the standard definition. To workaround those issues, the client uses a state machine to intelligently perform RETR commands.
Also note that the response to authentication requests from the server could take different forms. e.g. Gmail uses:
+OK Gpop ready for requests from <ip> <hash>\r\n
Secureserver.net however, will respond by:
+OK Fenix ready.\r\n
The general rule is that all responses from the server will start with one of the following:
+OK
-ERR
What is Included in the LIST command?
This behavior is server implementation dependent. For example, GMail will include the contents of the Sent folder and the archived items in LIST where as other providers (ie. Godaddy) may not do so.
Extra Authentication Steps
Also note that some providers (i.e. Gmail) would not allow authentication:
If you use Multifactor Authentication, try signing in with an App Password (https://support.google.com/accounts/answer/185833)
You might get the following error:
-ERR [AUTH] Username and password not accepted.
Note that to setup an app password you will have to re-enter your password and get MFA code to your device.
As an alternative you may just disable MFA for a short period of time while doing backups. Doing this will have GMail send a confirmation email:
2-Step Verification turned off
You recently turned off 2-Step Verification for your Google Account ...
Don't recognize this activity?
Review your recently used devices now.
Notice that no confirmation is sent to your MFA device when this gets turned off.
If you don't use Multifactor Authentication, you might need to allow less secure apps to access your account a
You might get the following error
-ERR [AUTH] Web login required: https://support.google.com/mail/answer/78754
and a follow up email gets sent:
Review blocked sign-in attempt
Hi xxx,
Google just blocked someone from signing into your Google Account xxx@gmail.com from an app that may put your account at risk.
Less secure app
xxxx
Don't recognize this activity?
If you didn't recently receive an error while trying to access a Google service, like Gmail, from a non-Google application, someone may have your password.
SECURE YOUR ACCOUNT
Are you the one who tried signing in?
Google will continue to block sign-in attempts from the app you're using because it has known security problems or is out of date. You can continue to use this app by allowing access to less secure apps, but this may leave your account vulnerable.
You should go to https://myaccount.google.com/lesssecureapps and allow access for this to work.
When you turn that on, you will also get an email:
Access for less secure apps has been turned on
Logging and TroubleShooting
The following verbose parameters can be passed in:
modtask.verbose = {
serverLog: false,
clientLog: false,
waitTime: false
};
So on the commandline, you may pass:
... verbose.clientLog true verbose.serverLog true
Encoding of the POP3 data
All the commands and metadata returned by the POP3 server are encoded using the ASCII character set.
It is worth remembering that the payload returned via the RETR command is binary buffer of octets.
This payload is passed on to the mime store handlers and it is up to the mime-store handler to serialize the data properly:
mimeStore.addItems({
...,
payload: 'Octet Buffer'
For example, when using the localfs
mimestore implemented in nodejs, you may pass the octet buffer directly to writeFile:
fs.writeFile(file, buffer, ...)
(The encoding option is ignored if data is a buffer. writeFile will only need encoding if the buffer is a string).
Since .eml files are serialized octets from a RFC822 encoded message, the approach shown above would work perfectly fine and should generate interoperable stores that would work with standard compliant tools from 3rd party vendors.
TIP
If you need to debug over SSL, use ncat --ssl. i.e.
ncat --ssl pop.secureserver.net 995
USER user
PASS pass
LIST
RETR 1
Querying the mime store
If you need to inspect the contents of the mime store you should install the IzyPop3 app via the enterprise accounts dashboard.
Testing
To make sure that the full stack (client, server, mime store) works, do:
node cli.js method test testtype fullclientserver
You can test subsystems (mimestore, etc.):
node cli.js method test testtype mimestore mimestore.modhandler fake query.limit 2 query.tags abc
node cli.js method test testtype mimestore mimestore.modhandler cloud mimestore.accesstoken xxxx mimestore.dataservice https://yourcloudlocation mimestore.verbose true mimestore.tablename yyy.xxx query.limit 2 query.tags abc
NOTE
for more details, visit https://izyware.com