add face header option

This commit is contained in:
s2
2018-05-09 15:31:07 +02:00
parent 59bd254a85
commit f963a7cbb3

View File

@@ -650,6 +650,12 @@ NNTP.prototype.post = function(msg, cb) {
text += CRLF; text += CRLF;
} }
if (msg.face) {
text += 'Face: ';
text += msg.face;
text += CRLF;
}
text += 'Content-Type: text/plain; charset=utf-8'; text += 'Content-Type: text/plain; charset=utf-8';
text += CRLF; text += CRLF;