the address to which to send mail to confirm the (un-)subscription in
question
-- $controlN$
- the contents of the control file named N, with its final newline stripped; N
- represents the name of the file to be found in the list's control
- subdirectory; the name may only include letters and digits
+- $control filename$
+ the contents of the control file named 'filename', with its final newline
+ stripped; 'filename' represents the name of the file to be found in the
+ list's control subdirectory; the name may only include letters and digits
- $digestfirst$
(available only in digest)
- $digestthreads$
(available only in digest)
- the list of threads included in the digest
+ the formatted list of threads included in the digest
- $digestunsubaddr$
listname+unsubscribe-digest@domain.tld
value = concatstr(4, listname, listdelim, "subscribe-nomail@",
fqdn);
goto concatandreturn;
- } else if(strncmp(token, "control", 7) == 0) {
- value = token + 7;
+ } else if(strncmp(token, "control ", 8) == 0) {
+ value = token + 8;
if(*value == '\0') {
value = mystrdup("");
goto concatandreturn;
break;
}
if(*value != '\0') {
- value = mystrdup(token + 7);
+ value = mystrdup(token + 8);
goto concatandreturn;
}
- value = token + 7;
+ value = token + 8;
value = ctrlcontent(listdir, value);
if (value == NULL)
value = mystrdup("");