From d2cb9d6cfbe09b0f3026300019dde10c3a9177df Mon Sep 17 00:00:00 2001 From: Eric Oulashin <eric.oulashin@gmail.com> Date: Thu, 2 Mar 2023 16:57:12 -0800 Subject: [PATCH] DDMsgReader: Don't prepend "Fwd: " to forwarded messages --- xtrn/DDMsgReader/DDMsgReader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtrn/DDMsgReader/DDMsgReader.js b/xtrn/DDMsgReader/DDMsgReader.js index 949b50a07a..0d26084a17 100644 --- a/xtrn/DDMsgReader/DDMsgReader.js +++ b/xtrn/DDMsgReader/DDMsgReader.js @@ -14473,7 +14473,7 @@ function DigDistMsgReader_ForwardMessage(pMsgHdr, pMsgBody) // the message. The destination ("to" informatoin) will be filled in // according to the destination type. var destMsgHdr = { to_net_type: NET_NONE, from: user.name, - replyto: user.name, subject: "Fwd: " + msgSubject }; // pMsgHdr.subject + replyto: user.name, subject: msgSubject }; // pMsgHdr.subject if (user.netmail.length > 0) { destMsgHdr.replyto_net_addr = user.netmail; -- GitLab