mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-12-25 07:47:05 +00:00
SMTP Relay Host stub progress
This commit is contained in:
parent
3278c8cf94
commit
10993b9154
@ -1,6 +1,14 @@
|
|||||||
<style>
|
<style>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function checklocks() {
|
||||||
|
let use_auth = document.getElementById("relay_use_auth").checked
|
||||||
|
document.getElementById("relay_auth_user").disabled = !use_auth
|
||||||
|
document.getElementById("relay_auth_pass").disabled = !use_auth
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
<h2>SMTP Relays</h2>
|
<h2>SMTP Relays</h2>
|
||||||
|
|
||||||
<p>SMTP Relays are third-party services you can hand off the responsability of getting the mail delivered. They
|
<p>SMTP Relays are third-party services you can hand off the responsability of getting the mail delivered. They
|
||||||
@ -23,6 +31,13 @@
|
|||||||
<input type="text" class="form-control" id="relay_host" placeholder="host.domain.tld">
|
<input type="text" class="form-control" id="relay_host" placeholder="host.domain.tld">
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
<td style="padding: 0 1em; font-weight: bold;">:587</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<label for="vehicle1"> Use authentication</label>
|
||||||
|
<input type="checkbox" id="relay_use_auth" name="relay_use_auth" value="true"
|
||||||
|
onclick="checklocks();">
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user