on 7/31/01 12:00 PM, Oden Eriksson at [EMAIL PROTECTED] spake:
> Great work Bill !
>
> Nice to see my thoughts adopted.
>
> Does the "--enable-no-cache={N|y}" option apply to both html template
> headers and build in http v1.1 headers ?
I'm not sure what you mean.. The only <meta> tag for setting no cache is in
mod_mailinglist_idx.html. I put it there because Konquerer was not getting
the current IDX values due to caching.
But the --enable-no-cache was submitted by Antonio Dias, and sends HTTP
headers. I just added it as a configure option. Here's the code from
qmailadmin.c:
--snip--
fprintf(actout,"Content-Type: text/html\n");
#ifdef NO_CACHE
fprintf(actout,"Cache-Control: no-cache\n");
fprintf(actout,"Cache-Control: no-store\n");
fprintf(actout,"Pragma: no-cache\n");
fprintf(actout,"Expires: Thu, 01 Dec 1994 16:00:00 GMT\n");
#endif
fprintf(actout,"\n");
--snip--
Regards,
Bill Shupp