mirror of https://github.com/lucascbeyeler/zimbra
				
				
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			524 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			524 B
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| # mysql:host=xx;dbname=yyy
 | |
| #
 | |
| # pgsql:host=xx;dbname=yyy
 | |
| #
 | |
| # sqlite:////full/unix/path/to/file.db?mode=0666
 | |
| #
 | |
| #$DB_DSN="sqlite:////tmp/cluebringer.sqlite";
 | |
| #$DB_DSN="mysql:host=localhost;dbname=cluebringer";
 | |
| $DB_DSN="sqlite:/opt/zimbra/data/cbpolicyd/db/cbpolicyd.sqlitedb";
 | |
| $DB_USER="root";
 | |
| #$DB_PASS="";
 | |
| $DB_TABLE_PREFIX="";
 | |
| 
 | |
| 
 | |
| #
 | |
| # THE BELOW SECTION IS UNSUPPORTED AND MEANT FOR THE ORIGINAL SPONSOR OF V2
 | |
| #
 | |
| 
 | |
| #$DB_POSTFIX_DSN="mysql:host=localhost;dbname=postfix";
 | |
| #$DB_POSTFIX_USER="root";
 | |
| #$DB_POSTFIX_PASS="";
 | |
| 
 | |
| ?>
 |