Marius Burkard
2016-03-23 f964bf7e7403578e787ce5519d9e63c074967242
Merge branch 'stable-3.1'
9 files modified
179 ■■■■ changed files
install/lib/installer_base.lib.php 2 ●●● patch | view | raw | blame | history
install/tpl/nginx_apps.vhost.master 4 ●●●● patch | view | raw | blame | history
install/tpl/nginx_ispconfig.vhost.master 4 ●●●● patch | view | raw | blame | history
interface/web/admin/form/server_config.tform.php 2 ●●● patch | view | raw | blame | history
interface/web/dns/dns_import.php 154 ●●●● patch | view | raw | blame | history
server/conf/nginx_apps.vhost.master 5 ●●●●● patch | view | raw | blame | history
server/conf/php_fpm_pool.conf.master 4 ●●● patch | view | raw | blame | history
server/scripts/update_from_dev.sh 2 ●●● patch | view | raw | blame | history
server/scripts/update_from_dev_stable.sh 2 ●●● patch | view | raw | blame | history
install/lib/installer_base.lib.php
@@ -172,9 +172,9 @@
        if(is_installed('squid')) $conf['squid']['installed'] = true;
        if(is_installed('nginx')) $conf['nginx']['installed'] = true;
        if(is_installed('iptables') && is_installed('ufw')) $conf['ufw']['installed'] = true;
        if(is_installed('iptables') && is_installed('bastille-netfilter')) $conf['firewall']['installed'] = true;
        if(is_installed('fail2ban-server')) $conf['fail2ban']['installed'] = true;
        if(is_installed('vzctl')) $conf['openvz']['installed'] = true;
        if(is_installed('iptables') && is_installed('bastille-netfilter')) $conf['bastille']['installed'] = true;
        if(is_installed('metronome') && is_installed('metronomectl')) $conf['xmpp']['installed'] = true;
        if(is_installed('spamassassin')) $conf['spamassassin']['installed'] = true;
        if(is_installed('vlogger')) $conf['vlogger']['installed'] = true;
install/tpl/nginx_apps.vhost.master
@@ -1,6 +1,6 @@
server {
        listen {apps_vhost_ip};
        listen [::]:{apps_vhost_port};
        listen {apps_vhost_port};
        listen [::]:{apps_vhost_port} ipv6only=on;
        ssl {ssl_on};
        {ssl_comment}ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        {ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;
install/tpl/nginx_ispconfig.vhost.master
@@ -1,6 +1,6 @@
server {
        listen {vhost_port};
        listen [::]:{vhost_port}
        listen [::]:{vhost_port} ipv6only=on;
        ssl {ssl_on};
        {ssl_comment}ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        {ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;
@@ -81,4 +81,4 @@
#        location /webmail {
#               rewrite ^/* /squirrelmail last;
#        }
}
}
interface/web/admin/form/server_config.tform.php
@@ -170,7 +170,7 @@
            'formtype' => 'TEXT',
            'default' => '/var/backup',
            'validators' => array(    0 => array (     'type' => 'REGEX',
                                        'regex' => '/^\/[a-zA-Z0-9\.\-\_\/]{5,128}$/',
                                        'regex' => "/(|^\\/{1,2}(?:[\\w-]+[.]?\\/?){5,128})$/",
                                        'errmsg'=> 'backup_dir_error_regex'),
            ),
            'value' => '',
interface/web/dns/dns_import.php
@@ -215,9 +215,22 @@
    foreach($lines as $line){
        $line = trim($line);
        if ($line != '' && substr($line, 0, 1) != ';'){
            if(strpos($line, ";") !== FALSE) $line = substr($line, 0, strpos($line, ";"));
            if(strpos($line, "(") !== FALSE) $line = substr($line, 0, strpos($line, "("));
            if(strpos($line, ")") !== FALSE) $line = substr($line, 0, strpos($line, ")"));
            if(strpos($line, ";") !== FALSE) {
                if (!preg_match("/v=DKIM|v=DMARC/",$line)) {
                    $line = substr($line, 0, strpos($line, ";"));
                }
            }
            if(strpos($line, "(") !== FALSE ) {
                if (!preg_match("/v=DKIM/",$line)) {
                    $line = substr($line, 0, strpos($line, "("));
                }
            }
            if(strpos($line, ")") !== FALSE ) {
                if (!preg_match("/v=DKIM/",$line)) {
                    $line = substr($line, 0, strpos($line, ")"));
                }
            }
            $line = trim($line);
            if ($line != ''){
                $sPattern = '/\s+/m';
@@ -253,10 +266,17 @@
        $parts = explode(' ', $line);
        // make all elements lowercase
        // make elements lowercase
        $dkim=@($parts[3]=='"v=DKIM1;')?true:false;
        $dmarc=@($parts[3]=='"v=DMARC1;')?true:false;
        $new_parts = array();
        foreach($parts as $part){
            $new_parts[] = strtolower($part);
            if(!$dkim && !$dmarc) {
                $new_parts[] = strtolower($part);
            } else {
                $new_parts[] = $part;
            }
        }
        unset($parts);
        $parts = $new_parts;
@@ -556,130 +576,6 @@
        }
        $i++;
    }
    /*
    $i = 0;
    $r = 0;
    $s = 0;
    $dns_rr = array();
    foreach ($lines as $line)
    {
        $line = trim($line);
        if ($line != '' && substr($line,0,1) != ';' && substr($line,0,1) != '$')
        {
            $line = str_replace("\n",NULL,$line);
            $i++;
            // TODO - Find a better way to parse the SOA record. Lazy checking.
            if ($i <= 7)
            {
                if ($i > 1)
                {
                    $s++;
                    $line = str_replace("\t",NULL,$line);
                    if (!empty($line))
                    {
                        print(strpos(";",$line));
                        $line = substr($line,0,strpos($line,";"));
                        if ($s == 1)
                            $soa['serial'] = $line;
                        else if ($s == 2)
                            $soa['refresh'] = $line;
                        else if ($s == 3)
                            $soa['retry'] = $line;
                        else if ($s == 4)
                            $soa['expire'] = $line;
                        else if ($s == 5)
                            $soa['minimum'] = $line;
                    }
                }
                else
                {
                    $line = str_replace("\t",",",$line);
                    $line = str_replace(" ",",",$line);
                    $recs = explode(",",$line);
                    foreach ($recs as $key => $rec)
                    {
                        $rec = trim($rec);
                        if($rec == '') continue;
                        //name    type    data    aux    ttl    active
                        if ($key == 0)
                        {
                            if ($rec == '@')
                            {
                                $rec = $name;
                            }
                            $soa['name'] = $rec;
                        }
                        if ($key != 0 && strtolower($rec) == 'soa')
                        {
                            $typekeys[$s] = $key;
                        }
                        else if ($key > $typekey[$r])
                        {
                            if ($rec != "" && $rec != "(")
                            {
                                $rec = explode(" ",$rec);
                                $soa['ns'] = $servers[0]['server_name'];
                                $soa['mbox'] = $rec[1];
                            }
                        }
                    }
                }
            }
            else
            {
                $line = str_replace("\n","",trim($line));
                if (!empty($line))
                {
                    preg_match_all('/(.*?)\s*IN\s*(A|CNAME|MX|TXT|NS|AAAA)\s*(.*)/',$line, $recs);
                    if ($recs[1][0] == '@' || trim($recs[1][0]) == "")
                    {
                        $recs[1][0] = $name;
                    }
                    $dns_rr[$r]['name'] = $recs[1][0];
                    $dns_rr[$r]['type'] = $recs[2][0];
                    if (strtolower($dns_rr[$r]['type'])=='mx')
                    {
                        $recs[3][0] = str_replace(" ","\t",$recs[3][0]);
                        $mx[$r] = explode("\t",$recs[3][0]);
                        for ($m=1;$m<count($mx[$r]);$m++)
                        {
                            if (!empty($mx[$r][$m]))
                                $dns_rr[$r]['data'] = $mx[$r][$m];
                        }
                        $dns_rr[$r]['aux'] = $mx[$r][0];
                    }
                    else if (strtolower($dns_rr[$r]['type'])=='txt')
                    {
                        $dns_rr[$r]['data'] = substr($recs[3][0],1,(strlen($recs[3][0])-2));
                    }
                    else
                    {
                        $dns_rr[$r]['data'] = $recs[3][0];
                    }
                    if (strtolower($dns_rr[$r]['type'])=='ns' && strtolower($dns_rr[$r]['name'])==$name)
                    {
                        unset($dns_rr[$r]);
                    }
                    $r++;
                }
            }
        }
    }
    */
    foreach ($servers as $server){
        $dns_rr[$r]['name'] = $soa['name'];
server/conf/nginx_apps.vhost.master
@@ -106,7 +106,7 @@
        location /phpMyAdmin {
               rewrite ^/* /phpmyadmin last;
        }
        location /squirrelmail {
               root /usr/share/;
               index index.php index.html index.htm;
@@ -164,7 +164,6 @@
               fastcgi_param   CONTENT_TYPE            $content_type;
               fastcgi_param   CONTENT_LENGTH          $content_length;
               fastcgi_param   SCRIPT_FILENAME         $request_filename;
               fastcgi_param   SCRIPT_NAME             $fastcgi_script_name;
               fastcgi_param   REQUEST_URI             $request_uri;
               fastcgi_param   DOCUMENT_URI            $document_uri;
@@ -199,4 +198,4 @@
               alias /var/lib/mailman/archives/public;
               autoindex on;
        }
}
}
server/conf/php_fpm_pool.conf.master
@@ -34,7 +34,9 @@
<tmpl_if name='security_level' op='==' value='20'>
<tmpl_var name='enable_php_open_basedir'>php_admin_value[open_basedir] = <tmpl_var name='php_open_basedir'>
<tmpl_if name='custom_session_save_path' op='!=' value='y'>php_admin_value[session.save_path] = <tmpl_var name='document_root'>/tmp</tmpl_if>
<tmpl_if name='custom_session_save_path' op='!=' value='y'>
php_admin_value[session.save_path] = <tmpl_var name='document_root'>/tmp
</tmpl_if>
php_admin_value[upload_tmp_dir] = <tmpl_var name='document_root'>/tmp
php_admin_value[sendmail_path] = "/usr/sbin/sendmail -t -i -f webmaster@<tmpl_var name='domain'>"
</tmpl_if>
server/scripts/update_from_dev.sh
@@ -10,7 +10,7 @@
    exit 1
}
wget -O ispconfig3-dev.tar.gz "http://git.ispconfig.org/ispconfig/ispconfig3/repository/archive.tar.gz?ref=master"
wget -O ispconfig3-dev.tar.gz "https://git.ispconfig.org/ispconfig/ispconfig3/repository/archive.tar.gz?ref=master"
tar xzf ispconfig3-dev.tar.gz
echo -n "Latest git version:  "
server/scripts/update_from_dev_stable.sh
@@ -10,7 +10,7 @@
    exit 1
}
wget -O ispconfig3-dev.tar.gz "http://git.ispconfig.org/ispconfig/ispconfig3/repository/archive.tar.gz?ref=stable-3.1"
wget -O ispconfig3-dev.tar.gz "https://git.ispconfig.org/ispconfig/ispconfig3/repository/archive.tar.gz?ref=stable-3.1"
tar xzf ispconfig3-dev.tar.gz
echo -n "Latest git version:  "