gitextract_i3j9am9o/ ├── .gitattributes ├── .gitignore ├── AUTHORS ├── CHANGELOG ├── COPYING ├── README.md ├── Vagrant/ │ ├── README.md │ ├── Vagrantfile │ └── scripts/ │ ├── distro_update.sh │ └── provision_imscp.sh ├── autoinstaller/ │ ├── Adapter/ │ │ ├── AbstractAdapter.pm │ │ ├── DebianAdapter.pm │ │ ├── DevuanAdapter.pm │ │ ├── UbuntuAdapter.pm │ │ └── managed_services.txt │ ├── Functions.pm │ ├── Layout/ │ │ └── Debian.xml │ ├── Packages/ │ │ ├── debian-buster.xml │ │ ├── debian-stretch.xml │ │ ├── devuan-ascii.xml │ │ ├── ubuntu-bionic.xml │ │ └── ubuntu-xenial.xml │ ├── postinstall/ │ │ ├── .gitkeep │ │ └── apache2_postinst.sh │ └── preinstall/ │ └── .gitkeep ├── configs/ │ ├── debian/ │ │ ├── apache/ │ │ │ ├── 00_imscp.conf │ │ │ ├── 00_nameserver.conf │ │ │ ├── apache.data.dist │ │ │ ├── install.xml │ │ │ ├── logrotate.conf │ │ │ ├── parts/ │ │ │ │ ├── custom.conf.tpl │ │ │ │ ├── domain.tpl │ │ │ │ └── domain_disabled.tpl │ │ │ ├── vlogger │ │ │ ├── vlogger.conf.tpl │ │ │ └── vlogger.sql │ │ ├── apt/ │ │ │ ├── 01norecommend │ │ │ └── install.xml │ │ ├── bind/ │ │ │ ├── bind.data.dist │ │ │ ├── install.xml │ │ │ ├── named.conf │ │ │ ├── named.conf.local │ │ │ ├── named.conf.options │ │ │ └── parts/ │ │ │ ├── cfg_master.tpl │ │ │ ├── cfg_slave.tpl │ │ │ ├── db.tpl │ │ │ └── db_sub.tpl │ │ ├── courier/ │ │ │ ├── authmysqlrc │ │ │ ├── courier.data.dist │ │ │ ├── imapd.local │ │ │ ├── install.xml │ │ │ ├── quota-warning │ │ │ └── sasl/ │ │ │ └── smtpd.conf │ │ ├── cron/ │ │ │ ├── cron.data.dist │ │ │ ├── imscp │ │ │ └── install.xml │ │ ├── database/ │ │ │ ├── database.sql │ │ │ └── install.xml │ │ ├── dovecot/ │ │ │ ├── dovecot-managesieve.conf │ │ │ ├── dovecot-sql.conf │ │ │ ├── dovecot.conf │ │ │ ├── dovecot.data.dist │ │ │ ├── install.xml │ │ │ ├── quota-warning │ │ │ └── sieve.default │ │ ├── dpkg/ │ │ │ ├── 90imscp │ │ │ └── install.xml │ │ ├── frontend/ │ │ │ ├── 00_master.nginx │ │ │ ├── 00_master_ssl.nginx │ │ │ ├── frontend.data.dist │ │ │ ├── imscp_fastcgi.nginx │ │ │ ├── imscp_panel │ │ │ ├── imscp_panel_reopenlogs │ │ │ ├── imscp_php.nginx │ │ │ ├── install.xml │ │ │ ├── nginx.nginx │ │ │ ├── php-fpm.conf │ │ │ └── php.ini │ │ ├── imscp.conf │ │ ├── install.xml │ │ ├── libpam-mysql/ │ │ │ └── patches/ │ │ │ └── dpatch/ │ │ │ ├── 03_undefined_make_scrambled_password_symbol.patch │ │ │ └── 04_resps_segfault.patch │ │ ├── listeners.d/ │ │ │ ├── README.md │ │ │ └── install.xml │ │ ├── logrotate.d/ │ │ │ ├── imscp │ │ │ ├── install.xml │ │ │ └── rsyslog │ │ ├── mounts/ │ │ │ ├── install.xml │ │ │ └── mounts.conf │ │ ├── mysql/ │ │ │ ├── imscp.cnf │ │ │ ├── install.xml │ │ │ └── mysql.data.dist │ │ ├── openssl/ │ │ │ ├── install.xml │ │ │ └── openssl.cnf.tpl │ │ ├── pbuilder/ │ │ │ └── pbuilderrc │ │ ├── php/ │ │ │ ├── apache/ │ │ │ │ └── php.ini │ │ │ ├── fcgi/ │ │ │ │ ├── apache_fcgid_module.conf │ │ │ │ ├── php-fcgi-starter │ │ │ │ └── php.ini │ │ │ ├── fpm/ │ │ │ │ ├── logrotate.tpl │ │ │ │ ├── php-fpm.conf │ │ │ │ ├── php.ini │ │ │ │ ├── pool.conf │ │ │ │ └── pool.conf.default │ │ │ ├── install.xml │ │ │ └── php.data.dist │ │ ├── postfix/ │ │ │ ├── install.xml │ │ │ ├── main.cf │ │ │ ├── master.cf │ │ │ └── postfix.data.dist │ │ ├── proftpd/ │ │ │ ├── install.xml │ │ │ ├── proftpd-basic │ │ │ ├── proftpd.conf │ │ │ └── proftpd.data.dist │ │ ├── skel/ │ │ │ ├── README │ │ │ ├── alias/ │ │ │ │ ├── 00_private/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── cgi-bin/ │ │ │ │ │ └── .gitkeep │ │ │ │ └── htdocs/ │ │ │ │ ├── .well-known/ │ │ │ │ │ └── .gitkeep │ │ │ │ └── index.html │ │ │ ├── domain/ │ │ │ │ ├── 00_private/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── backups/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── cgi-bin/ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── errors/ │ │ │ │ │ ├── 401.html │ │ │ │ │ ├── 403.html │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 500.html │ │ │ │ │ ├── 503.html │ │ │ │ │ └── inc/ │ │ │ │ │ ├── errordocs.css │ │ │ │ │ └── ie78overrides.css │ │ │ │ ├── htdocs/ │ │ │ │ │ ├── .well-known/ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── index.html │ │ │ │ ├── logs/ │ │ │ │ │ └── .gitkeep │ │ │ │ └── phptmp/ │ │ │ │ └── .gitkeep │ │ │ ├── domain_disabled_pages/ │ │ │ │ └── index.html │ │ │ ├── install.xml │ │ │ └── subdomain/ │ │ │ ├── 00_private/ │ │ │ │ └── .gitkeep │ │ │ ├── cgi-bin/ │ │ │ │ └── .gitkeep │ │ │ └── htdocs/ │ │ │ ├── .well-known/ │ │ │ │ └── .gitkeep │ │ │ └── index.html │ │ ├── sysctl.d/ │ │ │ ├── imscp.conf │ │ │ └── install.xml │ │ ├── systemd/ │ │ │ ├── bind9-resolvconf.service │ │ │ ├── bind9.service │ │ │ ├── courier-authdaemon.conf │ │ │ ├── imscp_daemon.service │ │ │ ├── imscp_mountall.service │ │ │ ├── imscp_panel.conf │ │ │ ├── imscp_panel.service │ │ │ ├── imscp_traffic.service │ │ │ └── install.xml │ │ ├── sysvinit/ │ │ │ ├── courier-authdaemon │ │ │ ├── imscp_daemon │ │ │ ├── imscp_mountall │ │ │ ├── imscp_panel │ │ │ ├── imscp_traffic │ │ │ ├── install.xml │ │ │ └── proftpd │ │ ├── upstart/ │ │ │ ├── imscp_daemon.conf │ │ │ ├── imscp_mountall.conf │ │ │ ├── imscp_panel.conf │ │ │ ├── imscp_panel.override │ │ │ ├── imscp_traffic.conf │ │ │ ├── install.xml │ │ │ ├── php5.6-fpm.override │ │ │ ├── php7.0-fpm.override │ │ │ ├── php7.1-fpm.override │ │ │ ├── php7.2-fpm.override │ │ │ └── php7.3-fpm.override │ │ └── vsftpd/ │ │ ├── install.xml │ │ ├── patches/ │ │ │ └── quilt/ │ │ │ └── imscp_allow_writeable_root.patch │ │ ├── vsftpd.conf │ │ ├── vsftpd.data.dist │ │ ├── vsftpd.pam │ │ └── vsftpd_user.conf │ ├── devuan/ │ │ └── install.xml │ └── ubuntu/ │ ├── install.xml │ ├── libpam-mysql/ │ │ └── patches/ │ │ └── dpatch/ │ │ ├── 03_undefined_make_scrambled_password_symbol.patch │ │ └── 04_resps_segfault.patch │ ├── pbuilder/ │ │ └── pbuilderrc │ ├── proftpd/ │ │ └── install.xml │ ├── sysvinit/ │ │ └── install.xml │ └── vsftpd/ │ ├── install.xml │ └── patches/ │ └── quilt/ │ ├── imscp_allow_writeable_root.patch │ └── imscp_pthread_cancel.patch ├── contrib/ │ ├── Listeners/ │ │ ├── Apache2/ │ │ │ ├── 10_apache2_dualstack.pl │ │ │ ├── 20_apache2_serveralias_override.pl │ │ │ ├── 30_apache2_tools_proxy.pl │ │ │ └── 40_apache2_security_headers.pl │ │ ├── Backup/ │ │ │ └── 10_backup_storage_outsourcing.pl │ │ ├── Dovecot/ │ │ │ ├── 10_dovecot_compress.pl │ │ │ ├── 30_dovecot_namespace.pl │ │ │ ├── 40_dovecot_pfs.pl │ │ │ ├── 50_dovecot_plaintext.pl │ │ │ └── 60_dovecot_service_login.pl │ │ ├── FrontEnd/ │ │ │ └── 10_frontend_templates_override.pl │ │ ├── Named/ │ │ │ ├── 10_named_global_ns.pl │ │ │ ├── 10_named_localnets.pl │ │ │ ├── 10_named_rrl.pl │ │ │ ├── 10_named_slave_provisioning.pl │ │ │ └── 20_named_dualstack.pl │ │ ├── Nginx/ │ │ │ └── 10_nginx_hsts.pl │ │ ├── PHP/ │ │ │ ├── 10_php_confoptions_override.pl │ │ │ └── 10_phpfpm_settings_override.pl │ │ ├── Packages/ │ │ │ └── 10_packages_override.pl │ │ ├── PhpMyAdmin/ │ │ │ └── 10_phpmyadmin_conffile.pl │ │ ├── Postfix/ │ │ │ ├── 10_postfix_smarthost.pl │ │ │ ├── 10_postfix_transport_table.pl │ │ │ ├── 10_postfix_tuning.pl │ │ │ ├── 20_postfix_policy_whitelist.pl │ │ │ ├── 30_postfix_bcc_maps.pl │ │ │ ├── 40_postfix_sender_canonical.pl │ │ │ ├── 50_postfix_sender_generic.pl │ │ │ ├── 60_postfix_pfs.pl │ │ │ └── 70_postfix_submission_tls.pl │ │ ├── ProFTPd/ │ │ │ ├── 10_proftpd_auth_unix.pl │ │ │ ├── 10_proftpd_serverident.pl │ │ │ └── 10_proftpd_tls.pl │ │ ├── README.md │ │ ├── Roundcube/ │ │ │ └── 10_roundcube_tls.pl │ │ └── System/ │ │ ├── 10_system_hosts.pl │ │ └── 10_system_mount_userwebdir.pl │ └── scripts/ │ ├── fix_duplicate_mounts.pl │ ├── imscp_mail_from_csv.php │ └── poodle.sh ├── daemon/ │ ├── Makefile │ ├── daemon_cmd.c │ ├── daemon_cmd.h │ ├── daemon_conn.c │ ├── daemon_conn.h │ ├── daemon_globals.h │ ├── daemon_init.c │ ├── daemon_init.h │ ├── daemon_main.c │ ├── daemon_main.h │ ├── daemon_msg.c │ ├── daemon_msg.h │ ├── daemon_notify.c │ ├── daemon_notify.h │ ├── daemon_signals.c │ ├── daemon_signals.h │ ├── daemon_sock_io.c │ └── daemon_sock_io.h ├── docs/ │ ├── 1.2.x_errata.md │ ├── 1.3.x_errata.md │ ├── 1.4.x_errata.md │ ├── 1.5.x_errata.md │ ├── Changelog-1.0.x │ ├── Changelog-1.1.x │ ├── Changelog-1.2.x │ ├── Changelog-1.3.x │ ├── Changelog-1.4.x │ ├── Debian/ │ │ └── INSTALL.md │ ├── Devuan/ │ │ └── INSTALL.md │ ├── LICENSE-GPL2 │ ├── LICENSE-LGPL2.1 │ ├── LICENSE-MPL1.1 │ ├── Ubuntu/ │ │ └── INSTALL.md │ ├── cgi/ │ │ ├── README.md │ │ ├── sample.pl │ │ ├── sample.py │ │ └── sample.rb │ ├── imscp_net_sysctl.conf │ └── preseed.pl ├── engine/ │ ├── PerlLib/ │ │ ├── Common/ │ │ │ ├── Object.pm │ │ │ └── SingletonClass.pm │ │ ├── Modules/ │ │ │ ├── Abstract.pm │ │ │ ├── Alias.pm │ │ │ ├── CustomDNS.pm │ │ │ ├── Domain.pm │ │ │ ├── FtpUser.pm │ │ │ ├── Htaccess.pm │ │ │ ├── Htgroup.pm │ │ │ ├── Htpasswd.pm │ │ │ ├── Mail.pm │ │ │ ├── Plugin.pm │ │ │ ├── SSLcertificate.pm │ │ │ ├── ServerIP.pm │ │ │ ├── SubAlias.pm │ │ │ ├── Subdomain.pm │ │ │ └── User.pm │ │ ├── Package/ │ │ │ ├── AbstractPackageCollection.pm │ │ │ ├── AltUrlsFeature.pm │ │ │ ├── AntiRootkits/ │ │ │ │ ├── Chkrootkit/ │ │ │ │ │ └── Chkrootkit.pm │ │ │ │ └── Rkhunter/ │ │ │ │ ├── Cron.pl │ │ │ │ └── Rkhunter.pm │ │ │ ├── AntiRootkits.pm │ │ │ ├── BackupFeature.pm │ │ │ ├── FrontEnd.pm │ │ │ ├── ServicesSSL.pm │ │ │ ├── SqlAdminTools/ │ │ │ │ └── PhpMyAdmin/ │ │ │ │ └── PhpMyAdmin.pm │ │ │ ├── SqlAdminTools.pm │ │ │ ├── WebFtpClients/ │ │ │ │ └── MonstaFTP/ │ │ │ │ └── MonstaFTP.pm │ │ │ ├── WebFtpClients.pm │ │ │ ├── WebStatistics/ │ │ │ │ └── AWStats/ │ │ │ │ ├── AWStats.pm │ │ │ │ ├── Config/ │ │ │ │ │ ├── 01_awstats.conf │ │ │ │ │ └── awstats.imscp_tpl.conf │ │ │ │ └── Scripts/ │ │ │ │ ├── awstats_updateall.pl │ │ │ │ └── logresolvemerge.pl │ │ │ ├── WebStatistics.pm │ │ │ ├── WebmailClients/ │ │ │ │ ├── RainLoop/ │ │ │ │ │ └── RainLoop.pm │ │ │ │ └── Roundcube/ │ │ │ │ └── Roundcube.pm │ │ │ └── WebmailClients.pm │ │ ├── Servers/ │ │ │ ├── cron/ │ │ │ │ └── cron.pm │ │ │ ├── cron.pm │ │ │ ├── ftpd/ │ │ │ │ ├── proftpd/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── proftpd.pm │ │ │ │ ├── vsftpd/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ └── vsftpd.pm │ │ │ ├── ftpd.pm │ │ │ ├── httpd/ │ │ │ │ ├── apache_fcgid/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── apache_fcgid.pm │ │ │ │ ├── apache_itk/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── apache_itk.pm │ │ │ │ ├── apache_php_fpm/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ └── apache_php_fpm.pm │ │ │ ├── httpd.pm │ │ │ ├── mta/ │ │ │ │ ├── postfix/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ └── postfix.pm │ │ │ ├── mta.pm │ │ │ ├── named/ │ │ │ │ ├── bind/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ └── bind.pm │ │ │ ├── named.pm │ │ │ ├── noserver.pm │ │ │ ├── php.pm │ │ │ ├── po/ │ │ │ │ ├── courier/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── courier.pm │ │ │ │ ├── dovecot/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ └── dovecot.pm │ │ │ ├── po.pm │ │ │ ├── server/ │ │ │ │ ├── local/ │ │ │ │ │ └── installer.pm │ │ │ │ └── local.pm │ │ │ ├── server.pm │ │ │ ├── sqld/ │ │ │ │ ├── mariadb/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── mariadb.pm │ │ │ │ ├── mysql/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── mysql.pm │ │ │ │ ├── percona/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ ├── percona.pm │ │ │ │ ├── remote/ │ │ │ │ │ ├── installer.pm │ │ │ │ │ └── uninstaller.pm │ │ │ │ └── remote.pm │ │ │ └── sqld.pm │ │ └── iMSCP/ │ │ ├── Boolean.pm │ │ ├── Bootstrapper.pm │ │ ├── Composer.pm │ │ ├── Config.pm │ │ ├── Crypt.pm │ │ ├── Cwd.pm │ │ ├── Database/ │ │ │ ├── MariaDB.pm │ │ │ └── MySQL.pm │ │ ├── Database.pm │ │ ├── DbTasksProcessor.pm │ │ ├── Debug.pm │ │ ├── Dialog/ │ │ │ ├── Dialog.pm │ │ │ ├── FrontEndInterface.pm │ │ │ ├── InputValidation.pm │ │ │ ├── NonInteractive.pm │ │ │ ├── Resizable.pm │ │ │ └── TextFormatter.pm │ │ ├── Dialog.pm │ │ ├── Dir.pm │ │ ├── EventManager/ │ │ │ └── ListenerPriorityQueue.pm │ │ ├── EventManager.pm │ │ ├── Execute.pm │ │ ├── Ext2Attributes/ │ │ │ ├── Ext2Fs32.pm │ │ │ └── Ext2Fs64.pm │ │ ├── Ext2Attributes.pm │ │ ├── File.pm │ │ ├── Getopt.pm │ │ ├── LockFile.pm │ │ ├── Log.pm │ │ ├── LsbRelease.pm │ │ ├── Mail.pm │ │ ├── Mount.pm │ │ ├── Net.pm │ │ ├── Networking.pm │ │ ├── OpenSSL.pm │ │ ├── Packages.pm │ │ ├── Plugins.pm │ │ ├── ProgramFinder.pm │ │ ├── Provider/ │ │ │ ├── Networking/ │ │ │ │ ├── Interface.pm │ │ │ │ └── Persistence/ │ │ │ │ ├── Ifupdown.pm │ │ │ │ └── Netplan.pm │ │ │ └── Service/ │ │ │ ├── Abstract.pm │ │ │ ├── Debian/ │ │ │ │ ├── SysVinit.pm │ │ │ │ ├── Systemd.pm │ │ │ │ └── Upstart.pm │ │ │ ├── Interface.pm │ │ │ ├── SysVinit.pm │ │ │ ├── Systemd.pm │ │ │ └── Upstart.pm │ │ ├── Requirements.pm │ │ ├── Rights.pm │ │ ├── Servers.pm │ │ ├── Service.pm │ │ ├── Stepper.pm │ │ ├── Syscall.pm │ │ ├── SystemGroup.pm │ │ ├── SystemUser.pm │ │ ├── TemplateParser.pm │ │ └── Umask.pm │ ├── PerlVendor/ │ │ ├── Array/ │ │ │ └── Utils.pm │ │ ├── Capture/ │ │ │ └── Tiny.pm │ │ ├── Class/ │ │ │ └── Autouse.pm │ │ ├── Data/ │ │ │ └── Validate/ │ │ │ └── Domain.pm │ │ ├── Net/ │ │ │ ├── Domain/ │ │ │ │ └── TLD.pm │ │ │ └── IP.pm │ │ ├── PHP/ │ │ │ └── Var.pm │ │ └── courier-dovecot-migrate.pl │ ├── backup/ │ │ ├── imscp-backup-all │ │ ├── imscp-backup-imscp │ │ └── install.xml │ ├── imscp-rqst-mngr │ ├── install.xml │ ├── messenger/ │ │ ├── imscp-arpl-msgr │ │ └── install.xml │ ├── quota/ │ │ ├── imscp-dsk-quota │ │ └── install.xml │ ├── setup/ │ │ ├── imscp-reconfigure │ │ ├── imscp-setup-functions.pl │ │ ├── imscp-uninstaller │ │ ├── imscp-update-db.php │ │ ├── install.xml │ │ ├── set-engine-permissions.pl │ │ └── set-gui-permissions.pl │ ├── tools/ │ │ ├── imscp-disable-accounts │ │ ├── imscp-dpkg-post-invoke.pl │ │ ├── imscp-mountall │ │ ├── imscp-net-traffic-logger │ │ └── install.xml │ └── traffic/ │ ├── imscp-srv-traff │ ├── imscp-vrl-traff │ ├── install.xml │ └── maillogconvert.pl ├── gui/ │ ├── bin/ │ │ └── .gitkeep │ ├── composer.json │ ├── data/ │ │ ├── cache/ │ │ │ └── .gitkeep │ │ ├── certs/ │ │ │ └── .gitkeep │ │ ├── logs/ │ │ │ └── .gitkeep │ │ ├── persistent/ │ │ │ ├── .composer/ │ │ │ │ └── .gitkeep │ │ │ └── plugins/ │ │ │ └── README.md │ │ ├── sessions/ │ │ │ └── .gitkeep │ │ ├── tmp/ │ │ │ └── .gitkeep │ │ └── uploads/ │ │ └── .gitkeep │ ├── i18n/ │ │ └── locales/ │ │ ├── ar/ │ │ │ └── LC_MESSAGES/ │ │ │ └── ar.mo │ │ ├── bg_BG/ │ │ │ └── LC_MESSAGES/ │ │ │ └── bg_BG.mo │ │ ├── ca_ES/ │ │ │ └── LC_MESSAGES/ │ │ │ └── ca_ES.mo │ │ ├── cs_CZ/ │ │ │ └── LC_MESSAGES/ │ │ │ └── cs_CZ.mo │ │ ├── da_DK/ │ │ │ └── LC_MESSAGES/ │ │ │ └── da_DK.mo │ │ ├── de_DE/ │ │ │ └── LC_MESSAGES/ │ │ │ └── de_DE.mo │ │ ├── el/ │ │ │ └── LC_MESSAGES/ │ │ │ └── el.mo │ │ ├── en_GB/ │ │ │ └── LC_MESSAGES/ │ │ │ └── en_GB.mo │ │ ├── es_AR/ │ │ │ └── LC_MESSAGES/ │ │ │ └── es_AR.mo │ │ ├── es_ES/ │ │ │ └── LC_MESSAGES/ │ │ │ └── es_ES.mo │ │ ├── eu_ES/ │ │ │ └── LC_MESSAGES/ │ │ │ └── eu_ES.mo │ │ ├── fa_IR/ │ │ │ └── LC_MESSAGES/ │ │ │ └── fa_IR.mo │ │ ├── fi_FI/ │ │ │ └── LC_MESSAGES/ │ │ │ └── fi_FI.mo │ │ ├── fr_FR/ │ │ │ └── LC_MESSAGES/ │ │ │ └── fr_FR.mo │ │ ├── gl_ES/ │ │ │ └── LC_MESSAGES/ │ │ │ └── gl_ES.mo │ │ ├── hu_HU/ │ │ │ └── LC_MESSAGES/ │ │ │ └── hu_HU.mo │ │ ├── it_IT/ │ │ │ └── LC_MESSAGES/ │ │ │ └── it_IT.mo │ │ ├── ja_JP/ │ │ │ └── LC_MESSAGES/ │ │ │ └── ja_JP.mo │ │ ├── lt_LT/ │ │ │ └── LC_MESSAGES/ │ │ │ └── lt_LT.mo │ │ ├── nb_NO/ │ │ │ └── LC_MESSAGES/ │ │ │ └── nb_NO.mo │ │ ├── nl_NL/ │ │ │ └── LC_MESSAGES/ │ │ │ └── nl_NL.mo │ │ ├── pl_PL/ │ │ │ └── LC_MESSAGES/ │ │ │ └── pl_PL.mo │ │ ├── pt_BR/ │ │ │ └── LC_MESSAGES/ │ │ │ └── pt_BR.mo │ │ ├── pt_PT/ │ │ │ └── LC_MESSAGES/ │ │ │ └── pt_PT.mo │ │ ├── ro_RO/ │ │ │ └── LC_MESSAGES/ │ │ │ └── ro_RO.mo │ │ ├── ru_RU/ │ │ │ └── LC_MESSAGES/ │ │ │ └── ru_RU.mo │ │ ├── sk_SK/ │ │ │ └── LC_MESSAGES/ │ │ │ └── sk_SK.mo │ │ ├── sl/ │ │ │ └── LC_MESSAGES/ │ │ │ └── sl.mo │ │ ├── sv_SE/ │ │ │ └── LC_MESSAGES/ │ │ │ └── sv_SE.mo │ │ ├── th_TH/ │ │ │ └── LC_MESSAGES/ │ │ │ └── th_TH.mo │ │ ├── tr_TR/ │ │ │ └── LC_MESSAGES/ │ │ │ └── tr_TR.mo │ │ ├── uk_UA/ │ │ │ └── LC_MESSAGES/ │ │ │ └── uk_UA.mo │ │ ├── vi/ │ │ │ └── LC_MESSAGES/ │ │ │ └── vi.mo │ │ ├── zh_CN/ │ │ │ └── LC_MESSAGES/ │ │ │ └── zh_CN.mo │ │ ├── zh_HK/ │ │ │ └── LC_MESSAGES/ │ │ │ └── zh_HK.mo │ │ └── zh_TW/ │ │ └── LC_MESSAGES/ │ │ └── zh_TW.mo │ ├── include/ │ │ ├── Admin.php │ │ ├── BcAutoload.php │ │ ├── Client.php │ │ ├── Counting.php │ │ ├── Email.php │ │ ├── Input.php │ │ ├── Intl.php │ │ ├── Layout.php │ │ ├── Login.php │ │ ├── LostPassword.php │ │ ├── Reseller.php │ │ ├── Shared.php │ │ ├── Statistics.php │ │ ├── Tickets.php │ │ ├── View.php │ │ └── imscp-lib.php │ ├── patches/ │ │ ├── 001_php_deprecations.patch │ │ ├── 002_zend_form_docblock_fix.patch │ │ ├── 003_zend_navigation_patch │ │ ├── 004_zend_validate_file_upload.patch │ │ └── 005_zend_validate_file_count.patch │ ├── plugins/ │ │ └── .gitkeep │ ├── public/ │ │ ├── admin/ │ │ │ ├── admin_add.php │ │ │ ├── admin_log.php │ │ │ ├── change_user_interface.php │ │ │ ├── circular.php │ │ │ ├── custom_menus.php │ │ │ ├── domain_details.php │ │ │ ├── domain_status_change.php │ │ │ ├── imscp_debugger.php │ │ │ ├── imscp_updates.php │ │ │ ├── index.php │ │ │ ├── ip_delete.php │ │ │ ├── ip_manage.php │ │ │ ├── ip_usage.php │ │ │ ├── language.php │ │ │ ├── layout.php │ │ │ ├── manage_reseller_owners.php │ │ │ ├── manage_reseller_users.php │ │ │ ├── multilanguage.php │ │ │ ├── password_update.php │ │ │ ├── personal_change.php │ │ │ ├── profile.php │ │ │ ├── reseller_add.php │ │ │ ├── reseller_edit.php │ │ │ ├── reseller_statistics.php │ │ │ ├── reseller_user_statistics.php │ │ │ ├── reseller_user_statistics_details.php │ │ │ ├── rootkit_log.php │ │ │ ├── server_statistic.php │ │ │ ├── service_statuses.php │ │ │ ├── sessions_manage.php │ │ │ ├── settings.php │ │ │ ├── settings_lostpassword.php │ │ │ ├── settings_maintenance_mode.php │ │ │ ├── settings_plugins.php │ │ │ ├── settings_ports.php │ │ │ ├── settings_server_traffic.php │ │ │ ├── settings_welcome_mail.php │ │ │ ├── system_info.php │ │ │ ├── ticket_closed.php │ │ │ ├── ticket_delete.php │ │ │ ├── ticket_system.php │ │ │ ├── ticket_view.php │ │ │ ├── user_delete.php │ │ │ ├── user_edit.php │ │ │ └── users.php │ │ ├── client/ │ │ │ ├── alias_add.php │ │ │ ├── alias_delete.php │ │ │ ├── alias_edit.php │ │ │ ├── alias_order_delete.php │ │ │ ├── alssub_delete.php │ │ │ ├── backup.php │ │ │ ├── cert_view.php │ │ │ ├── change_user_interface.php │ │ │ ├── dns_add.php │ │ │ ├── dns_delete.php │ │ │ ├── dns_edit.php │ │ │ ├── domain_edit.php │ │ │ ├── domains_manage.php │ │ │ ├── error_edit.php │ │ │ ├── error_pages.php │ │ │ ├── ftp_accounts.php │ │ │ ├── ftp_add.php │ │ │ ├── ftp_delete.php │ │ │ ├── ftp_edit.php │ │ │ ├── index.php │ │ │ ├── language.php │ │ │ ├── layout.php │ │ │ ├── mail_accounts.php │ │ │ ├── mail_add.php │ │ │ ├── mail_autoresponder_disable.php │ │ │ ├── mail_autoresponder_edit.php │ │ │ ├── mail_autoresponder_enable.php │ │ │ ├── mail_catchall.php │ │ │ ├── mail_catchall_add.php │ │ │ ├── mail_catchall_delete.php │ │ │ ├── mail_delete.php │ │ │ ├── mail_edit.php │ │ │ ├── mail_external.php │ │ │ ├── password_update.php │ │ │ ├── personal_change.php │ │ │ ├── phpini.php │ │ │ ├── profile.php │ │ │ ├── protected_areas.php │ │ │ ├── protected_areas_add.php │ │ │ ├── protected_areas_delete.php │ │ │ ├── protected_group_add.php │ │ │ ├── protected_group_delete.php │ │ │ ├── protected_user_add.php │ │ │ ├── protected_user_assign.php │ │ │ ├── protected_user_delete.php │ │ │ ├── protected_user_edit.php │ │ │ ├── protected_user_manage.php │ │ │ ├── sql_change_password.php │ │ │ ├── sql_database_add.php │ │ │ ├── sql_database_delete.php │ │ │ ├── sql_delete_user.php │ │ │ ├── sql_manage.php │ │ │ ├── sql_user_add.php │ │ │ ├── subdomain_add.php │ │ │ ├── subdomain_delete.php │ │ │ ├── subdomain_edit.php │ │ │ ├── ticket_closed.php │ │ │ ├── ticket_create.php │ │ │ ├── ticket_delete.php │ │ │ ├── ticket_system.php │ │ │ ├── ticket_view.php │ │ │ ├── traffic_statistics.php │ │ │ └── webtools.php │ │ ├── errordocs/ │ │ │ ├── 400.html │ │ │ ├── 401.html │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ ├── 405.html │ │ │ ├── 500.html │ │ │ ├── 502.html │ │ │ ├── 503.html │ │ │ └── inc/ │ │ │ ├── errordocs.css │ │ │ └── ie78overrides.css │ │ ├── imagecode.php │ │ ├── index.php │ │ ├── lostpassword.php │ │ ├── plugins.php │ │ ├── reseller/ │ │ │ ├── alias.php │ │ │ ├── alias_add.php │ │ │ ├── alias_delete.php │ │ │ ├── alias_edit.php │ │ │ ├── alias_order.php │ │ │ ├── change_user_interface.php │ │ │ ├── circular.php │ │ │ ├── domain_details.php │ │ │ ├── domain_edit.php │ │ │ ├── domain_status_change.php │ │ │ ├── hosting_plan.php │ │ │ ├── hosting_plan_add.php │ │ │ ├── hosting_plan_delete.php │ │ │ ├── hosting_plan_edit.php │ │ │ ├── index.php │ │ │ ├── ip_usage.php │ │ │ ├── language.php │ │ │ ├── layout.php │ │ │ ├── password_update.php │ │ │ ├── personal_change.php │ │ │ ├── profile.php │ │ │ ├── settings_lostpassword.php │ │ │ ├── settings_welcome_mail.php │ │ │ ├── ticket_closed.php │ │ │ ├── ticket_create.php │ │ │ ├── ticket_delete.php │ │ │ ├── ticket_system.php │ │ │ ├── ticket_view.php │ │ │ ├── user_add1.php │ │ │ ├── user_add2.php │ │ │ ├── user_add3.php │ │ │ ├── user_delete.php │ │ │ ├── user_edit.php │ │ │ ├── user_statistics.php │ │ │ ├── user_statistics_details.php │ │ │ └── users.php │ │ ├── robots.txt │ │ ├── shared/ │ │ │ ├── ftp_choose_dir.php │ │ │ ├── password_update.php │ │ │ └── personal_change.php │ │ └── tools/ │ │ └── index.php │ ├── resources/ │ │ ├── fonts/ │ │ │ ├── AUTHORS │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── FreeMono.sfd │ │ │ ├── FreeMonoBold.sfd │ │ │ ├── FreeMonoBoldOblique.sfd │ │ │ ├── FreeMonoOblique.sfd │ │ │ ├── FreeSans.sfd │ │ │ ├── FreeSansBold.sfd │ │ │ ├── FreeSansBoldOblique.sfd │ │ │ ├── FreeSansOblique.sfd │ │ │ ├── FreeSerif.sfd │ │ │ ├── FreeSerifBold.sfd │ │ │ ├── FreeSerifBoldItalic.sfd │ │ │ ├── FreeSerifItalic.sfd │ │ │ ├── INSTALL │ │ │ └── README │ │ ├── i18n/ │ │ │ └── iMSCP.php │ │ ├── magic-1.mgc │ │ └── magic-2.mgc │ ├── src/ │ │ ├── Application.php │ │ ├── Assertion/ │ │ │ ├── AdminCanMoveCustomersAssertion.php │ │ │ ├── AdminCanMoveResellersAssertion.php │ │ │ ├── AdminCanViewAntiAntiRootkitsAssertion.php │ │ │ ├── AdminCanViewImscpUpdatesAssertion.php │ │ │ ├── AdminCanViewIpUsageStatisticsAssertion.php │ │ │ ├── AdminCanViewResellerStatisticsAssertion.php │ │ │ ├── AdminHasCircularFeatureAssertion.php │ │ │ ├── AdminHasSupportFeatureAssertion.php │ │ │ ├── CallbackAssertion.php │ │ │ ├── ClientCanAddSqlDatabasesAssertion.php │ │ │ ├── ClientHasBackupFeatureAssertion.php │ │ │ ├── ClientHasCustomDnsFeatureAssertion.php │ │ │ ├── ClientHasCustomErrorPagesFeatureAssertion.php │ │ │ ├── ClientHasDomainAliasesFeatureAssertion.php │ │ │ ├── ClientHasExternalMailFeatureAssertion.php │ │ │ ├── ClientHasFtpFeatureAssertion.php │ │ │ ├── ClientHasMailFeatureAssertion.php │ │ │ ├── ClientHasMailOrExternalMailFeatureAssertion.php │ │ │ ├── ClientHasPhpEditorFeatureAssertion.php │ │ │ ├── ClientHasProtectedAreasFeatureAssertion.php │ │ │ ├── ClientHasSqlFeatureAssertion.php │ │ │ ├── ClientHasSubdomainsFeatureAssertion.php │ │ │ ├── ClientHasSupportFeatureAssertion.php │ │ │ ├── ClientHasWebstatsFeatureAssertion.php │ │ │ ├── ResellerCanViewCustomerStatisticsAssertion.php │ │ │ ├── ResellerHasCircularFeatureAssertion.php │ │ │ ├── ResellerHasDomainAliasesFeatureAssertion.php │ │ │ └── ResellerHasSupportFeatureAssertion.php │ │ ├── Authentication/ │ │ │ ├── AuthEvent.php │ │ │ ├── AuthResult.php │ │ │ └── AuthService.php │ │ ├── Autoloader/ │ │ │ └── BcAutoloader.php │ │ ├── Config/ │ │ │ ├── ArrayConfig.php │ │ │ ├── DbConfig.php │ │ │ └── FileConfig.php │ │ ├── Crypt.php │ │ ├── Database/ │ │ │ ├── DatabaseEvent.php │ │ │ ├── DatabaseException.php │ │ │ ├── DatabaseMySQL.php │ │ │ ├── DatabaseResultSet.php │ │ │ └── DatabaseStatementEvent.php │ │ ├── Event/ │ │ │ ├── Event.php │ │ │ ├── EventAggregator.php │ │ │ ├── EventDescription.php │ │ │ ├── EventException.php │ │ │ ├── EventManager.php │ │ │ ├── EventManagerException.php │ │ │ ├── EventManagerInterface.php │ │ │ ├── Events.php │ │ │ └── Listener/ │ │ │ ├── EventListener.php │ │ │ ├── ListenerException.php │ │ │ ├── PriorityQueue.php │ │ │ ├── ResponseCollection.php │ │ │ └── SplPriorityQueue.php │ │ ├── Exception/ │ │ │ ├── AbstractExceptionWriter.php │ │ │ ├── BrowserExceptionWriter.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionEvent.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── MailExceptionWriter.php │ │ │ └── ProductionException.php │ │ ├── Filter/ │ │ │ └── GzipFilter.php │ │ ├── Handlers/ │ │ │ ├── ExceptionHandler.php │ │ │ ├── NotAllowedHandler.php │ │ │ └── NotFoundHandler.php │ │ ├── I18n/ │ │ │ ├── GettextParser.php │ │ │ └── ParserException.php │ │ ├── Json/ │ │ │ └── LazyDecoder.php │ │ ├── Net.php │ │ ├── PhpEditor.php │ │ ├── Plugin/ │ │ │ ├── AbstractPlugin.php │ │ │ ├── BruteForce.php │ │ │ ├── Filter/ │ │ │ │ └── PluginArchive.php │ │ │ ├── PluginActionStoppedException.php │ │ │ ├── PluginException.php │ │ │ ├── PluginManager.php │ │ │ ├── PluginRoutesInjector.php │ │ │ ├── PluginServiceProvidersInjector.php │ │ │ └── Validate/ │ │ │ └── PluginArchive.php │ │ ├── Registry.php │ │ ├── ServiceProvider.php │ │ ├── ServiceProviderInterface.php │ │ ├── Services.php │ │ ├── SystemInfo.php │ │ ├── TemplateEngine.php │ │ ├── Update/ │ │ │ ├── AbstractUpdate.php │ │ │ ├── DatabaseUpdate.php │ │ │ ├── UpdateException.php │ │ │ └── VersionUpdate.php │ │ ├── Uri/ │ │ │ ├── UriException.php │ │ │ └── UriRedirect.php │ │ ├── Utility/ │ │ │ └── OpcodeCache.php │ │ ├── Validate/ │ │ │ ├── CommonValidation.php │ │ │ └── Uri.php │ │ └── VirtualFileSystem.php │ └── themes/ │ └── default/ │ ├── admin/ │ │ ├── admin_add.phtml │ │ ├── admin_log.tpl │ │ ├── circular.tpl │ │ ├── custom_menus.tpl │ │ ├── domain_details.tpl │ │ ├── imscp_debugger.tpl │ │ ├── imscp_updates.tpl │ │ ├── index.tpl │ │ ├── ip_manage.tpl │ │ ├── ip_usage.tpl │ │ ├── language.tpl │ │ ├── layout.tpl │ │ ├── manage_reseller_owners.phtml │ │ ├── manage_reseller_users.phtml │ │ ├── multilanguage.phtml │ │ ├── navigation.php │ │ ├── reseller_add.phtml │ │ ├── reseller_edit.phtml │ │ ├── reseller_statistics.tpl │ │ ├── reseller_user_statistics.tpl │ │ ├── reseller_user_statistics_details.tpl │ │ ├── rootkit_log.tpl │ │ ├── server_statistic.tpl │ │ ├── service_statuses.tpl │ │ ├── sessions_manage.tpl │ │ ├── settings.tpl │ │ ├── settings_lostpassword.tpl │ │ ├── settings_maintenance_mode.tpl │ │ ├── settings_plugins.phtml │ │ ├── settings_ports.tpl │ │ ├── settings_server_traffic.tpl │ │ ├── settings_welcome_mail.tpl │ │ ├── system_info.tpl │ │ ├── ticket_closed.tpl │ │ ├── ticket_system.tpl │ │ ├── ticket_view.tpl │ │ └── users.phtml │ ├── assets/ │ │ ├── css/ │ │ │ ├── black.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── ie78overrides.css │ │ │ ├── jquery-ui-black.css │ │ │ ├── jquery-ui-blue.css │ │ │ ├── jquery-ui-green.css │ │ │ ├── jquery-ui-red.css │ │ │ ├── jquery-ui-yellow.css │ │ │ ├── red.css │ │ │ ├── simple.css │ │ │ ├── ui.css │ │ │ └── yellow.css │ │ └── js/ │ │ ├── imscp.js │ │ └── jquery/ │ │ ├── jquery-ui.js │ │ ├── jquery.js │ │ └── plugins/ │ │ ├── dataTables.js │ │ ├── dataTables_naturalSorting.js │ │ └── pGenerator.js │ ├── client/ │ │ ├── alias_add.tpl │ │ ├── alias_edit.tpl │ │ ├── backup.tpl │ │ ├── cert_view.tpl │ │ ├── dns_edit.tpl │ │ ├── domain_edit.tpl │ │ ├── domains_manage.tpl │ │ ├── error_edit.tpl │ │ ├── error_pages.tpl │ │ ├── ftp_accounts.tpl │ │ ├── ftp_add.tpl │ │ ├── ftp_choose_dir.tpl │ │ ├── ftp_edit.tpl │ │ ├── index.tpl │ │ ├── language.tpl │ │ ├── layout.tpl │ │ ├── mail_accounts.phtml │ │ ├── mail_add.tpl │ │ ├── mail_autoresponder.tpl │ │ ├── mail_catchall.phtml │ │ ├── mail_catchall_add.phtml │ │ ├── mail_edit.tpl │ │ ├── mail_external.tpl │ │ ├── navigation.php │ │ ├── phpini.tpl │ │ ├── protect_it.tpl │ │ ├── protected_areas.tpl │ │ ├── puser_assign.tpl │ │ ├── puser_edit.tpl │ │ ├── puser_gadd.tpl │ │ ├── puser_manage.tpl │ │ ├── puser_uadd.tpl │ │ ├── sql_change_password.tpl │ │ ├── sql_database_add.tpl │ │ ├── sql_manage.tpl │ │ ├── sql_user_add.tpl │ │ ├── subdomain_add.tpl │ │ ├── subdomain_edit.tpl │ │ ├── ticket_closed.tpl │ │ ├── ticket_create.tpl │ │ ├── ticket_system.tpl │ │ ├── ticket_view.tpl │ │ ├── traffic_statistics.tpl │ │ └── webtools.tpl │ ├── index.tpl │ ├── info.php │ ├── lostpassword.tpl │ ├── message.tpl │ ├── reseller/ │ │ ├── alias.tpl │ │ ├── alias_add.tpl │ │ ├── alias_edit.tpl │ │ ├── circular.tpl │ │ ├── domain_details.tpl │ │ ├── domain_edit.tpl │ │ ├── hosting_plan.tpl │ │ ├── hosting_plan_add.tpl │ │ ├── hosting_plan_edit.tpl │ │ ├── index.tpl │ │ ├── ip_usage.tpl │ │ ├── language.tpl │ │ ├── layout.tpl │ │ ├── navigation.php │ │ ├── settings_lostpassword.tpl │ │ ├── settings_welcome_mail.tpl │ │ ├── ticket_closed.tpl │ │ ├── ticket_create.tpl │ │ ├── ticket_system.tpl │ │ ├── ticket_view.tpl │ │ ├── user_add1.tpl │ │ ├── user_add2.tpl │ │ ├── user_add3.phtml │ │ ├── user_statistics.tpl │ │ ├── user_statistics_details.tpl │ │ └── users.phtml │ └── shared/ │ ├── layouts/ │ │ ├── simple.tpl │ │ └── ui.tpl │ └── partials/ │ ├── client_list.phtml │ ├── ftp_choose_dir.tpl │ ├── password_update.phtml │ ├── personal_change.phtml │ ├── profile.tpl │ └── user_edit.phtml ├── i18n/ │ ├── .tx/ │ │ └── config │ ├── iMSCP.pot │ ├── po/ │ │ ├── ar.po │ │ ├── bg_BG.po │ │ ├── ca_ES.po │ │ ├── cs_CZ.po │ │ ├── da_DK.po │ │ ├── de_DE.po │ │ ├── el.po │ │ ├── en_GB.po │ │ ├── es_AR.po │ │ ├── es_ES.po │ │ ├── eu_ES.po │ │ ├── fa_IR.po │ │ ├── fi_FI.po │ │ ├── fr_FR.po │ │ ├── gl_ES.po │ │ ├── hu_HU.po │ │ ├── it_IT.po │ │ ├── ja_JP.po │ │ ├── lt_LT.po │ │ ├── nb_NO.po │ │ ├── nl_NL.po │ │ ├── pl_PL.po │ │ ├── pt_BR.po │ │ ├── pt_PT.po │ │ ├── ro_RO.po │ │ ├── ru_RU.po │ │ ├── sk_SK.po │ │ ├── sl.po │ │ ├── sv_SE.po │ │ ├── th_TH.po │ │ ├── tr_TR.po │ │ ├── uk_UA.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ ├── zh_HK.po │ │ └── zh_TW.po │ └── tools/ │ ├── compilePo │ └── makemsgs └── imscp-autoinstall