Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tommaso Perondi
ISPConfig 3
Commits
b79f6ca2
Commit
b79f6ca2
authored
Oct 19, 2014
by
Till Brehm
Browse files
Improved dovecot version detection in installer for Fedora and CentOS.
parent
1fc360df
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
b79f6ca2
...
...
@@ -416,18 +416,19 @@ class installer_dist extends installer_base {
//* Get the dovecot version
exec
(
'dovecot --version'
,
$tmp
);
$parts
=
explode
(
'.'
,
trim
(
$tmp
[
0
]));
$dovecot_version
=
$parts
[
0
];
$dovecot_version
=
$tmp
[
0
];
unset
(
$tmp
);
unset
(
$parts
);
//* Copy dovecot configuration file
if
(
$dovecot_version
=
=
2
)
{
if
(
version_compare
(
$dovecot_version
,
2
)
>
=
0
)
{
if
(
is_file
(
$conf
[
'ispconfig_install_dir'
]
.
'/server/conf-custom/install/fedora_dovecot2.conf.master'
))
{
copy
(
$conf
[
'ispconfig_install_dir'
]
.
'/server/conf-custom/install/fedora_dovecot2.conf.master'
,
$config_dir
.
'/'
.
$configfile
);
}
else
{
copy
(
'tpl/fedora_dovecot2.conf.master'
,
$config_dir
.
'/'
.
$configfile
);
}
if
(
version_compare
(
$dovecot_version
,
2.1
)
<
0
)
{
removeLine
(
$config_dir
.
'/'
.
$configfile
,
'ssl_protocols ='
);
}
}
else
{
if
(
is_file
(
$conf
[
'ispconfig_install_dir'
]
.
'/server/conf-custom/install/fedora_dovecot.conf.master'
))
{
copy
(
$conf
[
'ispconfig_install_dir'
]
.
'/server/conf-custom/install/fedora_dovecot.conf.master'
,
$config_dir
.
'/'
.
$configfile
);
...
...
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