You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| 
 | |
| $config = array();
 | |
| 
 | |
| // Generals
 | |
| $config['db_dsnw'] = 'sqlite:////data/webmail/roundcube.db';
 | |
| $config['des_key'] = 'rcmail-!24ByteDESkey*Str';
 | |
| $config['identities_level'] = 3;
 | |
| $config['reply_all_mode'] = 1;
 | |
| 
 | |
| // List of active plugins (in plugins/ directory)
 | |
| $config['plugins'] = array(
 | |
|     'archive',
 | |
|     'zipdownload',
 | |
|     'managesieve',
 | |
|     'markasjunk',
 | |
|     'password'
 | |
| );
 | |
| 
 | |
| // Mail servers
 | |
| $config['default_host'] = 'localhost';
 | |
| $config['default_port'] = 143;
 | |
| $config['smtp_server'] = 'localhost';
 | |
| $config['smtp_port'] = 25;
 | |
| 
 | |
| // Password management
 | |
| $config['password_driver'] = 'sql';
 | |
| $config['password_confirm_current'] = true;
 | |
| $config['password_minimum_length'] = 6;
 | |
| $config['password_db_dsn'] = 'sqlite:////data/freeposte.db';
 | |
| $config['password_query'] = '
 | |
|   UPDATE user SET password=%D
 | |
|   WHERE id IN (SELECT user.id FROM user
 | |
|                INNER JOIN domain ON domain.id=user.domain_id
 | |
|                WHERE domain.name=%d AND user.name=%l
 | |
|               )
 | |
| ';
 | |
| $config['password_dovecotpw'] = 'doveadm pw';
 | |
| $confog['password_dovecotpw_method'] = 'SHA512-CRYPT';
 | |
| 
 | |
| // skin name: folder from skins/
 | |
| $config['skin'] = 'larry';
 |