/usr/bin/mewstunnel is in mew-bin 1:6.3-3.
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 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/sh
# mewstunnel: stunnel wrapper for Mew
#
# Author: Tatsuya Kinoshita <tats@vega.ocn.ne.jp>
# Created: 31 Jan 2005
# Revised:
#
# Unlimited permission is granted to use, copy, distribute, and/or modify
# this file. There is NO WARRANTY.
prog="$MEW_PROG_STUNNEL"
if [ -z "$prog" ]; then
prog="`which stunnel4`"
if [ ! -x "$prog" ]; then
prog="`which stunnel`"
fi
if [ ! -x "$prog" ]; then
prog="/usr/sbin/stunnel4"
fi
if [ ! -x "$prog" ]; then
prog="/usr/sbin/stunnel"
fi
fi
LC_ALL="C"
export LC_ALL
# Create new process
"$prog" "$@"
|