2000-02-25 10:15:17 +00:00
|
|
|
// This may look like C code, but it is really -*- C++ -*-
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// The Goldware Library
|
|
|
|
// Copyright (C) 1990-1999 Odinn Sorensen
|
|
|
|
// Copyright (C) 1999-2000 Alexander S. Aganichev
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this program; if not, write to the Free
|
|
|
|
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
// MA 02111-1307, USA
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// $Id$
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// AREAFILE processor.
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __gedacfg_h
|
|
|
|
#define __gedacfg_h
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <gftnall.h>
|
|
|
|
#include <gfilutil.h>
|
|
|
|
#include <string>
|
|
|
|
#include <gmsgattr.h>
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
const int MAX_DESC = 45; // Area descriptions
|
|
|
|
const int MAX_ECHO = 81; // Echoids
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Echoid typedefs
|
|
|
|
|
|
|
|
typedef char Echo[MAX_ECHO];
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Description typedefs
|
|
|
|
|
|
|
|
typedef char Desc[MAX_DESC];
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Area types
|
|
|
|
|
|
|
|
const uint GMB_NET = 0x0001;
|
|
|
|
const uint GMB_EMAIL = 0x0002;
|
|
|
|
const uint GMB_ECHO = 0x0004;
|
|
|
|
const uint GMB_NEWSGROUP = 0x0008;
|
|
|
|
const uint GMB_LOCAL = 0x0010;
|
|
|
|
const uint GMB_QWK = 0x1000;
|
|
|
|
const uint GMB_SOUP = 0x2000;
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Msgbase types
|
|
|
|
|
|
|
|
const uint GMB_HUDSON = 0x0001;
|
|
|
|
const uint GMB_GOLDBASE = 0x0002;
|
|
|
|
const uint GMB_JAM = 0x0004;
|
|
|
|
const uint GMB_SQUISH = 0x0008;
|
|
|
|
const uint GMB_OPUS = 0x0010;
|
|
|
|
const uint GMB_FTS1 = 0x0020;
|
|
|
|
const uint GMB_FIDO = 0x0030;
|
|
|
|
const uint GMB_EZYCOM = 0x0040;
|
|
|
|
const uint GMB_PCBOARD = 0x0080;
|
|
|
|
const uint GMB_WILDCAT = 0x0100;
|
|
|
|
const uint GMB_ADEPTXBBS = 0x0200;
|
|
|
|
const uint GMB_MAILBOX = 0x1000;
|
|
|
|
const uint GMB_NEWSSPOOL = 0x2000;
|
|
|
|
const uint GMB_SEPARATOR = 0x8000;
|
|
|
|
const uint GMB_SMB = 0x10000;
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
class AreaCfgBase {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
int areaid; // Unique internal area number
|
|
|
|
int groupid; // Group id (A-Z)
|
|
|
|
int originno; // Origin number
|
|
|
|
uint board; // Board number (Hudson/Goldbase/Ezycom/PCBoard fmts)
|
|
|
|
uint type; // Type of msgarea (GMB_xxx)
|
|
|
|
uint msgbase; // Type of msgbase (GMB_xxx)
|
|
|
|
ftn_addr aka; // The AKA to use in the area
|
|
|
|
ftn_attr attr; // Default attributes
|
|
|
|
byte scan : 1; // TRUE if listed with AREASCAN
|
|
|
|
byte scanexcl : 1; // TRUE if listed with AREASCANEXCL
|
|
|
|
byte scanincl : 1; // TRUE if listed with AREASCANINCL
|
|
|
|
byte pmscan : 1; // TRUE if listed with AREAPMSCAN
|
|
|
|
byte pmscanexcl : 1; // TRUE if listed with AREAPMSCANEXCL
|
|
|
|
byte pmscanincl : 1; // TRUE if listed with AREAPMSCANINCL
|
|
|
|
|
|
|
|
int setorigin(string& origin);
|
|
|
|
|
|
|
|
bool isfts1() const { return !!(msgbase & GMB_FTS1); }
|
|
|
|
bool isopus() const { return !!(msgbase & GMB_OPUS); }
|
|
|
|
bool isezycom() const { return !!(msgbase & GMB_EZYCOM); }
|
|
|
|
bool isfido() const { return !!(msgbase & (GMB_FTS1|GMB_OPUS)); }
|
|
|
|
bool isgoldbase() const { return !!(msgbase & GMB_GOLDBASE); }
|
|
|
|
bool ishudson() const { return !!(msgbase & GMB_HUDSON); }
|
|
|
|
bool isjam() const { return !!(msgbase & GMB_JAM); }
|
|
|
|
bool ispcboard() const { return !!(msgbase & GMB_PCBOARD); }
|
|
|
|
bool issquish() const { return !!(msgbase & GMB_SQUISH); }
|
|
|
|
bool iswildcat() const { return !!(msgbase & GMB_WILDCAT); }
|
|
|
|
bool isadeptxbbs() const { return !!(msgbase & GMB_ADEPTXBBS); }
|
|
|
|
bool isseparator() const { return !!(msgbase & GMB_SEPARATOR); }
|
|
|
|
bool issmb() const { return !!(msgbase & GMB_SMB); }
|
|
|
|
|
|
|
|
bool isnet() const { return !!(type & GMB_NET); }
|
|
|
|
bool isecho() const { return !!(type & GMB_ECHO); }
|
|
|
|
bool islocal() const { return !!(type & GMB_LOCAL); }
|
|
|
|
bool isemail() const { return !!(type & GMB_EMAIL); }
|
|
|
|
bool isnewsgroup() const { return !!(type & GMB_NEWSGROUP); }
|
|
|
|
bool isinternet() const { return !!(type & (GMB_EMAIL|GMB_NEWSGROUP)); }
|
|
|
|
bool isqwk() const { return !!(type & GMB_QWK); }
|
|
|
|
bool issoup() const { return !!(type & GMB_SOUP); }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
class AreaCfg : public AreaCfgBase {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static int autoid;
|
|
|
|
|
|
|
|
Echo echoid; // Echo tag
|
|
|
|
Desc desc; // Area description
|
|
|
|
Path path; // Path to message area
|
|
|
|
string origin; // Origin
|
|
|
|
|
|
|
|
AreaCfg() { reset(); }
|
|
|
|
~AreaCfg() { }
|
|
|
|
|
|
|
|
AreaCfg& operator=(const AreaCfg& x);
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
const char* setdesc(const char* s);
|
|
|
|
const char* setautoid(const char* s);
|
|
|
|
const char* setechoid(const char* s);
|
|
|
|
const char* setorigin(const char* s);
|
|
|
|
const char* setpath(const char* s);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct EchoList {
|
|
|
|
|
|
|
|
Echo echoid;
|
|
|
|
Path path;
|
|
|
|
Desc desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct DescList {
|
|
|
|
|
|
|
|
Echo echoid;
|
|
|
|
Desc desc;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
class EchoListClass {
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
EchoList** echolist;
|
|
|
|
DescList** desclist;
|
|
|
|
int echos;
|
|
|
|
int descs;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
EchoListClass();
|
|
|
|
~EchoListClass();
|
|
|
|
|
|
|
|
void FreeAll();
|
|
|
|
int Echos() { return(echos); }
|
|
|
|
void SortEchos();
|
|
|
|
void AddDesc(char* echoid, char* desc);
|
|
|
|
int FindDesc(char* echoid, char** desc);
|
|
|
|
void AddEcho(char* echoid, char* path, char* desc);
|
|
|
|
int FindEcho(char* echoid, char* path, char* desc);
|
|
|
|
int GetEcho(int n, char** echoid, char** path, char** desc);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
class gareafile {
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
Path pathprefix;
|
|
|
|
|
2000-10-06 23:16:09 +00:00
|
|
|
#ifndef GCFG_NOFIDOCONF
|
2001-05-05 21:41:41 +00:00
|
|
|
// Fidoconfig parser functions
|
2000-02-25 10:15:17 +00:00
|
|
|
void replace_slashes(char **key);
|
|
|
|
void gettok(char** key, char** val);
|
2000-10-06 23:16:09 +00:00
|
|
|
#endif
|
2001-05-05 21:41:41 +00:00
|
|
|
#if !defined(GCFG_NOCMAIL) || !defined(GCFG_NOCECHO)
|
2000-02-25 10:15:17 +00:00
|
|
|
// Crashmail II parser function
|
|
|
|
bool jbstrcpy(char *dest, char *src, size_t maxlen, size_t *jbc);
|
2000-10-06 23:16:09 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOTIMED
|
2000-02-25 10:15:17 +00:00
|
|
|
// Timed parser function
|
|
|
|
void nullastbackslash(char* val);
|
2000-10-06 23:16:09 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOWATERGATE
|
2000-02-25 10:15:17 +00:00
|
|
|
// Watergate parser function
|
|
|
|
uint gettype(uint msgtype, const byte wtrtype);
|
2000-10-06 23:16:09 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOXMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
// XMail parser function
|
|
|
|
char* ClipDosFilename(char* __file);
|
2000-10-06 23:16:09 +00:00
|
|
|
#endif
|
2000-02-25 10:15:17 +00:00
|
|
|
|
|
|
|
void adjustpath(char* path);
|
|
|
|
|
2000-08-23 19:24:19 +00:00
|
|
|
#ifndef GCFG_NODB
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadDB130(char* tag, char* dbpath);
|
|
|
|
void ReadDB1046(char* file, char* tag);
|
|
|
|
void ReadDB1047A22(char* file, int reclen, char* tag);
|
|
|
|
void ReadDB2011(char* file, int reclen, char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOEZY
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadEzycom102(FILE* fp, char* path, char* file, char* options);
|
|
|
|
void ReadEzycom110(FILE* fp, char* path, char* file, char* options);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFE
|
2000-12-19 09:02:51 +00:00
|
|
|
void ReadFastecho11x(int fh);
|
|
|
|
void ReadFastecho141(int fh);
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadFastecho142(int fh);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadFMail092(FILE* fp, char* path, char* file, char* options);
|
|
|
|
void ReadFMail098(FILE* fp, char* path, char* file, char* options);
|
|
|
|
void ReadFMail116(FILE* fp, char* path, char* file, char* options);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFIDOCONF
|
2000-02-25 10:15:17 +00:00
|
|
|
bool ReadHPTLine(FILE* f, string* s, bool add=false, int state=0);
|
|
|
|
void ReadHPTFile(char* path, char* file, char* options, char* origin, int group);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOIMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadIMail160(char* options, char* file, char* impath);
|
|
|
|
void ReadIMail170(char* options, char* file, char* impath);
|
|
|
|
void ReadIMail185(char* options, char* file, char* impath);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOMAXIMUS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadMaximus3(char* mxpath, char* areafile, char* options);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOQBBS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadQ260(char* qbpath, char* origin, char* options);
|
|
|
|
void ReadQ276(char* qbpath, char* origin, char* options);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOQECHO
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadQEchoFile(char* file, char* options, char* origin);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
2001-04-15 19:24:44 +00:00
|
|
|
#if !defined(GCFG_NOSQSH) || !defined(GCFG_NOPARTOSS)
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadSquishFile(char* path, char* file, char* options, char* origin, int group);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOTIMED
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadTimedFile(char* path, char* file, char* options, char* origin);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOTERMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadTmailFile(char* file, char* options, char* origin);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOWATERGATE
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadWtrGteFile(char* options, FILE* fp);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOXBBS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadAdeptXbbsFile(char* path, char* file, char* options);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOXMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadxMailFile(char* file, char* options);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
2000-02-25 10:15:17 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
gareafile();
|
|
|
|
|
|
|
|
EchoListClass echolist;
|
|
|
|
|
|
|
|
int quiet;
|
|
|
|
|
|
|
|
int sharemode;
|
|
|
|
int fidomsgtype;
|
|
|
|
int ra2usersbbs;
|
|
|
|
int squishuserno;
|
|
|
|
|
2001-05-05 21:41:41 +00:00
|
|
|
const char *areapath;
|
|
|
|
const char *pcboardpath;
|
|
|
|
|
2000-02-25 10:15:17 +00:00
|
|
|
ftn_addr primary_aka;
|
|
|
|
|
|
|
|
ftn_attr attribsnet;
|
|
|
|
ftn_attr attribsecho;
|
|
|
|
ftn_attr attribsnews;
|
|
|
|
ftn_attr attribsemail;
|
|
|
|
ftn_attr attribslocal;
|
|
|
|
|
|
|
|
void GetAreasBBS(char* name, char* origin, char* options);
|
|
|
|
|
|
|
|
void ReadAreasBBS(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#ifndef GCFG_NOXBBS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadAdeptXBBS(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
2001-05-05 21:41:41 +00:00
|
|
|
#if !defined(GCFG_NOCMAIL) || !defined(GCFG_NOCECHO)
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadCrashmail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NODB
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadDBridge(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NODUTCHIE
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadDutchie(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOEZY
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadEzycom(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFE
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadFastecho(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFIDOPCB
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadFidoPCB(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadFMail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFD
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadFrontDoor(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOGECHO
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadGEcho(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOFIDOCONF
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadHPT(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOIMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadIMail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOINTERMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadInterMail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOLORA
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadLoraBBS(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOMAXIMUS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadMaximus(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOME2
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadME2(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOOPUS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadOpus(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOPCB
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadPCBoard(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOPORTAL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadPortal(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOPROBOARD
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadProBoard(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOQECHO
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadQEcho(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOQFRONT
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadQFront(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOQBBS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadQuickBBS(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NORAECHO
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadRaEcho(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NORA
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadRemoteAccess(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
2001-04-15 19:24:44 +00:00
|
|
|
#if !defined(GCFG_NOSQSH) || !defined(GCFG_NOPARTOSS)
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadSquish(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
2001-05-05 21:41:41 +00:00
|
|
|
#ifndef GCFG_NOSPCT
|
|
|
|
void ReadSpaceToss(char *tag);
|
|
|
|
#endif
|
2000-08-23 19:24:19 +00:00
|
|
|
#ifndef GCFG_NOSBBS
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadSuperBBS(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOTIMED
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadTimed(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOTERMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadTmail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOTOSSCAN
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadTosScan(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOWMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadWMail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOWATERGATE
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadWtrGte(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
|
|
|
#ifndef GCFG_NOXMAIL
|
2000-02-25 10:15:17 +00:00
|
|
|
void ReadXMail(char* tag);
|
2000-08-23 19:24:19 +00:00
|
|
|
#endif
|
2000-02-25 10:15:17 +00:00
|
|
|
|
|
|
|
bool ReadAreafile(word crc, char* parameters);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void AddNewArea(AreaCfg& aa);
|
|
|
|
void CfgAddress(char* value);
|
|
|
|
void CfgOrigin(const char* value);
|
|
|
|
void CfgUsername(char* value);
|
|
|
|
void ReadEcholist(char* value);
|
|
|
|
void SetAreaDesc(char* echoid, char* desc);
|
|
|
|
|
2001-05-05 21:41:41 +00:00
|
|
|
void CfgAdeptxbbspath(const char *path, bool force = false);
|
|
|
|
void CfgEzycommsgbase(const char *path, bool force = false);
|
|
|
|
void CfgEzycomuserbase(const char *path, bool force = false);
|
|
|
|
void CfgGoldbasepath(const char *path, bool force = false);
|
|
|
|
void CfgHudsonpath(const char *path, bool force = false);
|
|
|
|
void CfgJampath(const char *path, bool force = false);
|
|
|
|
void CfgPcboardpath(const char *path, bool force = false);
|
|
|
|
void CfgSquishuserpath(const char *path, bool force = false);
|
|
|
|
void CfgFidolastread(const char *path);
|
2000-02-25 10:15:17 +00:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Legacy area types
|
|
|
|
|
|
|
|
const uint AT_NET = GMB_NET;
|
|
|
|
const uint AT_EMAIL = GMB_EMAIL;
|
|
|
|
const uint AT_ECHO = GMB_ECHO;
|
|
|
|
const uint AT_NEWSGROUP = GMB_NEWSGROUP;
|
|
|
|
const uint AT_LOCAL = GMB_LOCAL;
|
|
|
|
const uint AT_QWK = GMB_QWK;
|
|
|
|
const uint AT_SOUP = GMB_SOUP;
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// Legacy msgbase types
|
|
|
|
|
|
|
|
const uint MT_HUDSON = GMB_HUDSON;
|
|
|
|
const uint MT_GOLDBASE = GMB_GOLDBASE;
|
|
|
|
const uint MT_JAM = GMB_JAM;
|
|
|
|
const uint MT_SQUISH = GMB_SQUISH;
|
|
|
|
const uint MT_OPUS = GMB_OPUS;
|
|
|
|
const uint MT_FTS1 = GMB_FTS1;
|
|
|
|
const uint MT_FIDO = GMB_FIDO;
|
|
|
|
const uint MT_EZYCOM = GMB_EZYCOM;
|
|
|
|
const uint MT_PCBOARD = GMB_PCBOARD;
|
|
|
|
const uint MT_WILDCAT = GMB_WILDCAT;
|
|
|
|
const uint MT_ADEPTXBBS = GMB_ADEPTXBBS;
|
|
|
|
const uint MT_MAILBOX = GMB_MAILBOX;
|
|
|
|
const uint MT_NEWSSPOOL = GMB_NEWSSPOOL;
|
|
|
|
const uint MT_SEPARATOR = GMB_SEPARATOR;
|
|
|
|
const uint MT_SMB = GMB_SMB;
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|