Marius Burkard
2016-05-04 c3189ce6c7301c3ec17878fd3918f31d0d3cb18a
commit | author | age
d1018a 1 <?php
T 2 /*
3 Copyright (c) 2008, Till Brehm, projektfarm Gmbh
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without modification,
7 are permitted provided that the following conditions are met:
8
9     * Redistributions of source code must retain the above copyright notice,
10       this list of conditions and the following disclaimer.
11     * Redistributions in binary form must reproduce the above copyright notice,
12       this list of conditions and the following disclaimer in the documentation
13       and/or other materials provided with the distribution.
14     * Neither the name of ISPConfig nor the names of its contributors
15       may be used to endorse or promote products derived from this software without
16       specific prior written permission.
17
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
25 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
27 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30
31 /******************************************
32 * Begin Form configuration
33 ******************************************/
34
35 $tform_def_file = "form/mail_user_filter.tform.php";
36
37 /******************************************
38 * End Form configuration
39 ******************************************/
40
7fe908 41 require_once '../../lib/config.inc.php';
MC 42 require_once '../../lib/app.inc.php';
d1018a 43
T 44 //* Check permissions for module
45 $app->auth->check_module_permissions('mail');
46
47 // Loading classes
48 $app->uses('tpl,tform,tform_actions');
49 $app->load('tform_actions');
50
51 class page_action extends tform_actions {
7fe908 52
9f56bd 53     function onShowNew() {
T 54         global $app, $conf;
7fe908 55
9f56bd 56         // we will check only users, not admins
T 57         if($_SESSION["s"]["user"]["typ"] == 'user') {
7fe908 58             if(!$app->tform->checkClientLimit('limit_mailfilter', "")) {
9f56bd 59                 $app->error($app->tform->lng("limit_mailfilter_txt"));
T 60             }
7fe908 61             if(!$app->tform->checkResellerLimit('limit_mailfilter', "")) {
9f56bd 62                 $app->error('Reseller: '.$app->tform->lng("limit_mailfilter_txt"));
T 63             }
64         }
7fe908 65
9f56bd 66         parent::onShowNew();
T 67     }
7fe908 68
d1018a 69     function onSubmit() {
T 70         global $app, $conf;
7fe908 71
eea5cf 72         // Get the parent mail_user record
952df8 73         $mailuser = $app->db->queryOneRecord("SELECT * FROM mail_user WHERE mailuser_id = ? AND ".$app->tform->getAuthSQL('r'), $_REQUEST["mailuser_id"]);
7fe908 74
d1018a 75         // Check if Domain belongs to user
T 76         if($mailuser["mailuser_id"] != $_POST["mailuser_id"]) $app->tform->errorMessage .= $app->tform->wordbook["no_mailuser_perm"];
7fe908 77
eea5cf 78         // Set the mailuser_id
d1018a 79         $this->dataRecord["mailuser_id"] = $mailuser["mailuser_id"];
7fe908 80
e3929f 81         // Remove leading dots
7fe908 82         if(substr($this->dataRecord['target'], 0, 1) == '.') $this->dataRecord['target'] = substr($this->dataRecord['target'], 1);
MC 83
9f56bd 84         // Check the client limits, if user is not the admin
T 85         if($_SESSION["s"]["user"]["typ"] != 'admin') { // if user is not admin
86             // Get the limits of the client
604c0c 87             $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]);
cc7a82 88             $client = $app->db->queryOneRecord("SELECT limit_mailfilter FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = ?", $client_group_id);
9f56bd 89
T 90             // Check if the user may add another filter
91             if($this->id == 0 && $client["limit_mailfilter"] >= 0) {
cc7a82 92                 $tmp = $app->db->queryOneRecord("SELECT count(filter_id) as number FROM mail_user_filter WHERE sys_groupid = ?", $client_group_id);
9f56bd 93                 if($tmp["number"] >= $client["limit_mailfilter"]) {
T 94                     $app->tform->errorMessage .= $app->tform->lng("limit_mailfilter_txt")."<br>";
95                 }
96                 unset($tmp);
97             }
98         } // end if user is not admin
7fe908 99
d1018a 100         parent::onSubmit();
T 101     }
7fe908 102
d1018a 103 }
T 104
105 $page = new page_action;
106 $page->onLoad();
107
7fe908 108 ?>