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=2&rev2=3 -------------------------------------------------- 1. Extract the gz or zip file to a local directory (probably the root of your c drive in windows, or /opt/ on linux). 1. Start {{{bin/run.sh}}} (unix) or {{{bin\run.bat}}} (windows) You will see something like the following: + === Basic configuration === + + * Enable virtual hosting + To enable virtual hosting, set <enableVirtualHosting> true </enableVirtualHosting> in conf/mailserver.xml + + === 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: + {{{ + # MySQL JDBC database properties + database.driverClassName=com.mysql.jdbc.Driver + database.url=jdbc:mysql://localhost/james + database.username=jamesuser + database.password=password_for_jamesuser + }}} +