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
ISPConfig
ISPConfig 3
Commits
0c1bc352
Commit
0c1bc352
authored
Nov 15, 2015
by
Till Brehm
Browse files
Merge branch 'master' of git.ispconfig.org:ispconfig/ispconfig3
parents
c52fa27a
85fdab1f
Changes
4
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/apache2_plugin.inc.php
View file @
0c1bc352
...
...
@@ -595,7 +595,7 @@ class apache2_plugin {
//* Unmount the old log directory bfore we move the log dir
//exec('fuser -km '.escapeshellcmd($old_dir.'/log'));
exec
(
'umount '
.
escapeshellcmd
(
$
old_dir
.
'/log'
));
exec
(
'umount '
.
escapeshellcmd
(
$
data
[
'old'
][
'document_root'
]
.
'/log'
));
//* Create new base directory, if it does not exist yet
if
(
!
is_dir
(
$new_dir
))
$app
->
system
->
mkdirpath
(
$new_dir
);
...
...
@@ -691,7 +691,8 @@ class apache2_plugin {
$app
->
system
->
chmod
(
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
,
0755
);
exec
(
'mount --bind '
.
escapeshellarg
(
'/var/log/ispconfig/httpd/'
.
$data
[
'new'
][
'domain'
])
.
' '
.
escapeshellarg
(
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
));
//* add mountpoint to fstab
$fstab_line
=
'/var/log/ispconfig/httpd/'
.
$data
[
'new'
][
'domain'
]
.
' '
.
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
.
' none bind,nobootwait,_netdev 0 0'
;
$fstab_line
=
'/var/log/ispconfig/httpd/'
.
$data
[
'new'
][
'domain'
]
.
' '
.
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
.
' none bind,nobootwait'
;
$fstab_line
.
=
@
(
$web_config
[
'network_filesystem'
]
==
'y'
)
?
',_netdev 0 0'
:
' 0 0'
;
$app
->
system
->
replaceLine
(
'/etc/fstab'
,
$fstab_line
,
$fstab_line
,
1
,
1
);
}
...
...
server/plugins-available/mailman_plugin.inc.php
View file @
0c1bc352
...
...
@@ -73,7 +73,15 @@ class mailman_plugin {
$this
->
update_config
();
exec
(
"nohup /usr/lib/mailman/bin/newlist -u "
.
escapeshellcmd
(
$data
[
"new"
][
"domain"
])
.
" -e "
.
escapeshellcmd
(
$data
[
"new"
][
"domain"
])
.
" "
.
escapeshellcmd
(
$data
[
"new"
][
"listname"
])
.
" "
.
escapeshellcmd
(
$data
[
"new"
][
"email"
])
.
" "
.
escapeshellcmd
(
$data
[
"new"
][
"password"
])
.
" >/dev/null 2>&1 &"
);
$pid
=
exec
(
"nohup /usr/lib/mailman/bin/newlist -u "
.
escapeshellcmd
(
$data
[
"new"
][
"domain"
])
.
" -e "
.
escapeshellcmd
(
$data
[
"new"
][
"domain"
])
.
" "
.
escapeshellcmd
(
$data
[
"new"
][
"listname"
])
.
" "
.
escapeshellcmd
(
$data
[
"new"
][
"email"
])
.
" "
.
escapeshellcmd
(
$data
[
"new"
][
"password"
])
.
" >/dev/null 2>&1 & echo $!;"
);
// wait for /usr/lib/mailman/bin/newlist-call
$running
=
true
;
do
{
exec
(
'ps -p '
.
intval
(
$pid
),
$out
);
if
(
count
(
$out
)
==
1
)
$running
=
false
;
else
sleep
(
1
);
unset
(
$out
);
}
while
(
$running
);
unset
(
$out
);
if
(
is_file
(
'/var/lib/mailman/data/virtual-mailman'
))
exec
(
'postmap /var/lib/mailman/data/virtual-mailman'
);
if
(
is_file
(
'/var/lib/mailman/data/transport-mailman'
))
exec
(
'postmap /var/lib/mailman/data/transport-mailman'
);
exec
(
'nohup '
.
$conf
[
'init_scripts'
]
.
'/'
.
'mailman reload >/dev/null 2>&1 &'
);
...
...
server/plugins-available/nginx_plugin.inc.php
View file @
0c1bc352
...
...
@@ -476,7 +476,7 @@ class nginx_plugin {
//* Unmount the old log directory bfore we move the log dir
//exec('fuser -km '.escapeshellcmd($old_dir.'/log'));
exec
(
'umount '
.
escapeshellcmd
(
$
old_dir
.
'/log'
));
exec
(
'umount '
.
escapeshellcmd
(
$
data
[
'old'
][
'document_root'
]
.
'/log'
));
//* Create new base directory, if it does not exist yet
if
(
!
is_dir
(
$new_dir
))
$app
->
system
->
mkdirpath
(
$new_dir
);
...
...
@@ -572,7 +572,8 @@ class nginx_plugin {
$app
->
system
->
chmod
(
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
,
0755
);
exec
(
'mount --bind '
.
escapeshellarg
(
'/var/log/ispconfig/httpd/'
.
$data
[
'new'
][
'domain'
])
.
' '
.
escapeshellarg
(
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
));
//* add mountpoint to fstab
$fstab_line
=
'/var/log/ispconfig/httpd/'
.
$data
[
'new'
][
'domain'
]
.
' '
.
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
.
' none bind,nobootwait,_netdev 0 0'
;
$fstab_line
=
'/var/log/ispconfig/httpd/'
.
$data
[
'new'
][
'domain'
]
.
' '
.
$data
[
'new'
][
'document_root'
]
.
'/'
.
$log_folder
.
' none bind,nobootwait'
;
$fstab_line
.
=
@
(
$web_config
[
'network_filesystem'
]
==
'y'
)
?
',_netdev 0 0'
:
' 0 0'
;
$app
->
system
->
replaceLine
(
'/etc/fstab'
,
$fstab_line
,
$fstab_line
,
1
,
1
);
}
...
...
server/plugins-available/postfix_server_plugin.inc.php
View file @
0c1bc352
...
...
@@ -161,27 +161,30 @@ class postfix_server_plugin {
exec
(
'postfix reload'
);
}
if
(
$mail_config
[
"mailbox_virtual_uidgid_maps"
]
==
'y'
)
{
// If dovecot switch to lmtp
if
(
$app
->
system
->
is_installed
(
'dovecot'
))
{
exec
(
"postconf -e 'virtual_transport = lmtp:unix:private/dovecot-lmtp'"
);
exec
(
'postfix reload'
);
$app
->
system
->
replaceLine
(
"/etc/dovecot/dovecot.conf"
,
"protocols = imap pop3"
,
"protocols = imap pop3 lmtp"
);
exec
(
$conf
[
'init_scripts'
]
.
'/'
.
'dovecot restart'
);
}
}
else
{
// If dovecot switch to dovecot
if
(
$app
->
system
->
is_installed
(
'dovecot'
))
{
exec
(
"postconf -e 'virtual_transport = dovecot'"
);
exec
(
'postfix reload'
);
$app
->
system
->
replaceLine
(
"/etc/dovecot/dovecot.conf"
,
"protocols = imap pop3 lmtp"
,
"protocols = imap pop3"
);
exec
(
$conf
[
'init_scripts'
]
.
'/'
.
'dovecot restart'
);
if
(
$app
->
system
->
is_installed
(
'dovecot'
))
{
$temp
=
exec
(
"postconf -n virtual_transport"
,
$out
);
if
(
$mail_config
[
"mailbox_virtual_uidgid_maps"
]
==
'y'
)
{
// If dovecot switch to lmtp
if
(
$out
[
0
]
!=
"virtual_transport = lmtp:unix:private/dovecot-lmtp"
)
{
exec
(
"postconf -e 'virtual_transport = lmtp:unix:private/dovecot-lmtp'"
);
exec
(
'postfix reload'
);
$app
->
system
->
replaceLine
(
"/etc/dovecot/dovecot.conf"
,
"protocols = imap pop3"
,
"protocols = imap pop3 lmtp"
);
exec
(
$conf
[
'init_scripts'
]
.
'/'
.
'dovecot restart'
);
}
}
else
{
// If dovecot switch to dovecot
if
(
$out
[
0
]
!=
"virtual_transport = dovecot"
)
{
exec
(
"postconf -e 'virtual_transport = dovecot'"
);
exec
(
'postfix reload'
);
$app
->
system
->
replaceLine
(
"/etc/dovecot/dovecot.conf"
,
"protocols = imap pop3 lmtp"
,
"protocols = imap pop3"
);
exec
(
$conf
[
'init_scripts'
]
.
'/'
.
'dovecot restart'
);
}
}
}
exec
(
"postconf -e 'mailbox_size_limit = "
.
intval
(
$mail_config
[
'mailbox_size_limit'
]
*
1024
*
1024
)
.
"'"
);
exec
(
"postconf -e 'message_size_limit = "
.
intval
(
$mail_config
[
'message_size_limit'
]
*
1024
*
1024
)
.
"'"
);
exec
(
"postconf -e 'mailbox_size_limit = "
.
intval
(
$mail_config
[
'mailbox_size_limit'
]
*
1024
*
1024
)
.
"'"
);
//TODO : no reload?
exec
(
"postconf -e 'message_size_limit = "
.
intval
(
$mail_config
[
'message_size_limit'
]
*
1024
*
1024
)
.
"'"
);
//TODO : no reload?
}
...
...
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