Index: ossp-pkg/petidomo/config.c RCS File: /v/ossp/cvs/ossp-pkg/petidomo/Attic/config.c,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/petidomo/Attic/config.c,v' 2>/dev/null --- config.c 2001/01/10 16:34:00 1.10 +++ config.c 2001/01/11 14:17:53 1.11 @@ -142,6 +142,7 @@ static char* header_file; static char* list_acl_file; static char* address_file; +static char* ack_file; const struct List_Config* getListConfig(const char * listname) { @@ -173,6 +174,7 @@ { "HeaderFile", CF_STRING, &header_file }, { "ListACLFile", CF_STRING, &list_acl_file }, { "AddressFile", CF_STRING, &address_file }, + { "AcknowledgementFile", CF_STRING, &ack_file }, { NULL, 0, NULL} }; @@ -194,6 +196,7 @@ header_file = "header"; list_acl_file = "acl"; address_file = "list"; + ack_file = "acks"; /* Get the master configuration. */ @@ -280,6 +283,7 @@ EXPAND(header_file, header_file); EXPAND(acl_file, list_acl_file); EXPAND(address_file, address_file); + EXPAND(ack_file, ack_file); AppendNode(ListConfigs, xstrdup(listname), ListConfig); Index: ossp-pkg/petidomo/config/list-config RCS File: /v/ossp/cvs/ossp-pkg/petidomo/config/list-config,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/petidomo/config/list-config,v' 2>/dev/null --- list-config 2001/01/08 20:34:39 1.2 +++ list-config 2001/01/11 14:17:53 1.3 @@ -181,11 +181,23 @@ # TAG: AddressFile # This entry sets the path to the address database file, which -# uses to store the addresses of the list's subscribers. If the -# path is not absolute -- not beginning with a '/' character, -# that is --, it will be interpreted relative to the directory -# where this config file has been found. +# Petidomo uses to store the addresses of the list's +# subscribers. If the path is not absolute -- not beginning with +# a '/' character, that is --, it will be interpreted relative +# to the directory where this config file has been found. # # If this option has not been set, the default value is # "list". #AddressFile list + +# TAG: AcknowledgementFile +# This entry sets the path to the acknowledgement database file, +# which Petidomo uses to store the addresses of posters who have +# verified their address by acknowledgement already. If the path +# is not absolute -- not beginning with a '/' character, that is +# --, it will be interpreted relative to the directory where +# this config file has been found. +# +# If this option has not been set, the default value is +# "list". +#AcknowledgementFile ack Index: ossp-pkg/petidomo/petidomo.h RCS File: /v/ossp/cvs/ossp-pkg/petidomo/petidomo.h,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/petidomo/petidomo.h,v' 2>/dev/null --- petidomo.h 2001/01/11 14:11:33 1.6 +++ petidomo.h 2001/01/11 14:17:53 1.7 @@ -88,6 +88,7 @@ char * acl_file; char * list_dir; char * address_file; + char * ack_file; }; int InitPetidomo(const char* masterconfig_path);