Skip to content
Snippets Groups Projects
Commit 97dacfdc authored by rswindell's avatar rswindell
Browse files

Bug-fix: don't report an undefined message header reply-id as "undefined" in

the OVER/XOVER response (use a blank/empty field instead).
parent 0994f10a
Branches
Tags
No related merge requests found
......@@ -400,9 +400,9 @@ while(client.socket.is_connected && !quit) {
,hdr.subject
,hdr.from
,hdr.date
,hdr.id // message-id
,hdr.reply_id // references
,hdr.data_length // byte count
,hdr.id // message-id
,hdr.reply_id ? hdr.reply_id : '' // references
,hdr.data_length // byte count
,Math.round(hdr.data_length/79)+1 // line count
,xref(hdr)
));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment