--- petidomo.h 2000/12/13 15:54:29 1.1
+++ petidomo.h 2000/12/16 13:11:54 1.2
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/petidomo.h,v $
- $Revision: 1.1 $
+ $Revision: 1.2 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -48,9 +48,6 @@
# include <dmalloc.h>
#endif
-#include "libargv/argv.h"
-#include "debug.h"
-
/********** config.c **********/
struct PD_Config {
@@ -59,8 +56,6 @@
char * master_password;
char * mta;
char * mta_options;
- int detach;
- int show_stats;
};
enum {
@@ -127,11 +122,6 @@
int isValidAdminPassword(const char *password, const char *listname);
int isValidPostingPassword(const char *password, const char *listname);
-/********** exit.c **********/
-
-void RescueMail(const char *mail);
-void RemoveRescueMail(void);
-
/********** filter.c **********/
int MailFilter(struct Mail *MailStruct, const char *filter);
@@ -196,18 +186,10 @@
int isValidListName(const char *);
bool isSubscribed(const char *, const char *, char **, char **, bool);
-/********** signature.c **********/
-
-void AppendSignature(FILE * fh);
-
/********** unsubscribe.c **********/
int DeleteAddress(struct Mail *MailStruct, const char *param1, const char *param2, const char *defaultlist);
-/********** argvSetDebugLevel.c **********/
-
-int argvSetDebugLevel(argv_array_t debug);
-
/********** hermes.c **********/
int hermes_main(char *incoming_mail, const char *listname);
@@ -220,8 +202,7 @@
struct Parse {
const char * keyword;
- int (*handleCommand)(struct Mail *, const char *, const char *, const
- char *);
+ int (*handleCommand)(struct Mail *, const char *, const char *, const char *);
};
extern struct Parse ParseArray[];
|