You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
289 B
8 lines
289 B
#!/bin/sh |
|
# Ubuntu setup instructions : |
|
# install java : |
|
# sudo apt-get install default-jre |
|
# launch davmail |
|
BASE=`dirname $0` |
|
for i in $BASE/lib/*; do export CLASSPATH=$CLASSPATH:$i; done |
|
exec java -Xmx512M -Dsun.net.inetaddr.ttl=60 -cp $BASE/davmail.jar:$CLASSPATH davmail.DavGateway $1
|
|
|