mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
Backup configuration saving mechanism is fixed
The region value used for backups on S3-compatible services is now saved correctly even if the user changes the configuration from backup of type S3 to another.
This commit is contained in:
parent
1fc33a3933
commit
e6c12d9ac7
@ -285,11 +285,13 @@ function set_custom_backup() {
|
|||||||
var target_pass = $("#backup-target-pass").val();
|
var target_pass = $("#backup-target-pass").val();
|
||||||
|
|
||||||
var target;
|
var target;
|
||||||
if (target_type == "local" || target_type == "off")
|
var target_region = '';
|
||||||
|
if (target_type == "local" || target_type == "off") {
|
||||||
target = target_type;
|
target = target_type;
|
||||||
else if (target_type == "s3")
|
} else if (target_type == "s3") {
|
||||||
target = "s3://" + $("#backup-target-s3-host").val() + "/" + $("#backup-target-s3-path").val();
|
target = "s3://" + $("#backup-target-s3-host").val() + "/" + $("#backup-target-s3-path").val();
|
||||||
else if (target_type == "rsync") {
|
target_region = $("#backup-target-s3-region").val();
|
||||||
|
} else if (target_type == "rsync") {
|
||||||
target = "rsync://" + $("#backup-target-rsync-user").val() + "@" + $("#backup-target-rsync-host").val()
|
target = "rsync://" + $("#backup-target-rsync-user").val() + "@" + $("#backup-target-rsync-host").val()
|
||||||
+ "/" + $("#backup-target-rsync-path").val();
|
+ "/" + $("#backup-target-rsync-path").val();
|
||||||
target_user = '';
|
target_user = '';
|
||||||
@ -300,10 +302,8 @@ function set_custom_backup() {
|
|||||||
target_pass = '';
|
target_pass = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var target_region = $("#backup-target-s3-region").val();
|
|
||||||
|
|
||||||
var min_age = $("#min-age").val();
|
var min_age = $("#min-age").val();
|
||||||
|
|
||||||
api(
|
api(
|
||||||
"/system/backup/config",
|
"/system/backup/config",
|
||||||
"POST",
|
"POST",
|
||||||
|
Loading…
Reference in New Issue
Block a user