[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
libexec
/
dovecot
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 anvil
80,664 B
SET
[ EDIT ]
|
[ DEL ]
📄 auth
551,816 B
SET
[ EDIT ]
|
[ DEL ]
📄 config
374,568 B
SET
[ EDIT ]
|
[ DEL ]
📄 decode2text.sh
2,838 B
SET
[ EDIT ]
|
[ DEL ]
📄 deliver
36,784 B
SET
[ EDIT ]
|
[ DEL ]
📄 dict
161,776 B
SET
[ EDIT ]
|
[ DEL ]
📄 dict-expire
124,680 B
SET
[ EDIT ]
|
[ DEL ]
📄 dns-client
23,568 B
SET
[ EDIT ]
|
[ DEL ]
📄 doveadm-server
981,920 B
SET
[ EDIT ]
|
[ DEL ]
📄 dovecot-lda
36,784 B
SET
[ EDIT ]
|
[ DEL ]
📄 gdbhelper
15,736 B
SET
[ EDIT ]
|
[ DEL ]
📄 health-check.sh
1,026 B
SET
[ EDIT ]
|
[ DEL ]
📄 imap
503,960 B
SET
[ EDIT ]
|
[ DEL ]
📄 imap-hibernate
66,256 B
SET
[ EDIT ]
|
[ DEL ]
📄 imap-login
130,008 B
SET
[ EDIT ]
|
[ DEL ]
📄 imap-urlauth
42,976 B
SET
[ EDIT ]
|
[ DEL ]
📄 imap-urlauth-login
24,536 B
SET
[ EDIT ]
|
[ DEL ]
📄 imap-urlauth-worker
92,160 B
SET
[ EDIT ]
|
[ DEL ]
📄 indexer
51,304 B
SET
[ EDIT ]
|
[ DEL ]
📄 indexer-worker
39,728 B
SET
[ EDIT ]
|
[ DEL ]
📄 lmtp
105,224 B
SET
[ EDIT ]
|
[ DEL ]
📄 log
41,176 B
SET
[ EDIT ]
|
[ DEL ]
📄 managesieve
81,824 B
SET
[ EDIT ]
|
[ DEL ]
📄 managesieve-login
51,672 B
SET
[ EDIT ]
|
[ DEL ]
📄 mkcert.sh
866 B
SET
[ EDIT ]
|
[ DEL ]
📄 pop3
89,608 B
SET
[ EDIT ]
|
[ DEL ]
📄 pop3-login
51,752 B
SET
[ EDIT ]
|
[ DEL ]
📄 quota-status
32,720 B
SET
[ EDIT ]
|
[ DEL ]
📄 rawlog
28,128 B
SET
[ EDIT ]
|
[ DEL ]
📄 script
27,928 B
SET
[ EDIT ]
|
[ DEL ]
📄 script-login
22,040 B
SET
[ EDIT ]
|
[ DEL ]
📄 settings-history.py
6,156 B
SET
[ EDIT ]
|
[ DEL ]
📄 stats
137,176 B
SET
[ EDIT ]
|
[ DEL ]
📄 submission
174,632 B
SET
[ EDIT ]
|
[ DEL ]
📄 submission-login
55,960 B
SET
[ EDIT ]
|
[ DEL ]
📄 xml2text
17,640 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: health-check.sh
#!/bin/sh # # Copyright (c) 2019 Dovecot authors, see the included COPYING file */ # # This script is intended to be called by the script service and to be # connected to a socket using a service configuration like this: # executable = script -p /path/to/health-check.sh # # This simple example merely answers "PONG\n" if the input is "PING\n". It # stops waiting for input after $timeout which causes the process to die # which causes the script module to close the socket. Inputs and outputs # can be written to STDIN and STDOUT, they are duplicated file-descriptors # if called from the script service. timeout=10 # timeout the read via trap for POSIX shell compatibility trap "exit 0" QUIT { sleep $timeout kill -3 $$ 2>/dev/null } & timeout_pid=$! read -r input exit_code=$? # Kill the background sleep process kill $timeout_pid 2>/dev/null cleaned_input=$(echo ${input} | sed "s/[^a-zA-Z0-9]//g") if [ ${exit_code} -eq 0 ] && [ "${cleaned_input}" = "PING" ];then echo "PONG" fi # always exit successful exit 0