/****************************************************************************** * 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 #include "fidoconf.h" 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 (strcmp(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; printf("fconf2aquaed\n"); printf("------------\n"); while ((cont []\n"); printf(" (you may include config defaults from default.cfg)\n"); printf(" (-a exports areas only)\n"); printf(" (-sn skip netmail areas)\n"); printf(" (-se skip echomail areas)\n"); printf(" (-sl skip local areas, and so on...)\n"); printf("\nExample:\n"); printf(" fconf2aquaed ~/aquaed/aquaed.cfg\n\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; }