__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This file incorporates work covered by the following license notice:
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed
# with this work for additional information regarding copyright
# ownership. The ASF licenses this file to you under the Apache
# License, Version 2.0 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
#
URI_ENCODE=$(dirname "$0")/uri-encode
FOPTS=""
sd_platform=$(uname -s)
# linux file utility needs -L option to resolve symlinks
if [ "$sd_platform" = "Linux" ] ; then
FOPTS="-L"
fi
# do not confuse the system mail clients with OOo and Java libraries
unset LD_LIBRARY_PATH
# checks for the original mozilla start script(s)
# and restrict the "-remote" semantics to those.
run_mozilla() {
# find mozilla script in PATH if necessary
if [ "$(basename "$1")" = "$1" ]; then
moz=$(command -v "$1")
else
moz=$1
fi
if file $FOPTS "$moz" | grep "script" > /dev/null && grep "[NM]PL" "$moz" > /dev/null; then
"$moz" -remote 'ping()' 2>/dev/null >/dev/null
if [ $? -eq 2 ]; then
"$1" -compose "$2" &
else
"$1" -remote "xfeDoCommand(composeMessage,$2)" &
fi
else
"$1" -compose "$2" &
fi
}
if [ "$1" = "--mailclient" ]; then
shift
MAILER=$1
shift
fi
case `basename "$MAILER"` in
sensible-lomua)
if [ -x /usr/bin/xdg-email ] ; then
MAILER=/usr/bin/xdg-email
elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kde-open ] \
|| [ -x /usr/bin/gnome-open ] \
|| [ -x /usr/bin/xdg-open ]; then
# use an undefined mailer, to trigger the default handling
MAILER=undefined
elif [ -n "$GNOME_DESKTOP_SESSION_ID" -a -x /usr/bin/evolution ]; then
MAILER=/usr/bin/evolution
elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kmail ]; then
MAILER=/usr/bin/kmail
elif [ -x /usr/bin/evolution ]; then
# default
MAILER=/usr/bin/evolution
elif [ -x /usr/bin/icedove ]; then
# fallback
MAILER=/usr/bin/icedove
elif [ -x /usr/bin/thunderbird ]; then
# fallback
MAILER=/usr/bin/thunderbird
fi
;;
esac
# autodetect mail client from executable name
case $(basename "$MAILER" | sed 's/-.*$//') in
iceape | mozilla | netscape | seamonkey | icedove | thunderbird | betterbird)
while [ "$1" != "" ]; do
case $1 in
--to)
TO=${TO:-}${TO:+,}$2
shift
;;
--cc)
CC=${CC:-}${CC:+,}$2
shift
;;
--bcc)
BCC=${BCC:-}${BCC:+,}$2
shift
;;
--subject)
SUBJECT=$2
shift
;;
--body)
BODY=$2
shift
;;
--attach)
ATTACH=${ATTACH:-}${ATTACH:+,}$(printf file://%s "$2" | "${URI_ENCODE}")
shift
;;
*)
;;
esac
shift;
done
if [ "$TO" != "" ]; then
COMMAND=${COMMAND:-}${COMMAND:+,}to=\'${TO}\'
fi
if [ "$CC" != "" ]; then
COMMAND=${COMMAND:-}${COMMAND:+,}cc=\'${CC}\'
fi
if [ "$BCC" != "" ]; then
COMMAND=${COMMAND:-}${COMMAND:+,}bcc=\'${BCC}\'
fi
if [ "$SUBJECT" != "" ]; then
COMMAND=${COMMAND:-}${COMMAND:+,}subject=\'${SUBJECT}\'
fi
if [ "$BODY" != "" ]; then
COMMAND=${COMMAND:-}${COMMAND:+,}body=\'${BODY}\'
fi
if [ "$ATTACH" != "" ]; then
COMMAND=${COMMAND:-}${COMMAND:+,}attachment=\'${ATTACH}\'
fi
run_mozilla "$MAILER" "$COMMAND"
;;
kmail)
while [ "$1" != "" ]; do
case $1 in
--to)
TO="${TO:-}${TO:+,}$2"
shift
;;
--cc)
CC="${CC:-}${CC:+,}$2"
shift
;;
--bcc)
BCC="${BCC:-}${BCC:+,}$2"
shift
;;
--subject)
SUBJECT="$2"
shift
;;
--body)
BODY="$2"
shift
;;
--from)
FROM="$2"
shift
;;
--attach)
ATTACH="${ATTACH:-}${ATTACH:+ }--attach "$(printf file://%s "$2" | "${URI_ENCODE}")
shift
;;
*)
;;
esac
shift;
done
${MAILER} --composer \
${CC:+--cc} ${CC:+"${CC}"} \
${BCC:+--bcc} ${BCC:+"${BCC}"} \
${SUBJECT:+--subject} ${SUBJECT:+"${SUBJECT}"} \
${BODY:+--body} ${BODY:+"${BODY}"} \
${FROM:+--header} ${FROM:+"From: ${FROM}"} \
${ATTACH:+${ATTACH}} \
${TO:+"${TO}"}
;;
mutt)
while [ "$1" != "" ]; do
case $1 in
--from)
FROM="$2"
shift
;;
--to)
TO="${TO:-}${TO:+,}$2"
shift
;;
--cc)
CC="${CC:-}${CC:+,}$2"
shift
;;
--bcc)
BCC="${BCC:-}${BCC:+,}$2"
shift
;;
--subject)
SUBJECT="$2"
shift
;;
--body)
TEMPLATE="$(basename "$0").mutt.XXXXXXXX"
BODY=$(mktemp -q -t "${TEMPLATE}")
echo "$2" > "$BODY"
shift
;;
--attach)
ATTACH="$2"
shift
;;
*)
;;
esac
shift;
done
x-terminal-emulator -e ${MAILER} \
${FROM:+-e} ${FROM:+"set from=\"${FROM}\""} \
${CC:+-c} ${CC:+"${CC}"} \
${BCC:+-b} ${BCC:+"${BCC}"} \
${SUBJECT:+-s} ${SUBJECT:+"${SUBJECT}"} \
${BODY:+-i} ${BODY:+"${BODY}"} \
${ATTACH:+-a} ${ATTACH:+"${ATTACH}"} \
${TO:+"${TO}"} &
rm -f "$BODY"
;;
evolution | gnome | xdg) # NB. shortened from the dash on
while [ "$1" != "" ]; do
case $1 in
--to)
if [ "${TO}" != "" ]; then
MAILTO="${MAILTO:-}${MAILTO:+&}to=$2"
else
TO="$2"
fi
shift
;;
--cc)
MAILTO="${MAILTO:-}${MAILTO:+&}cc="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--bcc)
MAILTO="${MAILTO:-}${MAILTO:+&}bcc="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--subject)
MAILTO="${MAILTO:-}${MAILTO:+&}subject"=$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--body)
MAILTO="${MAILTO:-}${MAILTO:+&}body="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--attach)
MAILTO="${MAILTO:-}${MAILTO:+&}attach="$(printf file://%s "$2" | "${URI_ENCODE}")
shift
;;
*)
;;
esac
shift;
done
MAILTO="mailto:${TO}?${MAILTO}"
${MAILER} "${MAILTO}" &
;;
groupwise)
while [ "$1" != "" ]; do
case $1 in
--to)
if [ "${TO}" != "" ]; then
MAILTO="${MAILTO:-}${MAILTO:+&}to=$2"
else
TO="$2"
fi
shift
;;
--cc)
MAILTO="${MAILTO:-}${MAILTO:+&}cc="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--bcc)
MAILTO="${MAILTO:-}${MAILTO:+&}bcc="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--subject)
MAILTO="${MAILTO:-}${MAILTO:+&}subject"=$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--body)
MAILTO="${MAILTO:-}${MAILTO:+&}body="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--attach)
MAILTO="${MAILTO:-}${MAILTO:+&}attachment="$(printf file://%s "$2" | "${URI_ENCODE}")
shift
;;
*)
;;
esac
shift;
done
MAILTO="mailto:${TO}?${MAILTO}"
${MAILER} "${MAILTO}" &
;;
dtmail)
while [ "$1" != "" ]; do
case $1 in
--to)
TO=${TO:-}${TO:+,}$2
shift
;;
--attach)
ATTACH="$2"
shift
;;
*)
;;
esac
shift;
done
${MAILER} ${TO:+-T} ${TO:-} ${ATTACH:+-a} ${ATTACH:+"${ATTACH}"}
;;
sylpheed | claws)
while [ "$1" != "" ]; do
case $1 in
--to)
TO=${TO:-}${TO:+,}$2
shift
;;
--attach)
ATTACH=${ATTACH:-}${ATTACH:+,}$(printf file://%s "$2" | "${URI_ENCODE}")
shift
;;
*)
;;
esac
shift;
done
${MAILER} ${TO:+--compose} ${TO:-} ${ATTACH:+--attach} ${ATTACH:-}
;;
Mail | Thunderbird | Betterbird | *.app )
while [ "$1" != "" ]; do
case $1 in
--attach)
#i95688# fix filenames containing accented chars, whatever alien
ATTACH="${ATTACH:-}${ATTACH:+ }"$(printf file://%s "$2" | "${URI_ENCODE}")
shift
;;
*)
;;
esac
shift;
done
/usr/bin/open -a "${MAILER}" ${ATTACH}
;;
*)
# LO is configured to use something we do not recognize, or is not configured.
# Try to be smart, and send the mail anyway, if we have the
# possibility to do so.
if [ -x /usr/bin/xdg-email ] ; then
MAILER=/usr/bin/xdg-email
elif [ -n "$DESKTOP_LAUNCH" ]; then
# http://lists.freedesktop.org/pipermail/xdg/2004-August/002873.html
MAILER=${DESKTOP_LAUNCH}
elif [ -n "$KDE_FULL_SESSION" -a -x /usr/bin/kde-open ] ; then
MAILER=/usr/bin/kde-open
elif [ -x /usr/bin/xdg-open ] ; then
MAILER=/usr/bin/xdg-open
elif command -v xdg-open >/dev/null 2>&1 ; then
MAILER=$(command -v xdg-open)
else
echo "Unsupported mail client: $(basename $MAILER | sed 's/-.*^//')"
exit 2
fi
while [ "$1" != "" ]; do
case $1 in
--to)
if [ "${TO}" != "" ]; then
MAILTO="${MAILTO:-}${MAILTO:+&}to=$2"
else
TO="$2"
fi
shift
;;
--cc)
MAILTO="${MAILTO:-}${MAILTO:+&}cc="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--bcc)
MAILTO="${MAILTO:-}${MAILTO:+&}bcc="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--subject)
MAILTO="${MAILTO:-}${MAILTO:+&}subject"=$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--body)
MAILTO="${MAILTO:-}${MAILTO:+&}body="$(printf %s "$2" | "${URI_ENCODE}")
shift
;;
--attach)
if [ "$MAILER" = "/usr/bin/xdg-email" ]; then
MAILTO="${MAILTO:-}${MAILTO:+&}attach="$(printf file://%s "$2" | "${URI_ENCODE}")
else
MAILTO="${MAILTO:-}${MAILTO:+&}attachment="$(printf file://%s "$2" | "${URI_ENCODE}")
fi
shift
;;
*)
;;
esac
shift;
done
MAILTO="mailto:${TO}?${MAILTO}"
${MAILER} "${MAILTO}" &
;;
esac
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| classes | Folder | 0755 |
|
|
| opencl | Folder | 0755 |
|
|
| opengl | Folder | 0755 |
|
|
| resource | Folder | 0755 |
|
|
| services | Folder | 0755 |
|
|
| shell | Folder | 0755 |
|
|
| types | Folder | 0755 |
|
|
| wizards | Folder | 0755 |
|
|
| bootstraprc | File | 112 B | 0644 |
|
| fundamentalrc | File | 2.34 KB | 0644 |
|
| gdbtrace | File | 350 B | 0644 |
|
| intro-highres.png | File | 120.46 KB | 0644 |
|
| intro.png | File | 81.45 KB | 0644 |
|
| java-set-classpath | File | 1.98 KB | 0755 |
|
| libLanguageToollo.so | File | 171.58 KB | 0644 |
|
| libOGLTranslo.so | File | 303.22 KB | 0644 |
|
| libPresentationMinimizerlo.so | File | 327.36 KB | 0644 |
|
| libacclo.so | File | 1.65 MB | 0644 |
|
| libaffine_uno_uno.so | File | 22.52 KB | 0644 |
|
| libanalysislo.so | File | 432.91 KB | 0644 |
|
| libanimcorelo.so | File | 194.9 KB | 0644 |
|
| libavmediagst.so | File | 99.92 KB | 0644 |
|
| libbiblo.so | File | 592.59 KB | 0644 |
|
| libbinaryurplo.so | File | 211.63 KB | 0644 |
|
| libbootstraplo.so | File | 608.92 KB | 0644 |
|
| libcached1.so | File | 379.3 KB | 0644 |
|
| libcairocanvaslo.so | File | 705.61 KB | 0644 |
|
| libclewlo.so | File | 26.25 KB | 0644 |
|
| libcmdmaillo.so | File | 79.04 KB | 0644 |
|
| libcuilo.so | File | 5.04 MB | 0644 |
|
| libdatelo.so | File | 91.08 KB | 0644 |
|
| libdbahsqllo.so | File | 99.02 KB | 0644 |
|
| libdbalo.so | File | 3.79 MB | 0644 |
|
| libdeploymentgui.so | File | 412.92 KB | 0644 |
|
| libdlgprovlo.so | File | 199.47 KB | 0644 |
|
| libfilelo.so | File | 850.04 KB | 0644 |
|
| libgcc3_uno.so | File | 79.11 KB | 0644 |
|
| libgraphicfilterlo.so | File | 51.04 KB | 0644 |
|
| libhwplo.so | File | 555.85 KB | 0644 |
|
| libi18nlangtag.so | File | 151.38 KB | 0644 |
|
| libintrospectionlo.so | File | 211.41 KB | 0644 |
|
| libinvocadaptlo.so | File | 46.91 KB | 0644 |
|
| libinvocationlo.so | File | 126.94 KB | 0644 |
|
| libiolo.so | File | 388.89 KB | 0644 |
|
| libjavaloaderlo.so | File | 79.05 KB | 0644 |
|
| libjavavmlo.so | File | 143.51 KB | 0644 |
|
| libjvmaccesslo.so | File | 34.63 KB | 0644 |
|
| libjvmfwklo.so | File | 155.9 KB | 0644 |
|
| libldapbe2lo.so | File | 71.09 KB | 0644 |
|
| liblocaledata_en.so | File | 466.34 KB | 0644 |
|
| liblocaledata_es.so | File | 434.27 KB | 0644 |
|
| liblocaledata_euro.so | File | 2.98 MB | 0644 |
|
| liblocaledata_others.so | File | 4.16 MB | 0644 |
|
| liblog_uno_uno.so | File | 18.45 KB | 0644 |
|
| libloglo.so | File | 151.73 KB | 0644 |
|
| liblosessioninstalllo.so | File | 46.9 KB | 0644 |
|
| liblpsolve55.so | File | 640.63 KB | 0644 |
|
| liblwpftlo.so | File | 1.25 MB | 0644 |
|
| libmergedlo.so | File | 109.96 MB | 0644 |
|
| libmigrationoo2lo.so | File | 54.95 KB | 0644 |
|
| libmigrationoo3lo.so | File | 63.05 KB | 0644 |
|
| libmozbootstraplo.so | File | 55.03 KB | 0644 |
|
| libmsformslo.so | File | 608.91 KB | 0644 |
|
| libmswordlo.so | File | 3.01 MB | 0644 |
|
| libnamingservicelo.so | File | 34.74 KB | 0644 |
|
| libpcrlo.so | File | 1.77 MB | 0644 |
|
| libpdffilterlo.so | File | 369.13 KB | 0644 |
|
| libpdfimportlo.so | File | 592.92 KB | 0644 |
|
| libpdfiumlo.so | File | 4.85 MB | 0644 |
|
| libpricinglo.so | File | 106.91 KB | 0644 |
|
| libprotocolhandlerlo.so | File | 58.98 KB | 0644 |
|
| libproxyfaclo.so | File | 34.84 KB | 0644 |
|
| libpythonloaderlo.so | File | 30.94 KB | 0644 |
|
| libpyuno.so | File | 296.07 KB | 0644 |
|
| libreflectionlo.so | File | 255.81 KB | 0644 |
|
| libreglo.so | File | 91.1 KB | 0644 |
|
| libsal_textenclo.so | File | 1.62 MB | 0644 |
|
| libscdlo.so | File | 46.94 KB | 0644 |
|
| libscfiltlo.so | File | 5.69 MB | 0644 |
|
| libsclo.so | File | 20.9 MB | 0644 |
|
| libscnlo.so | File | 160.09 KB | 0644 |
|
| libscriptframe.so | File | 239.69 KB | 0644 |
|
| libscuilo.so | File | 906.58 KB | 0644 |
|
| libsdbtlo.so | File | 139.3 KB | 0644 |
|
| libsddlo.so | File | 43 KB | 0644 |
|
| libsdlo.so | File | 9.61 MB | 0644 |
|
| libsduilo.so | File | 1.81 MB | 0644 |
|
| libskialo.so | File | 7.17 MB | 0644 |
|
| libslideshowlo.so | File | 2.28 MB | 0644 |
|
| libsmdlo.so | File | 34.91 KB | 0644 |
|
| libsmlo.so | File | 1.93 MB | 0644 |
|
| libsolverlo.so | File | 167.27 KB | 0644 |
|
| libstaroffice-0.0-lo.so.0 | File | 2.55 MB | 0644 |
|
| libstocserviceslo.so | File | 159.64 KB | 0644 |
|
| libstoragefdlo.so | File | 54.94 KB | 0644 |
|
| libstorelo.so | File | 126.74 KB | 0644 |
|
| libsvgfilterlo.so | File | 889.55 KB | 0644 |
|
| libsw_writerfilterlo.so | File | 3.44 MB | 0644 |
|
| libswdlo.so | File | 34.93 KB | 0644 |
|
| libswlo.so | File | 22.23 MB | 0644 |
|
| libswuilo.so | File | 2.77 MB | 0644 |
|
| libt602filterlo.so | File | 131.05 KB | 0644 |
|
| libtextconversiondlgslo.so | File | 95 KB | 0644 |
|
| libucpchelp1.so | File | 496.42 KB | 0644 |
|
| libucpcmis1lo.so | File | 2.16 MB | 0644 |
|
| libucpdav1.so | File | 536.61 KB | 0644 |
|
| libucpgio1lo.so | File | 188.05 KB | 0644 |
|
| libucppkg1.so | File | 247.55 KB | 0644 |
|
| libuno_cppu.so.3 | File | 251.34 KB | 0644 |
|
| libuno_cppuhelpergcc3.so.3 | File | 1.24 MB | 0644 |
|
| libuno_purpenvhelpergcc3.so.3 | File | 30.56 KB | 0644 |
|
| libuno_sal.so.3 | File | 489.07 KB | 0644 |
|
| libuno_salhelpergcc3.so.3 | File | 38.76 KB | 0644 |
|
| libunoidllo.so | File | 487.22 KB | 0644 |
|
| libunopkgapp.so | File | 151.56 KB | 0644 |
|
| libunsafe_uno_uno.so | File | 14.39 KB | 0644 |
|
| libuuresolverlo.so | File | 38.8 KB | 0644 |
|
| libvbaobjlo.so | File | 3.04 MB | 0644 |
|
| libvbaswobjlo.so | File | 3.05 MB | 0644 |
|
| libvclplug_genlo.so | File | 599.66 KB | 0644 |
|
| libvclplug_gtk3lo.so | File | 2.37 MB | 0644 |
|
| libwpftcalclo.so | File | 99.52 KB | 0644 |
|
| libwpftdrawlo.so | File | 640.01 KB | 0644 |
|
| libwpftimpresslo.so | File | 75.27 KB | 0644 |
|
| libwpftwriterlo.so | File | 404.85 KB | 0644 |
|
| libwriterlo.so | File | 200.02 KB | 0644 |
|
| libwriterperfectlo.so | File | 79.02 KB | 0644 |
|
| libxmlreaderlo.so | File | 46.65 KB | 0644 |
|
| libxmlsecurity.so | File | 825.25 KB | 0644 |
|
| lounorc | File | 1.03 KB | 0644 |
|
| mailmerge.py | File | 21.91 KB | 0644 |
|
| msgbox.py | File | 7.99 KB | 0644 |
|
| officehelper.py | File | 7 KB | 0644 |
|
| oosplash | File | 50.3 KB | 0755 |
|
| opencltest | File | 14.31 KB | 0755 |
|
| pagein-calc | File | 24 B | 0644 |
|
| pagein-common | File | 255 B | 0644 |
|
| pagein-draw | File | 24 B | 0644 |
|
| pagein-impress | File | 24 B | 0644 |
|
| pagein-writer | File | 24 B | 0644 |
|
| pythonloader.py | File | 6.65 KB | 0644 |
|
| pythonloader.unorc | File | 182 B | 0644 |
|
| pyuno.so | File | 14.24 KB | 0644 |
|
| redirectrc | File | 50 B | 0644 |
|
| regview | File | 14.32 KB | 0755 |
|
| scalc | File | 63 B | 0755 |
|
| sdraw | File | 63 B | 0755 |
|
| senddoc | File | 13.63 KB | 0755 |
|
| services.rdb | File | 9.77 KB | 0644 |
|
| setuprc | File | 33 B | 0644 |
|
| simpress | File | 66 B | 0755 |
|
| smath | File | 63 B | 0755 |
|
| soffice | File | 6.5 KB | 0755 |
|
| soffice.bin | File | 14.23 KB | 0755 |
|
| sofficerc | File | 1.26 KB | 0644 |
|
| swriter | File | 65 B | 0755 |
|
| types.rdb | File | 56.36 KB | 0644 |
|
| uno | File | 1.26 KB | 0755 |
|
| uno.bin | File | 82.54 KB | 0755 |
|
| unoinfo | File | 1.27 KB | 0755 |
|
| unopkg | File | 2.83 KB | 0755 |
|
| unopkg.bin | File | 14.23 KB | 0755 |
|
| unorc | File | 239 B | 0644 |
|
| uri-encode | File | 14.23 KB | 0755 |
|
| versionrc | File | 1.01 KB | 0644 |
|
| xpdfimport | File | 78.41 KB | 0755 |
|