/usr/local/bin/php -q /home/username/public_html/whmcs/crons/cron.php all --force -vvv
Sunday, May 31, 2026
Wednesday, May 20, 2026
Linux command to find user who failed to login from pop/imap
journalctl -u dovecot -g "auth failed"
grep -i "auth failed" /var/log/mail.log | grep -E "imap|pop"
journalctl -u dovecot -g "auth failed" | grep -oE "user=<.*?>" | sort | uniq -c
grep "auth failed" /var/log/maillog | awk '{print $NF}' | sort | uniq -c | sort -nr
grep "auth failed" /var/log/maillog | grep "@example.com" | head
grep "auth failed" /var/log/maillog | \
grep -oE '[A-Za-z0-9._%+-]+@example\.com' | \
sort | uniq -c | sort -nr
grep "auth failed" /var/log/maillog | \
awk '/@example\.com/ {print $NF}' | \
sort | uniq -c | sort -nr
Subscribe to:
Posts (Atom)
How to composer in cPanel using terminal Terminal
At first, be sure that your cPanel has terminal access. Step-1 mkdir -p ~/bin cd ~ php -r "copy('https://getcomposer.org/installer...
-
We can install PowerMTA on the server. rpm -ivh /home/PowerMTA-4.0r6.x86_64.rpm You will see the output like this Preparing... #############...
-
Instructions: Copy xf-adesk19 to your Desktop Open terminal (Command+Space and type Terminal and press enter/return key) Paste the followin...
-
Put the following code in a TXT file and save as "file.cmd" then run the cmd file as administrator. @echo off title Activate Micr...