Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
7ffd14a9
Commit
7ffd14a9
authored
Feb 10, 2014
by
Marius Cramer
Browse files
Fixed: Invalid choices for smtp crypt in interface config
parent
ae070732
Changes
4
Hide whitespace changes
Inline
Side-by-side
interface/web/admin/form/system_config.tform.php
View file @
7ffd14a9
...
...
@@ -287,9 +287,9 @@ $form["tabs"]['mail'] = array (
),
'smtp_crypt'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'
CHECKBOX
'
,
'default'
=>
'
n
'
,
'value'
=>
array
(
0
=>
'n'
,
1
=>
'y
'
)
'formtype'
=>
'
SELECT
'
,
'default'
=>
''
,
'value'
=>
array
(
''
=>
'No'
,
'ssl'
=>
'SSL'
,
'tls'
=>
'STARTTLS
'
)
),
//#################################
// ENDE Datatable fields
...
...
interface/web/admin/lib/lang/de_system_config.lng
View file @
7ffd14a9
...
...
@@ -65,4 +65,5 @@ $wb['customer_no_start_txt'] = 'Kundennummer Startwert';
$wb
[
'customer_no_counter_txt'
]
=
'Kundennummer Zähler'
;
$wb
[
'session_timeout_txt'
]
=
'Session-Timeout (Minuten)'
;
$wb
[
'session_allow_endless_txt'
]
=
'"Eingeloggt bleiben" aktivieren'
;
$wb
[
'No'
]
=
'Nein'
;
?>
\ No newline at end of file
interface/web/admin/lib/lang/en_system_config.lng
View file @
7ffd14a9
...
...
@@ -65,4 +65,5 @@ $wb['customer_no_start_txt'] = 'Customer No. start value';
$wb
[
'customer_no_counter_txt'
]
=
'Customer No. counter'
;
$wb
[
'session_timeout_txt'
]
=
'Session timeout (minutes)'
;
$wb
[
'session_allow_endless_txt'
]
=
'Enable "stay logged in"'
;
$wb
[
'No'
]
=
'No'
;
?>
interface/web/admin/templates/system_config_mail_edit.htm
View file @
7ffd14a9
...
...
@@ -62,10 +62,10 @@
<input
name=
"smtp_pass"
id=
"smtp_pass"
value=
""
size=
"30"
maxlength=
"255"
type=
"password"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<
p
class=
"label
"
>
{tmpl_var name='smtp_crypt_txt'}
</
p
>
<
div
class=
"multiField
"
>
<
label
for=
"smtp_crypt
"
>
{tmpl_var name='smtp_crypt_txt'}
</
label
>
<
select
name=
"smtp_crypt"
id=
"smtp_crypt"
class=
"selectInput formLengthHalf
"
>
{tmpl_var name='smtp_crypt'}
</
div
>
</
select
>
</div>
</fieldset>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment