forked from mkay/Exim4UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminaliasadd.php
88 lines (85 loc) · 3.82 KB
/
adminaliasadd.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
<?php
include_once dirname(__FILE__) . '/config/variables.php';
include_once dirname(__FILE__) . '/config/authpostmaster.php';
include_once dirname(__FILE__) . '/config/functions.php';
include_once dirname(__FILE__) . '/config/httpheaders.php';
$query = "SELECT avscan,spamassassin FROM domains
WHERE domain_id='{$_SESSION['domain_id']}'";
$result = $db->query($query);
if ($result->numRows()) { $row = $result->fetchRow(); }
?>
<!DOCTYPE HTML>
<html lang="en">
<head>
<title><?php echo _('Exim4U') . ': ' . _('Manage Users'); ?></title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<?php include dirname(__FILE__) . '/config/header.php'; ?>
<div class="navbar">
<div class="navbar-inner">
<ul id="menu" class="nav">
<li><a href="adminalias.php"><?php echo _('Manage Aliases'); ?></a></li>
<li class="divider"></li>
<li><a href="admin.php"><?php echo _('Main Menu'); ?></a></li>
<li><a href="logout.php"><?php echo _('Logout'); ?></a></li>
</ul>
</div>
</div>
<form name="adminadd" method="post" action="adminaliasaddsubmit.php">
<table>
<tr>
<td><?php echo _('Alias Name'); ?>:</td>
<td><input name="realname" type="text"></td>
</tr>
<tr>
<td><?php echo _('Address'); ?>:</td>
<td>
<div class="input-append">
<input name="localpart" type="text"><span class="add-on">@<?php print $_SESSION['domain']; ?></span>
</div>
</td>
</tr>
<tr>
<td colspan="2"><?php echo _('Multiple addresses should be comma separated, with no spaces.'); ?></td>
</tr>
<tr>
<td><?php echo _('Forward To'); ?>:</td>
<td><input name="smtp" type="text" size="30"></td>
</tr>
<tr>
<td><?php echo _('Password'); ?>:</td>
<td><input name="clear" type="password" size="30"></td>
</tr>
<tr>
<td colspan="2"><?php echo _('Password only needed if you want the user to be able to log in, or if the Alias is the admin account.'); ?></td>
</tr>
<tr>
<td><?php echo _('Verify Password'); ?>:</td>
<td><input name="vclear" type="password" size="30"></td>
</tr>
<tr>
<td><?php echo _('Admin'); ?>:</td>
<td><input name="admin" type="checkbox"></td>
</tr>
<tr>
<td><?php echo _('Enabled'); ?>:</td>
<td><input name="enabled" type="checkbox" checked></td>
</tr>
<tr>
<td></td>
<td><input class="btn" name="submit" type="submit" value="<?php echo _('Submit'); ?>"></td>
</tr>
</table>
</form>
</div>
</body>
</html>