mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-25 02:47:04 +00:00
retain backups only for 3 days; beyond that the user is responsible for copying files off of the machine
This commit is contained in:
parent
495790d81d
commit
fb3045f456
@ -4,6 +4,10 @@ CHANGELOG
|
|||||||
To-be-released
|
To-be-released
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
Breaking changes:
|
||||||
|
|
||||||
|
* On-disk backups are now retained for a minimum of 3 days instead of 14. Beyond that the user is responsible for making off-site copies.
|
||||||
|
|
||||||
Control panel:
|
Control panel:
|
||||||
|
|
||||||
* The control panel has a new page for installing SSL certificates.
|
* The control panel has a new page for installing SSL certificates.
|
||||||
|
@ -16,7 +16,7 @@ from utils import exclusive_process, load_environment, shell
|
|||||||
|
|
||||||
# destroy backups when the most recent increment in the chain
|
# destroy backups when the most recent increment in the chain
|
||||||
# that depends on it is this many days old.
|
# that depends on it is this many days old.
|
||||||
keep_backups_for_days = 14
|
keep_backups_for_days = 3
|
||||||
|
|
||||||
def backup_status(env):
|
def backup_status(env):
|
||||||
# What is the current status of backups?
|
# What is the current status of backups?
|
||||||
|
Loading…
Reference in New Issue
Block a user