forked from web-cyradm/web-cyradm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
newdomain.php
297 lines (271 loc) · 6.59 KB
/
newdomain.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?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();
}
?>
<!-- #################### newdomain.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) {
?>
<h3>
<?php print _("Add new domain");?>
</h3>
<?php
if (empty($_GET['confirmed'])){
?>
<form action="index.php" method="get" style="border: 0px double green;" name="mainform">
<input type="hidden" name="action" value="newdomain">
<input type="hidden" name="confirmed" value="true">
<table>
<tr>
<td>
<?php
print _("Domainname");
?>
</td>
<td>
<input
class="inputfield"
type="text"
size="20"
name="domain"> <a href="javascript:display('ace.php?domain='+document.mainform.domain.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="8"
name="prefix"
>
</td>
</tr>
<!-- START Andreas Kreisl : freenames -->
<tr>
<td>
<?php print _("Allow Free Names");?>
</td>
<td>
<input
class="inputfield"
type="checkbox"
name="freenames"
value="Done by Andreas Kreisl"
>
</td>
</tr>
<!-- END Andreas Kreisl : freenames -->
<?php
}
?>
<tr>
<td>
<?php print _("Allow Free Mail Addresses");?>
</td>
<td>
<input
class="inputfield"
type="checkbox"
name="freeaddress"
>
</td>
</tr>
<tr>
<td>
<?php print _("Maximum Accounts");?>
</td>
<td>
<input
class="inputfield"
type="text"
size="2"
name="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 $DEFAULT_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 $DEFAULT_DOMAIN_QUOTA; ?>"> (0 = <?php print _("Quota not set"); ?>)
</td>
<tr>
<td colspan="2">
<p>
</p>
</td>
</tr>
</table>
<h4>
<?php print _("Standard Folders");?>
</h4>
<table>
<tr>
<td>
<?php print _("Forders which are automaticaly created for every new account (comma separated list)");?>
</td>
</tr>
<tr>
<td>
<input class="inputfield" type="text" name="defaultfolders" size="80">
</td>
</tr>
</table>
<!--
<h4>
<?php print _("Standard Mailboxes");?>
</h4>
<table>
<tr>
<td>
<?php print _("emailadress where the default aliases should be mapped (empty means no mapping)");?>
</td>
</tr>
<tr>
<td>
<input
class="inputfield"
type="text"
name="defaultaliases"
>
</td>
</tr>
</table>
-->
<h4>
<?php print _("Mail transport");?>
</h4>
<?php print _("Leave this as is, unless you know what you are doing");?>
<table>
<tr>
<td>
<select
name="transport"
class="selectfield">
<option
selected
value="cyrus">cyrus</option>
<option
value="lmtp">lmtp</option>
<option
value="smtp">smtp</option>
<option
value="uucp">uucp</option>
</select>
</td>
<td>
<?php print _("Parameter");?>
<input
class="inputfield"
type="text"
name="tparam"
>
</td>
</tr>
</table>
<table>
<tr>
<td>
<input
class="button"
type="submit"
value="<?php print _("Submit"); ?>">
</td>
</tr>
</table>
</form>
<?php
} else { // If (empty($_GET['confirmed'])
if ($DOMAIN_AS_PREFIX) {
$_GET['prefix'] = $_GET['domain'];
}
if ($_GET['transport'] != "cyrus") {
$trans = $_GET['transport'].":".$_GET['tparam'];
} else {
$trans = 'cyrus';
}
// START Andreas Kreisl : freenames
if (!empty($_GET['freenames'])) {
$freenames = "YES";
} else {
$freenames = "NO";
}
if (!empty($_GET['freeaddress'])) {
$freeaddress = "YES";
} else {
$freeaddress = "NO";
}
$query = "INSERT INTO domain (domain_name, prefix, maxaccounts, quota, domainquota, transport,freenames,freeaddress,folders) VALUES ('".$_GET['domain']."', '".$_GET['prefix']."', '".$_GET['maxaccounts']."', '".$_GET['quota']."', '".$_GET['domainquota']."', '".$trans."', '".$freenames."', '".$freeaddress."','".$_GET['defaultfolders']."')";
// END Andreas Kreisl : freenames
$result = $handle->query($query);
if (!DB::isError($result)){
?>
<h3>
<?php print _("Successfully added");?>:
<span style="color: red;">
<?php echo $_GET['domain'];?>
</span>
</h3>
<?php
} else {
?>
<h3>
<?php print _("Database error (newdomain 277), please try again");?>
<?php # echo get_var_dump($result); ?>
</h3>
<?php
}
include WC_BASE . "/browse.php";
} // If (empty($_GET['confirmed'])
} else { // If ($authorized)
?>
<h3>
<?php echo $err_msg;?>
</h3>
<a href="index.php?action=browse"><?php print _("Back");?></a>
<?php
}
?>
</td>
</tr>
<!-- #################### newdomain.php end #################### -->