// This may look like C code, but it is really -*- C++ -*- // ------------------------------------------------------------------ // The Goldware Library // Copyright (C) 1990-1999 Odinn Sorensen // ------------------------------------------------------------------ // 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$ // ------------------------------------------------------------------ // Read areas from IMail 1.60 // ------------------------------------------------------------------ #include #include #undef GCFG_NOIMAIL #include #include // ------------------------------------------------------------------ // Read IMail IMAIL.CF and IMAIL.AR void gareafile::ReadIMail160(char* options, char* file, char* impath) { AreaCfg aa; FILE* fp; im_config_type* CF; areas_record_type AR; CF = new im_config_type; throw_new(CF); fp = fsopen(file, "rb", sharemode); if(fp) { if(not quiet) cout << "* Reading " << file << endl; fread(CF, sizeof(im_config_type), 1, fp); fclose(fp); if(*jampath == NUL) PathCopy(jampath, MapPath(CF->echojam)); if(*hudsonpath == NUL) PathCopy(hudsonpath, MapPath(CF->quickbbs)); // Fido netmail if(not strblank(CF->netmail)) { aa.reset(); aa.msgbase = fidomsgtype; aa.type = GMB_NET; aa.attr = attribsnet; aa.aka = CAST(ftn_addr, CF->aka[0]); aa.setpath(CF->netmail); aa.setdesc("IMAIL Netmail"); aa.setautoid("NETMAIL"); AddNewArea(aa); } MakePathname(file, impath, "IMAIL.AR"); fp = fsopen(file, "rb", sharemode); if(fp) { setvbuf(fp, NULL, _IOFBF, 8192); if(not quiet) cout << "* Reading " << file << endl; while(fread(&AR, sizeof(areas_record_type), 1, fp) == 1) { if(AR.active and (not AR.deleted)) { aa.reset(); switch(AR.msg_base_type & BASEMASK) { case MSGTYPE_SDM: aa.msgbase = fidomsgtype; strcpy(aa.path, AR.msg_path); break; case MSGTYPE_SQUISH: aa.msgbase = GMB_SQUISH; strcpy(aa.path, AR.msg_path); break; case MSGTYPE_JAM: aa.msgbase = GMB_JAM; strcpy(aa.path, AR.msg_path); break; case MSGTYPE_HUDSON: aa.msgbase = GMB_HUDSON; if((AR.brd >= 1) and (AR.brd <= 200)) aa.board = AR.brd; else { cout << "* Warning: Invalid board " << AR.brd << " (" << AR.aname << ") in IMAIL.AR - Skipping." << endl; continue; } break; case MSGTYPE_PASSTH: default: // Passthrough or unknown msgbase type continue; } switch(AR.msg_base_type & TYPEMASK) { case MSGTYPE_LOCAL: aa.type = GMB_LOCAL; aa.attr = attribslocal; break; case MSGTYPE_NET: aa.type = GMB_NET; aa.attr = attribsnet; break; case MSGTYPE_ECHO: default: aa.type = GMB_ECHO; aa.attr = attribsecho; } if(AR.o_addr) aa.aka = CAST(ftn_addr, CF->aka[AR.o_addr-1]); aa.groupid = (char)toupper(AR.group); aa.setdesc(AR.comment); aa.setechoid(AR.aname); aa.setorigin(AR.origin); AddNewArea(aa); } } fclose(fp); } } throw_delete(CF); } // ------------------------------------------------------------------