Tuesday, August 31, 2021

Find files or Folder location in Linux or Mac

find / | grep imapsync


Note: Replace your keyword with "imapsync"

No comments:

Post a Comment

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" journalct...