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
ISPConfig
ISPConfig 3
Commits
f9ba7fe6
Unverified
Commit
f9ba7fe6
authored
Nov 04, 2022
by
Helmo
Browse files
Fix undefined $postfix_version and generalize code,
#6405
parent
20a04da2
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/lib/installer_base.lib.php
View file @
f9ba7fe6
...
@@ -1071,6 +1071,14 @@ class installer_base {
...
@@ -1071,6 +1071,14 @@ class installer_base {
return
true
;
return
true
;
}
}
public
function
get_postfix_version
()
{
//* Get postfix version
exec
(
'postconf -d mail_version 2>&1'
,
$out
);
$postfix_version
=
preg_replace
(
'/.*=\s*/'
,
''
,
$out
[
0
]);
unset
(
$out
);
return
$postfix_version
;
}
public
function
configure_postfix
(
$options
=
''
)
{
public
function
configure_postfix
(
$options
=
''
)
{
global
$conf
,
$autoinstall
;
global
$conf
,
$autoinstall
;
$cf
=
$conf
[
'postfix'
];
$cf
=
$conf
[
'postfix'
];
...
@@ -1080,10 +1088,7 @@ class installer_base {
...
@@ -1080,10 +1088,7 @@ class installer_base {
$this
->
error
(
"The postfix configuration directory '
$config_dir
' does not exist."
);
$this
->
error
(
"The postfix configuration directory '
$config_dir
' does not exist."
);
}
}
//* Get postfix version
$postfix_version
=
$this
->
get_postfix_version
();
exec
(
'postconf -d mail_version 2>&1'
,
$out
);
$postfix_version
=
preg_replace
(
'/.*=\s*/'
,
''
,
$out
[
0
]);
unset
(
$out
);
//* Install virtual mappings
//* Install virtual mappings
foreach
(
glob
(
'tpl/mysql-virtual_*.master'
)
as
$filename
)
{
foreach
(
glob
(
'tpl/mysql-virtual_*.master'
)
as
$filename
)
{
...
@@ -1482,8 +1487,7 @@ class installer_base {
...
@@ -1482,8 +1487,7 @@ class installer_base {
$config_dir
=
$conf
[
'postfix'
][
'config_dir'
];
$config_dir
=
$conf
[
'postfix'
][
'config_dir'
];
$quoted_config_dir
=
preg_quote
(
$config_dir
,
'|'
);
$quoted_config_dir
=
preg_quote
(
$config_dir
,
'|'
);
$postfix_version
=
`postconf -d mail_version 2>/dev/null`
;
$postfix_version
=
$this
->
get_postfix_version
();
$postfix_version
=
preg_replace
(
'/mail_version\s*=\s*(.*)\s*/'
,
'$1'
,
$postfix_version
);
//* Configure master.cf and add a line for deliver
//* Configure master.cf and add a line for deliver
if
(
!
$this
->
get_postfix_service
(
'dovecot'
,
'unix'
))
{
if
(
!
$this
->
get_postfix_service
(
'dovecot'
,
'unix'
))
{
...
@@ -1725,6 +1729,7 @@ class installer_base {
...
@@ -1725,6 +1729,7 @@ class installer_base {
break
;
break
;
}
}
}
}
$postfix_version
=
$this
->
get_postfix_version
();
# postfix < 3.3 needs this when using reject_unverified_recipient:
# postfix < 3.3 needs this when using reject_unverified_recipient:
if
(
version_compare
(
$postfix_version
,
3.3
,
'<'
))
{
if
(
version_compare
(
$postfix_version
,
3.3
,
'<'
))
{
$postconf_commands
[]
=
"enable_original_recipient = yes"
;
$postconf_commands
[]
=
"enable_original_recipient = yes"
;
...
...
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