yapople
yapople copied to clipboard
Yet another POP3 email library
Hi, I want to user retr api and delete api. I have fetched all emails using retrieveAll, and sending the message_id of email to these apis. But both of them...
Hi! First of all I would like to thank you for this pretty good and simple LIB. I'm getting sometimes ECONNRESET exception due my poor network. And even if the...
Here's what I've got: ```ts import consola from 'consola' import { extract, LetterparserMail } from 'letterparser' import { Client, YapopleClientConfig } from 'yapople' const emailService = async (): Promise =>...
Hi, is there anyway to retrive the UIDL of each mail? Thank you!
`var client = new Client({ hostname: 'pop.mail.ru', port: 995, tls: true, mailparser: true, username: 'username', password: 'password' }); client.connect(function() { client.retrieveAll(function(err, messages) { messages.forEach(function(message) { console.log(message.subject); }); client.quit(); }) })`...
There seems to be an `EventEmitter` leak in the client code. If an error is thrown when logging in for example, things don't get cleaned up correctly. I could be...