/****************************************************************************** * FIDOCONFIG --- library for fidonet configs ****************************************************************************** * Copyright (C) 1998-1999 * * Matthias Tichy * * Fido: 2:2433/1245 2:2433/1247 2:2432/605.14 * Internet: mtt@tichy.de * * Grimmestr. 12 Buchholzer Weg 4 * 33098 Paderborn 40472 Duesseldorf * Germany Germany * * This file is part of FIDOCONFIG. * * 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 library; see file COPYING. If not, write to the Free * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *****************************************************************************/ #define AREASONLY 0x1 #define NETMAIL 0x2 #define ECHOMAIL 0x4 #define LOCAL 0x8 #define DUPE 0x10 #define BAD 0x20 #include #include "fidoconf.h" #include "common.h" #ifndef VERSION_H #define VERSION_H #include "version.h" #include "cvsdate.h" #endif int writeArea(FILE *f, s_area *area, char type) { if (area->group == NULL) area->group = "0"; fprintf(f, "areadef %s \"%s\" %s ", area->areaName, area->areaName, area->group); switch (type) { case 0: fprintf(f, "local "); break; case 1: fprintf(f, "net "); break; case 2: fprintf(f, "local "); break; } if (area->msgbType == MSGTYPE_SQUISH) fprintf(f, "Squish "); else fprintf(f, "Opus "); fprintf(f, "%s ", area->fileName); fprintf(f, "%u:%u/%u.%u", area->useAka->zone, area->useAka->net, area->useAka->node, area->useAka->point); fprintf(f, "\n"); return 0; } int generateAquaedConfig(s_fidoconfig *config, char *fileName, char *includeFile,int options) { FILE *f; int i; s_area *area; f = fopen(fileName, "w"); if (f!= NULL) { if (includeFile != NULL) fprintf(f, "include %s\n\n", includeFile); if (!(options & AREASONLY)) { fprintf(f, "username %s\n\n", config->sysop); if (config->echotosslog != NULL) fprintf(f, "squishechotoss %s\n", config->echotosslog); for (i=0; iaddrCount; i++) fprintf(f, "Address %u:%u/%u.%u\n", config->addr[i].zone, config->addr[i].net, config->addr[i].node, config->addr[i].point); fprintf(f, "\n"); } if (!(options & NETMAIL)) { for (i=0; inetMailAreaCount; i++) { writeArea(f, &(config->netMailAreas[i]), 1); } } if (!(options & DUPE)){ writeArea(f, &(config->dupeArea), 1); } if (!(options & BAD)) { writeArea(f, &(config->badArea), 1); } if (!(options & ECHOMAIL)) { for (i=0; iechoAreaCount; i++) { area = &(config->echoAreas[i]); if (area->msgbType != MSGTYPE_PASSTHROUGH) writeArea(f, area, 0); } } if (!(options & LOCAL)) { for (i=0; ilocalAreaCount; i++) { area = &(config->localAreas[i]); if (area->msgbType != MSGTYPE_PASSTHROUGH) writeArea(f, area, 2); } } return 0; } else printf("Could not write %s\n", fileName); return 1; } int parseOptions(char *line){ int options=0; char chr=0; if (sstrcmp(line,"-a")==0) chr='a'; else (chr=line[2]); switch (chr){ case 'a': { options^=AREASONLY; break; } case 'n': { options^=NETMAIL; break; } case 'e': { options^=ECHOMAIL; break; } case 'l': { options^=LOCAL; break; } case 'd': { options^=DUPE; break; } case 'b': { options^=BAD; break; } } return options; } int main (int argc, char *argv[]) { s_fidoconfig *config; int options=0; int cont=1; char *versionStr = NULL; versionStr = GenVersionStr( "fconf2aquaed", FC_VER_MAJOR, FC_VER_MINOR, FC_VER_PATCH, FC_VER_BRANCH, cvs_date); printf("%s\n\n", versionStr); while ((cont [fidoconfig]\n" "Options: -a\t- exports areas only\n" "\t -sb\t- skip badmail areas\n" "\t -sd\t- skip dupes areas\n" "\t -se\t- skip echomail areas\n" "\t -sl\t- skip local areas\n" "\t -sn\t- skip netmail areas\n"); return 1; } printf("Generating Config-file %s\n", argv[cont]); config = readConfig(NULL); if (config!= NULL) { generateAquaedConfig(config, argv[cont], argv[cont+1],options); disposeConfig(config); return 0; } return 1; }