forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_mail_acc.php
More file actions
126 lines (121 loc) · 5.46 KB
/
add_mail_acc.php
File metadata and controls
126 lines (121 loc) · 5.46 KB
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
<!-- Begin toolbar -->
<div class="toolbar">
<div class="toolbar-inner">
<div class="toolbar-buttons">
<a class="button button-secondary button-back js-button-back" href="/list/mail/?domain=<?= htmlentities(trim($v_domain, "'")) ?>&token=<?= $_SESSION["token"] ?>">
<i class="fas fa-arrow-left icon-blue"></i><?= _("Back") ?>
</a>
</div>
<div class="toolbar-buttons">
<button type="submit" class="button" form="main-form">
<i class="fas fa-floppy-disk icon-purple"></i><?= _("Save") ?>
</button>
</div>
</div>
</div>
<!-- End toolbar -->
<div class="container">
<form
x-data="{
showAdvanced: <?= empty($v_adv) ? "false" : "true" ?>
}"
id="main-form"
name="v_add_mail_acc"
method="post"
>
<input type="hidden" name="token" value="<?= $_SESSION["token"] ?>">
<input type="hidden" name="ok_acc" value="add">
<div class="form-container form-container-wide">
<h1 class="u-mb20"><?= _("Add Mail Account") ?></h1>
<?php show_alert_message($_SESSION); ?>
<div class="sidebar-right-grid">
<div class="sidebar-right-grid-content">
<div class="u-mb10">
<label for="v_domain" class="form-label"><?= _("Domain") ?></label>
<input type="text" class="form-control" name="v_domain" id="v_domain" value="<?= htmlentities(trim($v_domain, "'")) ?>" disabled>
<input type="hidden" name="v_domain" value="<?= htmlentities(trim($v_domain, "'")) ?>">
</div>
<div class="u-mb10">
<label for="v_account" class="form-label"><?= _("Account") ?></label>
<input type="text" class="form-control js-account-input" name="v_account" id="v_account" value="<?= htmlentities(trim($v_account, "'")) ?>" required>
</div>
<div class="u-mb10">
<label for="v_password" class="form-label">
<?= _("Password") ?>
<button type="button" title="<?= _("Generate") ?>" class="u-unstyled-button u-ml5 js-generate-password">
<i class="fas fa-arrows-rotate icon-green"></i>
</button>
</label>
<div class="u-pos-relative u-mb10">
<input type="text" class="form-control js-password-input" name="v_password" id="v_password" required>
<div class="password-meter">
<meter max="4" class="password-meter-input js-password-meter"></meter>
</div>
</div>
</div>
<p class="u-mb10"><?= _("Your password must have at least") ?>:</p>
<ul class="u-list-bulleted u-mb20">
<li><?= _("8 characters long") ?></li>
<li><?= _("1 uppercase & 1 lowercase character") ?></li>
<li><?= _("1 number") ?></li>
</ul>
<button x-on:click="showAdvanced = !showAdvanced" type="button" class="button button-secondary u-mb20">
<?= _("Advanced Options") ?>
</button>
<div x-cloak x-show="showAdvanced" id="advtable">
<div class="u-mb10">
<label for="v_quota" class="form-label">
<?= _("Quota") ?> <span class="optional">(<?= _("in MB") ?>)</span>
</label>
<div class="u-pos-relative">
<input type="text" class="form-control" name="v_quota" id="v_quota" value="<?= htmlentities(trim($v_quota, "'")) ?>">
<button type="button" class="unlimited-toggle js-unlimited-toggle" title="<?= _("Unlimited") ?>">
<i class="fas fa-infinity"></i>
</button>
</div>
</div>
<div class="u-mb10">
<label for="v_aliases" class="form-label">
<?= _("Aliases") ?> <span class="optional">(<?= _("Use local-part without domain name") ?>)</span>
</label>
<textarea class="form-control" name="v_aliases" id="v_aliases"><?= htmlentities(trim($v_aliases, "'")) ?></textarea>
</div>
<div class="u-mb10">
<label for="v_fwd" class="form-label">
<?= _("Forward to") ?> <span class="optional">(<?= _("One or more email addresses") ?>)</span>
</label>
<textarea class="form-control js-forward-to-textarea" name="v_fwd" id="v_fwd" <?php if ($v_blackhole == 'yes') echo "disabled"; ?>><?= htmlentities(trim($v_fwd, "'")) ?></textarea>
</div>
<div class="form-check">
<input class="form-check-input js-discard-all-mail" type="checkbox" name="v_blackhole" id="v_blackhole" <?php if ($v_blackhole == 'yes') echo 'checked' ?>>
<label for="v_blackhole">
<?= _("Discard all mail") ?>
</label>
</div>
<div class="form-check <?php if ($v_blackhole == 'yes') { echo 'u-hidden'; } ?>">
<input class="form-check-input js-do-not-store-checkbox" type="checkbox" name="v_fwd_only" id="v_fwd_for" <?php if ($v_fwd_only == 'yes') echo 'checked' ?>>
<label for="v_fwd_for">
<?= _("Do not store forwarded mail") ?>
</label>
</div>
<div class="u-mt10 u-mb10">
<label for="v_rate" class="form-label">
<?= _("Rate Limit") ?> <span class="optional">(<?= _("email / hour") ?>)</span>
</label>
<input type="text" class="form-control" name="v_rate" id="v_rate" value="<?= htmlentities(trim($v_rate, "'")) ?>" <?php if ($_SESSION['userContext'] != "admin"){ echo "disabled"; }?>>
</div>
</div>
<div class="u-mt15 u-mb20">
<label for="v_send_email" class="form-label">
<?= _("Email login credentials to:") ?>
</label>
<input type="email" class="form-control" name="v_send_email" id="v_send_email" value="<?= htmlentities(trim($v_send_email, "'")) ?>">
</div>
</div>
<div class="sidebar-right-grid-sidebar">
<?php require $_SERVER["HESTIA"] . "/web/templates/includes/email-settings-panel.php"; ?>
</div>
</div>
</div>
</form>
</div>