--- config.c 2001/01/15 16:29:11 1.12
+++ config.c 2001/01/15 16:35:06 1.13
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/Attic/config.c,v $
- $Revision: 1.12 $
+ $Revision: 1.13 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -137,7 +137,6 @@
static char* postingfilter;
static char* archivepath;
static bool allowpubsub;
-static bool allowaliensub;
static bool allowmembers;
static char* intro_file;
static char* sig_file;
@@ -163,7 +162,6 @@
{
{ "ListType", CF_STRING, &listtype },
{ "AllowPublicSubscription", CF_YES_NO, &allowpubsub },
- { "AllowAlienSubscription", CF_YES_NO, &allowaliensub },
{ "AllowMembersCommand", CF_YES_NO, &allowmembers },
{ "ReplyTo", CF_STRING, &reply_to },
{ "Hostname", CF_STRING, &list_fqdn },
@@ -191,7 +189,6 @@
postingfilter = NULL;
archivepath = NULL;
allowpubsub = TRUE;
- allowaliensub = TRUE;
allowmembers = FALSE;
intro_file = "introduction";
sig_file = "signature";
@@ -261,7 +258,6 @@
exit(1);
}
ListConfig->allowpubsub = allowpubsub;
- ListConfig->allowaliensub = allowaliensub;
ListConfig->allowmembers = allowmembers;
ListConfig->fqdn = (list_fqdn) ? list_fqdn : MasterConfig->fqdn;
ListConfig->reply_to = reply_to;
|