psa.anon_ftp
Overview
The anon_ftp table contains information about anonymous FTP configurations for specific domains.
Column Descriptions
id - primary key that is automatically incremented
dom_id - links to id in domains table
max_conn - maximum connections allowed
bandwidth - bandwidth allowed
incoming - true if file uploading is allowed, otherwise false
incoming_readable - true if uploaded files are visible, otherwise false
incoming_subdirs - true if users can create directories, otherwise false
status - true if anonymous FTP is enabled, otherwise false
quota - maximum amount of files allowed to be uploaded
display_login - true if login_text should be displayed, otherwise false
login_text - welcome banner text provided upon FTP connections
Table Structure
CREATE TABLE `anon_ftp` ( `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, `dom_id` INT(10) UNSIGNED NOT NULL DEFAULT '0', `max_conn` INT(10) UNSIGNED DEFAULT NULL, `bandwidth` INT(10) UNSIGNED DEFAULT NULL, `incoming` ENUM('false','true') NOT NULL DEFAULT 'false', `incoming_readable` ENUM('false','true') NOT NULL DEFAULT 'false', `incoming_subdirs` ENUM('false','true') NOT NULL DEFAULT 'false', `status` ENUM('false','true') NOT NULL DEFAULT 'false', `quota` BIGINT(20) UNSIGNED DEFAULT '1048576', `display_login` ENUM('false','true') NOT NULL DEFAULT 'false', `login_text` TEXT character SET utf8, PRIMARY KEY (`id`), UNIQUE KEY `dom_id` (`dom_id`) ) ENGINE=INNODB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1