?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
#!/bin/sh
#
# exim This shell script takes care of starting and stopping
# exim.
#
# chkconfig: 2345 80 30
# description: Exim is a Mail Transport Agent, which is the program \
# that moves mail from one machine to another.
# processname: exim
# config: /etc/exim.conf
# pidfile: /var/run/exim.pid
# Source function library.
if [ -e "/etc/init.d/functions" ]; then
. /etc/init.d/functions
else
if [ -e "/etc/rc.d/init.d/functions" ]; then
. /etc/rc.d/init.d/functions
fi
fi
# Source networking configuration
if [ -f /etc/sysconfig/network ]; then
. /etc/sysconfig/network
fi
# Check that networking is up for Red Hat
[ ${NETWORKING} = "no" ] && exit 0
DAEMON=yes
QUEUE=1h
# Source exim configureation.
if [ -f /etc/sysconfig/exim ] ; then
. /etc/sysconfig/exim
fi
LANG=C
export LANG
[ -f /usr/local/bin/exim ] || exit 0
# See how we were called.
case "$1" in
start)
# mount memory disk
MOUNTED=`df -T /var/spool/exim/mem | grep -c tmpfs`
echo -n "Mounting memory disk: "
if [ $MOUNTED == '1' ]; then
echo -n "(exists) "
else
mount -t tmpfs -o size=1073741824 none /var/spool/exim/mem
mkdir /var/spool/exim/mem/db
mkdir /var/spool/exim/mem/input
mkdir /var/spool/exim/mem/counters
chown -R mail:mail /var/spool/exim/mem
chmod 0771 /var/spool/exim/mem
chmod 0750 /var/spool/exim/mem/db
chmod 0750 /var/spool/exim/mem/input
chmod 0750 /var/spool/exim/mem/counters
fi
echo_success
echo
# Start daemons.
echo -n "Starting exim: "
TMPDIR=/tmp daemon /usr/local/bin/exim $([ "$DAEMON" = yes ] && echo -bd) \
$([ -n "$QUEUE" ] && echo -q$QUEUE)
echo
if [ ! "$ALTPORT" = "" ]; then
echo -n "Starting exim-$ALTPORT: "
TMPDIR=/tmp daemon /usr/local/bin/exim -bd -oX $ALTPORT
echo $RESULT
fi
echo -n "Starting exim-smtps: "
TMPDIR=/tmp daemon /usr/local/bin/exim -tls-on-connect -bd -oX 465
echo
touch /var/lock/subsys/exim
;;
stop)
# Stop daemons.
echo -n "Shutting down exim: "
killproc exim
echo
rm -f /var/lock/subsys/exim
;;
restart)
$0 stop
$0 start
;;
status)
status exim
;;
*)
echo "Usage: exim {start|stop|restart|status}"
exit 1
esac
exit 0