mirror of
https://github.com/moparisthebest/davmail
synced 2024-11-10 11:25:00 -05:00
bac0cf9fbf
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1873 3d1905a2-6b24-0410-a738-b14d5a86fcbd
9 lines
255 B
Bash
9 lines
255 B
Bash
#!/bin/bash
|
|
# Ubuntu setup instructions :
|
|
# install java :
|
|
# sudo apt-get install sun-java6-bin
|
|
# launch davmail :
|
|
BASE=`dirname $0`
|
|
for i in $BASE/lib/*; do export CLASSPATH=$CLASSPATH:$i; done
|
|
java -cp $BASE/davmail.jar:$CLASSPATH davmail.DavGateway $1
|