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