Skip to content
Snippets Groups Projects
Commit 79c225f2 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#723 - Unable to create email catch-alls even when an account has permissions to do so.

parent 2ebca957
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,7 @@ class page_action extends tform_actions { ...@@ -61,7 +61,7 @@ class page_action extends tform_actions {
$client = $app->db->queryOneRecord("SELECT limit_mailcatchall FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); $client = $app->db->queryOneRecord("SELECT limit_mailcatchall FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id");
// Check if the user may add another mailbox. // Check if the user may add another mailbox.
if($client["limit_mailforward"] >= 0) { if($client["limit_mailcatchall"] >= 0) {
$tmp = $app->db->queryOneRecord("SELECT count(forwarding_id) as number FROM mail_forwarding WHERE sys_groupid = $client_group_id and type = 'catchall'"); $tmp = $app->db->queryOneRecord("SELECT count(forwarding_id) as number FROM mail_forwarding WHERE sys_groupid = $client_group_id and type = 'catchall'");
if($tmp["number"] >= $client["limit_mailcatchall"]) { if($tmp["number"] >= $client["limit_mailcatchall"]) {
$app->error($app->tform->wordbook["limit_mailcatchall_txt"]); $app->error($app->tform->wordbook["limit_mailcatchall_txt"]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment