2008/02/12 12:45:17 sb 1.3.64.1: #i86041# do not add Mozilla library directory to LD_LIBRARY_PATH in soffice start script
11 lines
159 B
Bash
Executable File
11 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# special handling for mailto: uris
|
|
if echo $1 | grep '^mailto:' > /dev/null; then
|
|
kmailservice "$1" &
|
|
else
|
|
kfmclient openURL "$1" &
|
|
fi
|
|
|
|
exit 0
|