Subj : src/sbbs3/ctrl/MainFormUnit.cpp PropertiesDlgUnit.dfm src/sbbs3/ftpsrv To : Git commit to Main/master From : Rob Swindell Date : Mon Nov 23 2020 11:32 pm https://gitlab.synchro.net/main/sbbs/-/commit/c0cd86865036769c95d5f3c6 Modified Files: src/sbbs3/ctrl/MainFormUnit.cpp PropertiesDlgUnit.dfm src/sbbs3/ftpsrvr.c jsexec.c mailsrvr.c main.cpp sbbs_ini.c sbbsdefs.h services.c startup.h websrvr.c Log Message: Stop pretending to configure the JavaScript Context stack The argument to JS_NewContext that we were allowing to be configured was not the contest stack size, but rather: "The size, in bytes, of each "stack chunk". This is a memory management tuning parameter which most users should not adjust. 8192 is a good default value." - per Mozilla. So we're just going to use the suggested default, hard-coded. .