From 478d85d20f6b70d1bb05436262850e76d4d9e8e0 Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Windows 11)" <rob@synchro.net>
Date: Sat, 16 Mar 2024 20:03:46 -0700
Subject: [PATCH] Add "MSGID" to QWK DOOR.ID file

This is a "newer" QWK control message supported by Synchronet (for like 20
years now), so it's been missing from the DOOR.ID file all this time and no
one noticed. <shrug>
---
 src/sbbs3/pack_qwk.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/sbbs3/pack_qwk.cpp b/src/sbbs3/pack_qwk.cpp
index 423a8e2c3b..bdd5aef0e8 100644
--- a/src/sbbs3/pack_qwk.cpp
+++ b/src/sbbs3/pack_qwk.cpp
@@ -189,6 +189,7 @@ bool sbbs_t::pack_qwk(char *packet, uint *msgcnt, bool prepack)
 			"%sNDX\r\n"
 			"%sTZ\r\n"
 			"%sVIA\r\n"
+			"%sMSGID\r\n"
 			"%sCONTROL\r\n"
 			"MIXEDCASE = YES\r\n"
 			,VERSION_NOTICE
@@ -197,7 +198,7 @@ bool sbbs_t::pack_qwk(char *packet, uint *msgcnt, bool prepack)
 			,p,p,p,p
 			,p,p,p,p
 			,p,p,p,p
-			,p,p,p,p
+			,p,p,p,p,p
 			);
 		fclose(stream);
 		if(useron.rest&FLAG('Q')) {
-- 
GitLab