// 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.85 (and newer) // ------------------------------------------------------------------ // The IM_STRUCT.H header from 1.85 and newer is restricted, so we // cannot distribute it. Sorry. //#define HAVE_IM18X #include #include #if defined(__GOLD_GUI__) #include #include #endif #undef GCFG_NOIMAIL #include #ifdef HAVE_IM18X #include #include #endif // ------------------------------------------------------------------ // Read IMail IMAIL.CF and IMAIL.AR #ifdef HAVE_IM18X void gareafile::ReadIMail185(char* options, char* file, char* impath) { AreaCfg aa; FILE* fp; im_config_type* CF; mail_area_type AR; CF = new im_config_type; throw_new(CF); fp = fsopen(file, "rb", sharemode); if (fp) { if (not quiet) STD_PRINTNL("* Reading " << file); fread(CF, sizeof(im_config_type), 1, fp); fclose(fp); CfgJampath(CF->echojam); CfgHudsonpath(CF->quickbbs); // Fido netmail if(not strblank(CF->netmail)) { aa.reset(); aa.basetype = 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) STD_PRINTNL("* Reading " << file); while(fread(&AR, sizeof(mail_area_type), 1, fp) == 1) { if(AR.active and (not AR.deleted)) { aa.reset(); switch(AR.msg_base_type & BASEMASK) { case MSGTYPE_SDM: aa.basetype = fidomsgtype; strcpy(aa.path, AR.msg_path); break; case MSGTYPE_SQUISH: aa.basetype = "SQUISH"; strcpy(aa.path, AR.msg_path); break; case MSGTYPE_JAM: aa.basetype = "JAM"; strcpy(aa.path, AR.msg_path); break; case MSGTYPE_HUDSON: aa.basetype = "HUDSON"; if ((AR.brd >= 1) and (AR.brd <= 200)) aa.board = AR.brd; else { STD_PRINTNL("* Warning: Invalid board " << AR.brd << " (" << AR.aname << ") in IMAIL.AR - Skipping."); 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 = AR.grp + 0x8000u; aa.setdesc(AR.comment); aa.setechoid(AR.aname); aa.setorigin(AR.origin); AddNewArea(aa); } } fclose(fp); } } throw_delete(CF); } #endif // ------------------------------------------------------------------ void gareafile::ReadIMail(char* tag) { FILE* fp; char* ptr; byte imver[2]; byte imstructver[2]; char options[80]; Path impath, file; *file = NUL; *impath = NUL; strcpy(options, tag); ptr = strtok(tag, " \t"); while(ptr) { if(*ptr != '-') { AddBackslash(strcpy(impath, ptr)); break; } ptr = strtok(NULL, " \t"); } if(*impath == NUL) { ptr = getenv("IMAIL"); if(ptr) AddBackslash(strcpy(impath, ptr)); } if(*impath == NUL) strcpy(impath, areapath); MakePathname(file, impath, "imail.cf"); fp = fsopen(file, "rb", sharemode); if(fp) { fread(imver, 2, 1, fp); fread(imstructver, 2, 1, fp); fclose(fp); if((imver[0] >= 1) and (imver[1] >= 60) and (imstructver[0] >= 4)) { switch(imstructver[0]) { case 4: ReadIMail160(options, file, impath); return; case 5: ReadIMail170(options, file, impath); return; #ifdef HAVE_IM18X case 6: ReadIMail185(options, file, impath); return; #endif } } char buff[78]; sprintf(buff, "* Error: IMAIL %u.%02u (structure revision %u.%02u) is not supported - Skipping." NL, unsigned(imver[0]), unsigned(imver[1]), unsigned(imstructver[0]), unsigned(imstructver[1]) ); STD_PRINT(buff); } } // ------------------------------------------------------------------