On Tuesday, February 11, 2003, at 02:22 PM, Rick Updegrove ((dislists)) wrote:
When I make a mailing list with the following options selected:

1.) Archived

2. )Prefix. Set up the list so that the outgoing subject will be prefixed
with the list name.


3.) Respond to adminstrative requests and allow archive retrieval.

4.) Trailer

The "Indexed for WWW archive access" setting won't "stick" unless I also
select "Message moderation." However, I do not want "Message moderation."
for 2 of the lists.

The option was getting set, but the code to display list options wasn't accurately displaying the settings for the list.


Here's a patch for qmailadmin 1.0.12 (Ken, please apply) that addresses this problem:

--- qmailadmin-1.0.12/mailinglist.c Thu Feb 27 13:38:17 2003
+++ qmailadmin-1.0.12-tc/mailinglist.c Mon Mar 17 08:59:33 2003
@@ -1069,6 +1057,9 @@
if((strstr(TmpBuf2, "ezmlm-gate")) != 0 || (strstr(TmpBuf2, "ezmlm-issubn")) != 0) {
checkopt['u'] = 1;
}
+ if(strstr(TmpBuf2, "ezmlm-archive") !=0) {
+ checkopt['i'] = 1;
+ }
}
fclose(fs);
}


If you don't already have 1.0.12, you can download it from http://www.inter7.com/develop.html.

If you are running 1.0.11 or earlier, you'll need to use the following patch:

--- mailinglist.c Wed Feb 26 11:51:54 2003
+++ mailinglist-fix.c Mon Mar 17 09:04:46 2003
@@ -1148,6 +1148,9 @@
if((strstr(TmpBuf2, "ezmlm-gate")) != 0 || (strstr(TmpBuf2, "ezmlm-issubn")) != 0) {
checkopt['u'] = 0;
}
+ if(strstr(TmpBuf2, "ezmlm-archive") !=0) {
+ checkopt['i'] = 0;
+ }
}
fclose(fs);
}



-- Tom Collins [EMAIL PROTECTED]




Reply via email to