aicone
aicone3w ago

Deno.connect failed to read all bytes when connected to smtp #help

After sending "HELLO EXAMPLE.COM" It should receive many lines of text i.e 250 first string 250 second string The reader only returns the first string. Can anyone solve the problem?
4 Replies
iuioiua
iuioiua3w ago
Please provide a code snippet.
aicone
aiconeOP3w ago
async function send_response(conn, command) { await sendCommand(conn, command) const reader = conn.readable.getReader();// FIXME
const { value, done } = await reader.read(); const response = decoder.decode(value, { stream: true }); reader.releaseLock(); return response; } // Function to send a command to the server async function sendCommand(conn, command) { await conn.write(encoder.encode(command)); } const conn = await Deno.connect({ hostname: SMTP_SERVER, port: SMTP_PORT, tcp: 'tcp' }); const response = await send_response(conn, HELO mail.example.com\r\n);
marvinh.
marvinh.3w ago
This sounds like a bug. Can you file an issue with the steps how to reproduce it here https://github.com/denoland/deno/issues ?
aicone
aiconeOP3w ago
Done added as issues in GitHub, That happens as well as when sending with "EHLO...."

Did you find this page helpful?