forked from forgejo/forgejo
#1542 A way to skip TLS verify for SMTP authentication
This commit is contained in:
parent
384fbeca80
commit
ea454c21f7
9 changed files with 106 additions and 89 deletions
|
@ -12,9 +12,9 @@
|
|||
<div class="panel-header">
|
||||
<strong>{{.i18n.Tr "admin.auths.edit"}}</strong>
|
||||
</div>
|
||||
<form class="form form-align panel-body" id="auth-setting-form" action="{{AppSubUrl}}/admin/auths/{{.Source.Id}}" data-delete-url="{{AppSubUrl}}/admin/auths/{{.Source.Id}}/delete" method="post">
|
||||
<form class="form form-align panel-body" id="auth-setting-form" action="{{AppSubUrl}}/admin/auths/{{.Source.ID}}" data-delete-url="{{AppSubUrl}}/admin/auths/{{.Source.ID}}/delete" method="post">
|
||||
{{.CsrfTokenHtml}}
|
||||
<input type="hidden" value="{{.Source.Id}}" name="id"/>
|
||||
<input type="hidden" value="{{.Source.ID}}" name="id"/>
|
||||
{{$type := .Source.Type}}
|
||||
<div class="field">
|
||||
<label>{{.i18n.Tr "admin.auths.auth_type"}}</label>
|
||||
|
@ -109,6 +109,10 @@
|
|||
<input name="tls" type="checkbox" {{if .Source.SMTP.TLS}}checked{{end}}>
|
||||
<strong>{{.i18n.Tr "admin.auths.enable_tls"}}</strong>
|
||||
<br>
|
||||
<label></label>
|
||||
<input name="skip_verify" type="checkbox" {{if .Source.SMTP.SkipVerify}}checked{{end}}>
|
||||
<strong>{{.i18n.Tr "admin.auths.skip_tls_verify"}}</strong>
|
||||
<br>
|
||||
{{end}}
|
||||
<label></label>
|
||||
<input name="allowautoregister" type="checkbox" {{if .Source.AllowAutoRegister}}checked{{end}}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue