feat(mail): Deletion of mail older than x. Closes #6023.

This commit is contained in:
smizrahi
2024-11-20 16:43:24 +01:00
parent d5e86f7387
commit 34e396ddee
3 changed files with 4 additions and 4 deletions

View File

@@ -431,7 +431,7 @@ See `memcached_servers_parse(3)` for details on the syntax.
|S |SOGoCacheCleanupInterval
|Parameter used to set the expiration (in seconds) of each object in the
cache. Default value is `NO`.
cache.
Defaults to `300`.
@@ -1679,7 +1679,7 @@ URL could be set to something like:
See the "EMail reminders" section in this document for more information.
|S |SOGoDisableMailCleaning
|Parameter used to disable the feature 'remove mails older than X days' introduced in 5.12
|Parameter used to disable the feature 'remove mails older than X days' introduced in 5.12. Default value is `NO`.
|S |SOGoDisableOrganizerEventCheck
|Parameter used to disable organizer's calendar event check

View File

@@ -633,7 +633,7 @@
</md-dialog>
</script>
<!-- Remove old emails -->
<script type="text/ng-template" id="CleanMailbox">
<script type="text/ng-template" id="cleanMailbox">
<md-dialog flex="50" flex-sm="80" flex-xs="100">
<!-- Toolbar -->
<md-toolbar>

View File

@@ -457,7 +457,7 @@
$mdSidenav('left').close();
$mdDialog.show({
template: document.getElementById('CleanMailbox').innerHTML,
template: document.getElementById('cleanMailbox').innerHTML,
parent: angular.element(document.body),
controller: function () {
var dialogCtrl = this;