forked from web-cyradm/web-cyradm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editdomain.php
278 lines (255 loc) · 7.63 KB
/
editdomain.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
if (!defined('WC_BASE')) define('WC_BASE', dirname(__FILE__));
$ref=WC_BASE."/index.php";
if ($ref!=$_SERVER['SCRIPT_FILENAME']){
header("Location: index.php");
exit();
}
?>
<!-- #################### editdomain.php start #################### -->
<script>
<!--
function display(url, nam, width, height) {
window.open(url,nam,'width=' + width + ',height=' + height + ',screenX=40,screenY=30,resizable=0,scrollbars=no,menubar=no,status=no,location=no,toolbar=no,top=220,left=180');
}
// -->
</script>
<tr>
<td width="10"> </td>
<td valign="top">
<?php
if ($authorized) {
if (!empty($_GET['confirmed'])){
if ($DOMAIN_AS_PREFIX) {
$_GET['newprefix'] = $_GET['domain'];
}
// START Andreas Kreisl : freenames
if (!empty($_GET['freenames'])){
$freenames = "YES";
} else {
$freenames = "NO";
}
if (!empty($_GET['freeaddress'])){
$freeaddress = "YES";
} else {
$freeaddress = "NO";
}
// END Andreas Kreisl : freenames
$query_result = true;
$query = "UPDATE domain SET domain_name='".$_GET['newdomain']."', maxaccounts='".$_GET['maxaccounts']."', quota='".$_GET['quota']."', domainquota='".$_GET['domainquota']."', freenames='".$freenames."',freeaddress='".$freeaddress."', folders='".$_GET['defaultfolders']."', prefix='".$_GET['newprefix']."' WHERE domain_name='".$_GET['domain']."'";
$result = $handle->query($query);
if (DB::isError($result)){
$query_result = false;
}
if ($_GET['newdomain'] != $_GET['domain']) {
// update accounts to be associated to the new domain
$query = "UPDATE accountuser SET domain_name='".$_GET['newdomain']."' WHERE domain_name='".$_GET['domain']."'";
$result = $handle->query($query);
if (DB::isError($result)){
$query_result = false;
}
// update domainadmins to have rights transferred to the new domainname
$query = "UPDATE domainadmin SET domain_name='".$_GET['newdomain']."' WHERE domain_name='".$_GET['domain']."'";
$result = $handle->query($query);
if (DB::isError($result)){
$query_result = false;
}
// update aliases to be associated to the new domain
$query = "UPDATE `virtual` SET username='".$_GET['newdomain']."' WHERE username='".$_GET['domain']."'";
$result = $handle->query($query);
if (DB::isError($result)){
$query_result = false;
}
// ok, everything ok so far. now let's update all aliases and destinations to the new domainname.
$query = "SELECT alias FROM `virtual` WHERE alias LIKE '%".$_GET['domain']."'";
$result = $handle->query($query);
$cnt = $result->numRows();
for($i=0; $i < $cnt; $i++){
$row = $result->fetchRow();
$oldalias = $row['alias'];
$newalias = preg_replace("/".preg_quote($_GET['domain'])."/", $_GET['newdomain'], $oldalias);
$query = "UPDATE `virtual` SET alias = '".$newalias."' WHERE alias = '".$oldalias."'";
$result1 = $handle->query($query);
$query = "UPDATE `virtual` SET dest = '".$newalias."' WHERE dest = '".$oldalias."'";
$result2 = $handle->query($query);
}
}
if ($query_result) {
?>
<h3>
<?php print _("Successfully changed domain");?>:
<span style="color: red;">
<?php echo $_GET['domain']; ?>
</span>
</h3>
<?php
include WC_BASE . "/browse.php";
} else {
?>
<h3>
<?php print _("Database error (editdomain 94), please try again");?>
</h3>
<?php
}
} elseif (empty($_GET['confirmed'])) {
$query = "SELECT * FROM domain WHERE domain_name='".$_GET['domain']."'";
$result = $handle->query($query);
$row = $result->fetchRow(DB_FETCHMODE_ASSOC, 0);
$domain = $row['domain_name'];
$prefix = $row['prefix'];
$maxaccounts = $row['maxaccounts'];
$quota = $row['quota'];
$domainquota = $row['domainquota'];
// START Andreas Kreisl : freenames
$freenames = $row['freenames'];
// END Andreas Kreisl : freenames
$freeaddress = $row['freeaddress'];
$folders = $row['folders'];
?>
<form action="index.php" method="get" name="mainform">
<input type="hidden" name="action" value="editdomain">
<input type="hidden" name="confirmed" value="true">
<input type="hidden" name="domain" value="<?php print $domain ?>">
<input type="hidden" name="prefix" value="<?php print $prefix ?>">
<table>
<tr>
<td>
<?php print _("Domainname");?>
</td>
<td>
<input class="inputfield"
type="text" size="30"
name="newdomain"
value="<?php print $domain;?>"
> <a href="javascript:display('ace.php?newdomain='+document.mainform.newdomain.value+'&charset=<?php echo $charset; ?>','ACE',300,200);">Get ACE string</a>
</td>
</tr>
<?php if ($DOMAIN_AS_PREFIX == 0) { ?>
<tr>
<td>
<?php print _("Prefix");?>
</td>
<td>
<input class="inputfield"
type="text"
size="30"
name="newprefix"
value="<?php print $prefix; ?>"
>
</td>
</tr>
<!-- // START Andreas Kreisl : freenames -->
<tr>
<td>
<?php print _("Allow Free Names");?>
</td>
<td>
<input class="inputfield"
type="checkbox"
name="freenames"
<?php
if ($freenames == "YES") {
echo "checked";
}
?>
>
</td>
</tr>
<!-- // END Andreas Kreisl : freenames -->
<?php
}
?>
<tr>
<td>
<?php print _("Allow Free Mail Addresses");?>
</td>
<td>
<input class="inputfield"
type="checkbox"
name="freeaddress"
<?php
if ($freeaddress == "YES") {
echo "checked";
}
?>
>
</td>
</tr>
<tr>
<td width="150">
<?php print _("Maximum Accounts");?>
</td>
<td>
<input class="inputfield"
type="text" size="4"
name="maxaccounts"
value="<?php print $maxaccounts; ?>"
>
</td>
</tr>
<tr>
<td>
<?php print _("Default Quota in Kilobytes");?>
</td>
<td>
<input class="inputfield"
type="text" size="15"
name="quota"
value="<?php print $quota; ?>"
>
</td>
</tr>
<tr>
<td>
<?php print _("Quota for Domain in Kilobytes");?>
</td>
<td>
<input class="inputfield"
type="text" size="15"
name="domainquota"
value="<?php print $domainquota; ?>"
> (0 = <?php print _("Quota not set"); ?>)
</td>
</tr>
<tr>
<td colspan="2">
<b><?php print _("Standard Folders");?></b>
<?php echo "<br>";
print _("Forders which are automaticaly created for every new account (comma separated list)");?>
</td>
</tr>
<tr>
<td colspan="2">
<input class="inputfield"
type="text" size="80"
name="defaultfolders"
value="<?php print $folders; ?>"
>
</td>
</tr>
</table>
<tr>
<td colspan="2" align="center">
<input
class="button"
type="submit"
value="<?php print _("Submit"); ?>"
>
</td>
</tr>
</table>
</form>
<?php
} // End of if (empty($confirmed))
} else {
?>
<h3>
<?php print $err_msg;?>
</h3>
<a href="index.php?action=browse"><?php print _("Back");?></a>
<?php
} // End of if ($authorized)
?>
</td>
</tr>
<!-- #################### editdomain.php end #################### -->