open
https://gitlab.synchro.net/main/sbbs/-/issues/1082
New messages (not replies) posted to an echoarea via NNTP display the _Newsgroup Name_ (from SCFG) as the recipient, instead of "All". For example, "To: fidonet.FIDOTEST", that looks odd on echomail (at least to me). Any reason for this?
I fixed this in my mod by editing `nntpservice.js` and changing:
```
if(hdr.to==undefined && hdr.newsgroups!=undefined)
hdr.to=hdr.newsgroups;
```
to
```
if(hdr.to==undefined && hdr.newsgroups!=undefined)
hdr.to="All";
```
(For reference, that sentence was introduced in commit
https://gitlab.synchro.net/main/sbbs/-/commit/0eb7d78a34386b4b3a53f62d14337adea4f2182c )
--- SBBSecho 3.37-Linux
* Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)