Tag: Linux

Command to know TLS Version:

For TLS 1.3: For TLS 1.2: For TLS 1.1: For TLS 1: If you get the certificate chain and the handshake then the TLS version is supported. If you don’t see the certificate chain, and something similar to “handshake error” then its not.

Read more

Find Cause of Spam Source

Mass suspend or unsuspend mailboxes of a domain Using the API, can help you quickly automate that process and suspend the users in question: If you wish to suspend the entire domain, you can use: To Unsuspend: If you prefer to suspend a specific email account login, you can use the suspend_login API call. To suspend

Read more

Find Command

The option -L (options) tells the find the command to follow symbolic links. The /var/www (path…) specifies the directory that will be searched. The (expression) -name "*.js tells find to search files ending with .js (JavaScript files). To search for a file named document.pdf in the /home/linuxize directory, you would use the following command: To run a case-insensitive search, change the -name option with -iname: Find Files by Extension  Searching for files by extension

Read more