SMTP TLS/SSL Labels to Match Thunderbird (#2293)

* TLS/SSL Labels to Match Thunderbird

Replaced TLS and SSL checkbox text to match the
defaults used by Mozilla Thunderbird to eliminate confusion when
configuring SMTP

* Add link to email server documentation

* Properly save changes

---------

Co-authored-by: Kevin Chung <kchung@ctfd.io>
This commit is contained in:
Peyton Duncan
2023-04-26 22:53:59 -06:00
committed by GitHub
parent 2a6f47d2ea
commit ab91e7df34

View File

@@ -133,6 +133,9 @@
<h5>Email Server</h5> <h5>Email Server</h5>
<small class="form-text text-muted"> <small class="form-text text-muted">
Change the email server used by CTFd to send email Change the email server used by CTFd to send email
<a class="float-right" href="https://docs.ctfd.io/docs/settings/emails#email-server" target="_blank">
<i class="far fa-question-circle pr-2"></i>
</a>
</small> </small>
<ul class="nav nav-tabs my-3" role="tablist"> <ul class="nav nav-tabs my-3" role="tablist">
<li class="nav-item active"> <li class="nav-item active">
@@ -221,13 +224,13 @@
<div class="form-check"> <div class="form-check">
<label> <label>
<input id="mail_ssl" name="mail_ssl" type="checkbox" {% if mail_ssl %}checked{% endif %}> <input id="mail_ssl" name="mail_ssl" type="checkbox" {% if mail_ssl %}checked{% endif %}>
SSL TLS/SSL
</label> </label>
</div> </div>
<div class="form-check"> <div class="form-check">
<label> <label>
<input id="mail_tls" name="mail_tls" type="checkbox" {% if mail_tls %}checked{% endif %}> <input id="mail_tls" name="mail_tls" type="checkbox" {% if mail_tls %}checked{% endif %}>
TLS STARTTLS
</label> </label>
</div> </div>
</div> </div>
@@ -259,4 +262,4 @@
</div> </div>
<button type="submit" class="btn btn-md btn-primary float-right">Update</button> <button type="submit" class="btn btn-md btn-primary float-right">Update</button>
</form> </form>
</div> </div>