Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
lolo888
ISPConfig 3
Commits
419eb7db
Commit
419eb7db
authored
Sep 07, 2011
by
tbrehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unnescessary -R parameter on chown of .mailfilter file.
parent
0c5b4264
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
install/lib/installer_base.lib.php
install/lib/installer_base.lib.php
+2
-2
No files found.
install/lib/installer_base.lib.php
View file @
419eb7db
...
...
@@ -717,10 +717,10 @@ class installer_base {
}
//* Chmod and chown the .mailfilter file
$command
=
'chown
-R
'
.
$cf
[
'vmail_username'
]
.
':'
.
$cf
[
'vmail_groupname'
]
.
' '
.
$cf
[
'vmail_mailbox_base'
]
.
'/.mailfilter'
;
$command
=
'chown '
.
$cf
[
'vmail_username'
]
.
':'
.
$cf
[
'vmail_groupname'
]
.
' '
.
$cf
[
'vmail_mailbox_base'
]
.
'/.mailfilter'
;
caselog
(
$command
.
" &> /dev/null"
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
$command
=
'chmod
-R
600 '
.
$cf
[
'vmail_mailbox_base'
]
.
'/.mailfilter'
;
$command
=
'chmod 600 '
.
$cf
[
'vmail_mailbox_base'
]
.
'/.mailfilter'
;
caselog
(
$command
.
" &> /dev/null"
,
__FILE__
,
__LINE__
,
"EXECUTED:
$command
"
,
"Failed to execute the command
$command
"
);
}
...
...
Write
Preview
Markdown
is supported
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