From 19d21d9916106facaf2cf872c099c26a0854d15c Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sun, 4 Aug 2002 10:52:51 +0000 Subject: [PATCH] Added queue sources --- mbfido/Makefile | 6 +++--- mbfido/queue.c | 42 ++++++++++++++++++++++++++++++++++++++++++ mbfido/queue.h | 6 ++++++ 3 files changed, 51 insertions(+), 3 deletions(-) create mode 100644 mbfido/queue.c create mode 100644 mbfido/queue.h diff --git a/mbfido/Makefile b/mbfido/Makefile index 2c3889e3..33843732 100644 --- a/mbfido/Makefile +++ b/mbfido/Makefile @@ -14,7 +14,7 @@ SRCS = addbbs.c backalias.c flock.c hatch.c mbdiff.c mgrutil.c pack.c \ hash.c mbaff.c mbseq.c notify.c postnetmail.c scannews.c tosspkt.c \ mbfkill.c mbfutil.c mbfindex.c mbfcheck.c mbfpack.c mbflist.c mbfadopt.c \ mbfimport.c virscan.c mbftoberep.c mbfmove.c mbfdel.c bounce.c \ - createm.c createf.c msgflags.c dirsession.c + createm.c createf.c msgflags.c dirsession.c queue.c HDRS = addbbs.h backalias.h flock.h hatch.h mbdiff.h mgrutil.h pack.h \ postnetmail.h scannews.h tosspkt.h addpkt.h bwrite.h forward.h \ lhash.h mbfido.h mkftnhdr.h ptic.h sendmail.h tracker.h \ @@ -25,14 +25,14 @@ HDRS = addbbs.h backalias.h flock.h hatch.h mbdiff.h mgrutil.h pack.h \ atoul.h filemgr.h hash.h mbaff.h mbseq.h notify.h postemail.h scan.h toberep.h \ mbfkill.h mbfutil.h mbfindex.h mbfcheck.h mbfpack.h mbflist.h mbfadopt.h \ mbfimport.h virscan.h mbftoberep.h mbfmove.h mbfdel.h bounce.h \ - createm.h createf.h msgflags.h dirsession.h + createm.h createf.h msgflags.h dirsession.h queue.h MBFIDO_OBJS = flock.o tosspkt.o mbfido.o hatch.o maketags.o virscan.o tracker.o \ makestat.o scannews.o lhash.o bounce.o pack.o ulock.o tic.o ptic.o \ utic.o mover.o hash.o mkftnhdr.o addbbs.o magic.o fsort.o toberep.o \ ftn2rfc.o atoul.o ping.o forward.o sendmail.o scan.o addpkt.o \ storenet.o storeecho.o areamgr.o filemgr.o notify.o mgrutil.o rollover.o \ bwrite.o rfc2ftn.o rnews.o newspost.o aliasdb.o postemail.o postnetmail.o \ - postecho.o backalias.o createm.o createf.o msgflags.o dirsession.o + postecho.o backalias.o createm.o createf.o msgflags.o dirsession.o queue.o MBSEQ_OBJS = mbseq.o MBAFF_OBJS = announce.o fflist.o filefind.o grlist.o mbaff.o msgutil.o MBINDEX_OBJS = mbindex.o diff --git a/mbfido/queue.c b/mbfido/queue.c new file mode 100644 index 00000000..67d20dc0 --- /dev/null +++ b/mbfido/queue.c @@ -0,0 +1,42 @@ +/***************************************************************************** + * + * $Id$ + * Purpose ...............: Mail and file queue operations + * + ***************************************************************************** + * Copyright (C) 1997-2002 + * + * Michiel Broek FIDO: 2:280/2802 + * Beekmansbos 10 + * 1971 BV IJmuiden + * the Netherlands + * + * This file is part of MBSE BBS. + * + * This BBS is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2, or (at your option) any + * later version. + * + * MBSE BBS 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with MBSE BBS; see the file COPYING. If not, write to the Free + * Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + *****************************************************************************/ + +#include "../config.h" +#include "../lib/libs.h" +#include "../lib/memwatch.h" +#include "../lib/structs.h" +#include "../lib/users.h" +#include "../lib/records.h" +#include "../lib/common.h" +#include "../lib/clcomm.h" +#include "queue.h" + + + diff --git a/mbfido/queue.h b/mbfido/queue.h new file mode 100644 index 00000000..d302638c --- /dev/null +++ b/mbfido/queue.h @@ -0,0 +1,6 @@ +#ifndef _QUEUE_H +#define _QUEUE_H + +/* $Id$ */ + +#endif