Merge branch 'master' into 'stable-3.1'
Master
See merge request !331
| | |
| | | break; |
| | | case 'V6PREFIXLENGTH': |
| | | // find shortes ipv6 subnet can`t be longer |
| | | $sql_v6 = $app->db->queryOneRecord("SELECT ip_address FROM server_ip WHERE ip_type = 'IPv6' AND virtualhost = 'y' ORDER BY CHAR_LENGTH(ip_address) ASC LIMIT 0,1;"); |
| | | $sql_v6 = $app->db->queryOneRecord("SELECT ip_address FROM server_ip WHERE ip_type = 'IPv6' AND virtualhost = 'y' ORDER BY CHAR_LENGTH(ip_address) ASC LIMIT 0,1"); |
| | | $sql_v6_explode=explode(':',$sql_v6['ip_address']); |
| | | $explode_field_value = explode(':',$field_value); |
| | | if (count($sql_v6_explode) < count($explode_field_value) && isset($sql_v6['ip_address'])) { |
| | |
| | | $wb['backup_mode_txt'] = 'Backupmodus'; |
| | | $wb['backup_mode_userzip'] = 'Backup Dateien gehören dem Web Benutzer (.zip Datei)'; |
| | | $wb['backup_mode_rootgz'] = 'Backup aller Dateien des Webverzeichnisses als Root Benutzer'; |
| | | $wb['backup_time_txt'] = 'Backupzeit'; |
| | | $wb['firewall_txt'] = 'Firewall'; |
| | | $wb['mailbox_quota_stats_txt'] = 'E-Mailkonto Beschränkung Statistiken'; |
| | | $wb['enable_ip_wildcard_txt'] = 'IP Adressen Wildcard (*) aktivieren'; |
| | |
| | | $wb["backup_mode_txt"] = 'Backup mode'; |
| | | $wb["backup_mode_userzip"] = 'Backup web files owned by web user as zip'; |
| | | $wb["backup_mode_rootgz"] = 'Backup all files in web directory as root user'; |
| | | $wb["backup_time_txt"] = 'Backup time'; |
| | | $wb["server_type_txt"] = 'Server Type'; |
| | | $wb["nginx_vhost_conf_dir_txt"] = 'Nginx Vhost config dir'; |
| | | $wb["nginx_vhost_conf_enabled_dir_txt"] = 'Nginx Vhost config enabled dir'; |
| | |
| | | |
| | | <tfoot> |
| | | <tr> |
| | | <td colspan="4"><tmpl_var name="paging"></td> |
| | | <td colspan="3"><tmpl_var name="paging"></td> |
| | | </tr> |
| | | </tfoot> |
| | | </table> |
| | |
| | | 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| | | 'errmsg'=> 'mbox_error_empty'), |
| | | 1 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^[a-zA-Z0-9\.\-\_]{0,255}\.$/', |
| | | 'regex' => '/^[a-zA-Z0-9\.\-\_\+]{0,255}\.$/', |
| | | 'errmsg'=> 'mbox_error_regex'), |
| | | ), |
| | | 'default' => '', |
| | |
| | | * Now we have to check, if we should use the domain-module to select the domain |
| | | * or not |
| | | */ |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | if ($settings['use_domain_module'] == 'y') { |
| | | /* |
| | | * The domain-module is in use. |