Change Admin email and antivirus notification email in Zimbra Penguin Technology - 04:42 0 Edit Change Admin email and antivirus notification email zmlocalconfig -e smtp_destination=admin@domain.com zmlocalconfig -e smtp_destination=adm...
postfix mailq command Penguin Technology - 04:41 0 Edit To check postfix Mail Queue mailq or, postqueue -p To requeue all messages from mailque postqueue -f To requeue a specific messages from mai...
Enforcing a match between FROM address and sasl username Zimbra Penguin Technology - 17:02 0 Edit If the exception db is not used zmprov mcf zimbraMtaSmtpdSenderLoginMaps proxy:ldap:/opt/zimbra/conf/ldap-slm.cf +zimbraMtaSmtpdSenderRest...
Zimbra modify network Penguin Technology - 16:37 0 Edit Zimbra modify network zmprov ms mail.example.com zimbraMtaMyNetworks '127.0.0.0/8 10.0.5.10/24' postfix reload
Allow internal domain in zimbra Penguin Technology - 16:16 0 Edit Allow internal domain zmprov mcf zimbraAmavisOriginatingBypassSA TRUE zmantispamctl restart zmantivirusctl restart zmamavisdctl restart
Install lets encrypt SSL in Nginx Ubuntu 22.04 Penguin Technology - 23:38 0 Edit Update Package Repository sudo apt update Install Certbot package sudo apt-get install python3-certbot-nginx certbot Run command to enable s...
Passwordless authentication between two Linux servers Md. Shahzad Alam - 00:23 0 Edit Passwordless authentication between two Linux servers Jenkins & web server On Jenkins Server Generate SSH Key: Generate an SSH key pair....
Allow Port in firwalld linux Md. Shahzad Alam - 22:58 0 Edit Allow port in Linux firewall sudo firewall-cmd --permanent --add-port=10050/tcp sudo firewall-cmd --reload Check allowed port and sudo fir...
run a script every 30 seconds using a cron job in Linux Md. Shahzad Alam - 02:00 0 Edit # run a script every 30 seconds using a cron job in Linux #!/bin/bash #cat script.sh while true; do # Your script commands go here ...
Generate randam key using base64 encode Md. Shahzad Alam - 19:53 0 Edit #Generate 32-bye random key head -c 32 /dev/urandom | base64
PHP Fix date & time issue in Ubuntu Apache/nginx server Penguin Technology - 12:37 0 Edit Go to the php.ini file and fix date.timezone region sudo vim /etc/php/8.2/fpm/php.ini or, sudo vim /etc/php/8.2/apache2/php.ini date.timezon...
Git checkout/push executable shell file Penguin Technology - 22:37 0 Edit git add --chmod=+x script.sh git commit -m "Adding executable shell script file"
Docker access container from root user Penguin Technology - 22:28 0 Edit docker exec -it --user root container_name bash
How to redirect www to non-www domain in AWS load balancer Penguin Technology - 18:08 0 Edit Set AWS ALB rule to redirect www domain to non www Go to Application Load Balancer > Select ALB Name > Listeners and rules, Cli...
Install letsencrypt SSL certificate in Linux Penguin Technology - 21:34 0 Edit Install letsencrypt package in Ubuntu 22.04 Update the local package index sudo apt update Install certbot package for apache sudo apt inst...