* Mon Sep 23 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-20.sme

- webmail switch panel to use roundcube [SME: 12742]
- prevent browser from caching [SME: 12695]
This commit is contained in:
2024-09-23 10:07:08 -04:00
parent 127ea74a8b
commit 785ebcfaaf
3 changed files with 26 additions and 31 deletions

View File

@@ -40,5 +40,10 @@
$OUT .= " Require ip $localAccess $externalSSLAccess\n";
}
$OUT .= " </Location>\n";
# prevent caching of manager files in browser
$OUT .= " <LocationMatch \"/$place/.+\.(html|cgi)\$\">\n";
$OUT .= " Header set Cache-Control no-store\n";
$OUT .= " </LocationMatch>\n";
}
}