Merge pull request #38 from serghey-rodin/master

Update from official vesta github
This commit is contained in:
myvesta 2019-10-03 16:22:09 +02:00 committed by GitHub
commit 619874873a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 17 additions and 13 deletions

View file

@ -1,7 +1,7 @@
Source: vesta-ioncube
Package: vesta-ioncube
Priority: optional
Version: 0.9.8-25
Version: 0.9.8-26
Section: admin
Maintainer: Serghey Rodin <skid@vestacp.com>
Homepage: https://www.ioncube.com

View file

@ -1,7 +1,7 @@
Source: vesta-nginx
Package: vesta-nginx
Priority: optional
Version: 0.9.8-25
Version: 0.9.8-26
Section: admin
Maintainer: Predrag Damnjanovic <predrag@myvestacp.com>
Homepage: http://myvestacp.com

View file

@ -1,7 +1,7 @@
Source: vesta-php
Package: vesta-php
Priority: optional
Version: 0.9.8-25
Version: 0.9.8-26
Section: admin
Maintainer: Predrag Damnjanovic <predrag@myvestacp.com>
Homepage: http://myvestacp.com

View file

@ -1,7 +1,7 @@
Source: vesta-softaculous
Package: vesta-softaculous
Priority: optional
Version: 0.9.8-25
Version: 0.9.8-26
Section: admin
Maintainer: Serghey Rodin <skid@vestacp.com>
Homepage: https://www.softaculous.com

View file

@ -1,7 +1,7 @@
Source: vesta
Package: vesta
Priority: optional
Version: 0.9.8-25
Version: 0.9.8-26
Section: admin
Maintainer: Predrag Damnjanovic <predrag@myvestacp.com>
Homepage: http://myvestacp.com

View file

@ -1,6 +1,6 @@
Name: vesta-ioncube
Version: 0.9.8
Release: 25
Release: 26
Summary: ionCube Loader
Group: System Environment/Base
License: "Freely redistributable without restriction"

View file

@ -1,6 +1,6 @@
Name: vesta-nginx
Version: 0.9.8
Release: 25
Release: 26
Summary: Vesta Control Panel
Group: System Environment/Base
License: BSD-like

View file

@ -1,6 +1,6 @@
Name: vesta-php
Version: 0.9.8
Release: 25
Release: 26
Summary: Vesta Control Panel
Group: System Environment/Base
License: GPL

View file

@ -1,6 +1,6 @@
Name: vesta-softaculous
Version: 0.9.8
Release: 25
Release: 26
Summary: Vesta Control Panel
Group: System Environment/Base
License: Softaculous License

View file

@ -1,6 +1,6 @@
Name: vesta
Version: 0.9.8
Release: 25
Release: 26
Summary: Vesta Control Panel
Group: System Environment/Base
License: GPL
@ -68,6 +68,9 @@ fi
%config(noreplace) %{_vestadir}/web/css/uploadify.css
%changelog
* Sat Sep 29 2019 Serghey Rodin <builder@vestacp.com> - 0.9.8-26
- Let's Encrypt HTTP/2 support
* Thu Aug 15 2019 Serghey Rodin <builder@vestacp.com> - 0.9.8-25
- Security bugfixes
- LEv2 idn fix

View file

@ -5,4 +5,4 @@ rm -f /usr/local/vesta/data/users/admin/notifications.conf
/usr/local/vesta/bin/v-add-user-notification admin "File Manager" "Browse, copy, edit, view, and retrieve all your web domain files using a fully featured <a href='http://vestacp.com/features/#filemanager'>File Manager</a>. Plugin is available for <a href='/edit/server/?lead=filemanager#module-filemanager'>purchase</a>." 'filemanager'
/usr/local/vesta/bin/v-add-user-notification admin "Chroot SFTP" "If you want to have SFTP accounts that will be used only to transfer files (and not to SSH), you can <a href='/edit/server/?lead=sftp#module-sftp'>purchase</a> and enable <a href='http://vestacp.com/features/#sftpchroot'>SFTP Chroot</a>"
/usr/local/vesta/bin/v-add-user-notification admin "Softaculous" "Softaculous is one of the best Auto Installers and it is finally <a href='/edit/server/?lead=sftp#module-softaculous'>available</a>"
/usr/local/vesta/bin/v-add-user-notification admin "Release 0.9.8-25" "This release is about stability and refinement. We added Let's Encrypt v2 support and added server certificate management tools. For more information please read <a href='http://vestacp.com/history/#0.9.8-25'>release notes</a>"
/usr/local/vesta/bin/v-add-user-notification admin "Release 0.9.8-26" "This release adds support for Lets Encrypt HTTP/2. For more information please read <a href='http://vestacp.com/history/#0.9.8-26'>release notes</a>"

View file

@ -72,13 +72,14 @@ if ((!empty($_GET['domain'])) && (!empty($_GET['account']))) {
$v_domain = escapeshellarg($_GET['domain']);
$v_account = escapeshellarg($_GET['account']);
$v_account_without_quotas = $_GET['account'];
// Parse autoreply
if ( $v_autoreply == 'yes' ) {
exec (VESTA_CMD."v-list-mail-account-autoreply ".$user." ".$v_domain." ".$v_account." json", $output, $return_var);
$autoreply_str = json_decode(implode('', $output), true);
unset($output);
$v_autoreply_message = $autoreply_str[$v_account]['MSG'];
$v_autoreply_message = $autoreply_str[$v_account_without_quotas]['MSG'];
$v_autoreply_message=str_replace("\\n", "\n", $v_autoreply_message);
}
}

View file

@ -758,5 +758,5 @@ $LANG['nl'] = array(
'maximum characters length, including prefix' => 'maximaal %s karakters lang, inclusief prefix',
'Email Credentials' => 'Email Credentials',
'Email Credentials' => 'E-mailreferenties',
);