/usr/lib/libreoffice/program/kde-open-url is in libreoffice-kde 1:3.5.2-2ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh
# special handling for mailto: uris
if echo $1 | grep '^mailto:' > /dev/null; then
if which kde-open; then
kde-open "$1" &
else
mailservice "$1" &
fi
else
sensible-browser "$1" &
fi
exit 0
|