From: Wilfried Goesgens Date: Sat, 8 Jun 2013 15:06:11 +0000 (+0200) Subject: Citadel Networking: add configured remote room name, so its later on put into the... X-Git-Tag: v8.20~27 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=1f515ca535f1e25cd0e95aa275796d0915505c75 Citadel Networking: add configured remote room name, so its later on put into the spool message. --- diff --git a/citadel/modules/network/serv_netmail.c b/citadel/modules/network/serv_netmail.c index 5713ea82a..b84c5dea2 100644 --- a/citadel/modules/network/serv_netmail.c +++ b/citadel/modules/network/serv_netmail.c @@ -117,6 +117,12 @@ void aggregate_recipients(StrBuf **recps, RoomNetCfg Which, OneRoomNetCfg *OneRN StrBufAppendBufPlain(*recps, HKEY(","), i); } StrBufAppendBuf(*recps, nptr->Value[0], 0); + if (Which == ignet_push_share) + { + StrBufAppendBufPlain(*recps, HKEY(","), 0); + StrBufAppendBuf(*recps, nptr->Value[1], 0); + + } } }