/usr/bin/mewstunnel is in mew-beta-bin 7.0.50~6.5+0.20140128-1.
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 | #!/bin/sh
# mewstunnel: stunnel wrapper for Mew
#
# Author: Tatsuya Kinoshita <tats@vega.ocn.ne.jp>
# Created: 31 Jan 2005
# Revised: 19 Oct 2011
#
# Copyright (c) 2005-2011 Tatsuya Kinoshita
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted without restriction, with NO WARRANTY.
prog=/usr/sbin/stunnel
for f in "$MEW_PROG_STUNNEL" "`which stunnel4`" /usr/local/sbin/stunnel4 \
/usr/sbin/stunnel4 "`which stunnel`" /usr/local/sbin/stunnel; do
if [ -n "$f" ] && [ -x "$f" ]; then
prog=$f
break
fi
done
LC_ALL=C
export LC_ALL
"$prog" "$@"
|