aicone
aicone
DDeno
Created by aicone on 3/19/2025 in #help
Deno.connect failed to read all bytes when connected to smtp #help
Done added as issues in GitHub, That happens as well as when sending with "EHLO...."
6 replies
DDeno
Created by aicone on 3/19/2025 in #help
Deno.connect failed to read all bytes when connected to smtp #help
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);
6 replies
DDeno
Created by aicone on 3/19/2025 in #help
Deno.connect failed to read all bytes when connected to smtp #help
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)); }
6 replies