aicone
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)); }
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