Dear Wiki user, You have subscribed to a wiki page or wiki category on "James Wiki" for change notification.
The "V3ConfigTutorial" page has been changed by RajuBitter. http://wiki.apache.org/james/V3ConfigTutorial?action=diff&rev1=4&rev2=5 -------------------------------------------------- </mailserver> }}} + * Configure DNS server in ./conf/dnsservice.xml (add one <server> entry for each IP): + {{{ + <dnsservice> + <servers> + <server>192.168.178.1</server> + </servers> + <autodiscover>false</autodiscover> + <authoritative>false</authoritative> + <maxcachesize>50000</maxcachesize> + </dnsservice> + }}} + === Using MySQL instead of Derby === Download the MySQL driver JAR from [[http://dev.mysql.com/downloads/connector/j/3.1.html|http://dev.mysql.com/downloads/connector/j/3.1.html]], and put the JAR file into your ./conf/lib folder. Change the database settings in ./conf/database.properties to the following values: {{{ @@ -33, +45 @@ database.password=password_for_jamesuser }}} + To add the JAR to the classpath, edit ./bin/setenv.sh as shown here: + {{{ + # Add every needed extra jar to this + CLASSPATH_PREFIX=../conf/lib/mysql-connector-java-5.1.13-bin.jar + }}} +