This file is indexed.

/usr/bin/mewstunnel is in mew-bin 1:6.7-4.

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
#!/bin/sh
# mewstunnel: stunnel wrapper for Mew
# 
# Author: Tatsuya Kinoshita <tats@vega.ocn.ne.jp>
# Created: 31 Jan 2005
# Revised: 03 Sep 2014
# 
# Copyright (c) 2005-2014 Tatsuya Kinoshita
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted without restriction, with NO WARRANTY.
# You may regard this as a work that is placed in the public domain.

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" "$@"