Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
ac28b53f
Commit
ac28b53f
authored
Sep 22, 2011
by
tbrehm
Browse files
Removed message from installer.
parent
4be8f776
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/lib/installer_base.lib.php
View file @
ac28b53f
...
...
@@ -123,7 +123,7 @@ class installer_base {
if
(
is_installed
(
'courierlogger'
))
$conf
[
'courier'
][
'installed'
]
=
true
;
if
(
is_installed
(
'dovecot'
))
$conf
[
'dovecot'
][
'installed'
]
=
true
;
if
(
is_installed
(
'saslauthd'
))
$conf
[
'saslauthd'
][
'installed'
]
=
true
;
if
(
is_installed
(
'amavisd-new'
))
$conf
[
'amavis'
][
'installed'
]
=
true
;
if
(
is_installed
(
'amavisd-new'
)
||
is_installed
(
'amavisd'
)
)
$conf
[
'amavis'
][
'installed'
]
=
true
;
if
(
is_installed
(
'clamdscan'
))
$conf
[
'clamav'
][
'installed'
]
=
true
;
if
(
is_installed
(
'pure-ftpd'
)
||
is_installed
(
'pure-ftpd-wrapper'
))
$conf
[
'pureftpd'
][
'installed'
]
=
true
;
if
(
is_installed
(
'mydns'
)
||
is_installed
(
'mydns-ng'
))
$conf
[
'mydns'
][
'installed'
]
=
true
;
...
...
@@ -924,12 +924,7 @@ class installer_base {
$postconf_commands
=
array
();
// Check for amavisd -> pure webserver with postfix for mailing without antispam
// Check for different names
system
(
'which amavisd-new'
,
$retval
);
// Debian, Ubuntu, ?
if
(
$retval
!==
0
){
system
(
'which amavisd'
,
$retval
);
// CentOS
}
if
(
$retval
===
0
)
{
if
(
$conf
[
'amavis'
][
'installed'
])
{
$postconf_commands
[]
=
'content_filter = amavis:[127.0.0.1]:10024'
;
$postconf_commands
[]
=
'receive_override_options = no_address_mappings'
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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