Skip to content
Snippets Groups Projects
Commit 33cb42fa authored by rswindell's avatar rswindell
Browse files

binarydecoder.ini sub-board sections no longer need "sub:" prefix (confusing).

Added comments regarding binarydecoder.ini file format.
parent 89dee82a
No related branches found
No related tags found
No related merge requests found
// binarydecoder.js
// Synchronet Binary Attachment Decoder
// Synchronet (single or multi-part) Binary Attachment Decoder
// for UUE and yEnc encoded binary attachments
// Requires Synchronet v3.10m or later
// $Id$
// The default attachment storage directory is data/subs/attach
// Format of the ctrl/binarydecoder.ini file (optional):
//
// [subcode]
// attachment_dir = /override/path/to/store/attachments
// [anothersubcode]
// [yetanothersubcode]
// etc.
load("sbbsdefs.js");
const REVISION = "$Revision$".split(' ')[1];
......@@ -31,7 +41,7 @@ if(argc) {
if(re.test(i))
sub.push(msg_area.sub[i]);
} else
sub = file.iniGetAllObjects("code","sub:");
sub = file.iniGetAllObjects("code");
// get global ini settings here
file.close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment