This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbsetup/m_mail.c
2001-08-17 05:46:24 +00:00

92 lines
2.2 KiB
C

/*****************************************************************************
*
* File ..................: m_mail.c
* Purpose ...............: Mail Setup Program
* Last modification date : 08-Feb-1999
*
*****************************************************************************
* Copyright (C) 1997-1999
*
* Michiel Broek FIDO: 2:2801/16
* Beekmansbos 10 Internet: mbroek@ux123.pttnwb.nl
* 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.
*
* MB 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 MB BBS; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
#include "../lib/libs.h"
#include "../lib/structs.h"
#include "../lib/records.h"
#include "../lib/common.h"
#include "screen.h"
#include "mutil.h"
#include "ledit.h"
#include "m_global.h"
#include "m_marea.h"
#include "m_mgroup.h"
#include "m_mail.h"
void mail_menu(void)
{
clr_index();
working(1, 0, 0);
if (config_read() == -1) {
working(2, 0, 0);
return;
}
for (;;) {
clr_index();
set_color(WHITE, BLACK);
mvprintw( 5, 6, "9. MAIL PROCESSING");
set_color(CYAN, BLACK);
mvprintw( 7, 6, "1. Edit Echomail Groups");
mvprintw( 8, 6, "2. Edit Echomail Areas");
switch(select_menu(2)) {
case 0:
return;
case 1:
EditMGroup();
break;
case 2:
EditMsgarea();
break;
}
}
}
int mail_doc(FILE *fp, FILE *toc, int page)
{
page = newpage(fp, page);
addtoc(fp, toc, 9, 0, page, (char *)"Mail setup");
page = mail_group_doc(fp, toc, page);
page = mail_area_doc(fp, toc, page);
return page;
}