From dc67af24058a8cafa9eb3eb3c7d7e71ec335fdb8 Mon Sep 17 00:00:00 2001
From: A. Täffner <darkalex@firesplash.de>
Date: Thu, 07 Apr 2016 07:23:56 -0400
Subject: [PATCH] Maximum password-length changed to 256 This implements https://git.ispconfig.org/ispconfig/ispconfig3/issues/3644
---
interface/lib/classes/remote.d/mail.inc.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/interface/lib/classes/remote.d/mail.inc.php b/interface/lib/classes/remote.d/mail.inc.php
index 9147770..9229899 100644
--- a/interface/lib/classes/remote.d/mail.inc.php
+++ b/interface/lib/classes/remote.d/mail.inc.php
@@ -357,7 +357,7 @@
return false;
}
- if (/*$action_type != 'backup_download_mail' and*/ $action_type != 'backup_restore_mail') {
+ if (/*$action_type != 'backup_download_mail' and*/ $action_type != 'backup_restore_mail' and $action_type != 'backup_delete_mail') {
$this->server->fault('invalid_action', "Invalid action_type $action_type");
return false;
}
--
Gitblit v1.9.1