From d87730a09b920ffca9d275bbbb8853f4f6ea786b Mon Sep 17 00:00:00 2001 From: fullgream Date: Fri, 16 May 2025 02:47:34 +0300 Subject: [PATCH] test methods and fix inital JSON --- server.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 17709b9..79b2baf 100644 --- a/server.js +++ b/server.js @@ -6,7 +6,7 @@ const initalConfig = `{ "pop3-config": { "user": "example@example.com", "password": "example", - "host": "pop3.example.com", + "host": "pop3.example.com" } }`; @@ -32,5 +32,6 @@ class POP3 extends EventEmitter { const pop3 = new POP3(); let interval = setTimeout(async () => { - + const list = await pop3.pop3cmd.UIDL(); + console.dir(list); }, 1);