
-----------------------------------
copthesaint
Thu Dec 08, 2011 10:12 am

Server Properties File
-----------------------------------
Im just playing around with the java mail API and I have no idea how a server properties file is supposed to be writen, Can I get some help please? :)

-----------------------------------
DemonWasp
Thu Dec 08, 2011 10:35 am

RE:Server Properties File
-----------------------------------
Having never used the JavaMail API, I'm going to guess that they're using the Properties class ( http://docs.oracle.com/javase/6/docs/api/java/util/Properties.html ) which is best used with the format described in the load() method's documentation.

Roughly:
[code]
one = 1
two:2
three:                   \
           3
[/code]
