Linux
WHY YOU SUCK AT PHISHING
An entertaining and educational video on how to setup POSTFIX an email server on Kali Linux using GMAIL SMTP!
[ad_2]
source
An entertaining and educational video on how to setup POSTFIX an email server on Kali Linux using GMAIL SMTP!
[ad_2]
source
Lorem ipsum dolor sit amet, consectetur.
🅲🅾🅼🅼🅰🅽🅳🆂 🆄🆂🅴🅳 🅸🅽 🆅🅸🅳🅴🅾
sudo apt-get install postfix
sudo nano /etc/postfix/main.cf
relayhost = [smtp.gmail.com]:587
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_tls_security_level = encrypt
smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
sudo nano /etc/postfix/sasl_passwd
[smtp.gmail.com]:587 your-email@gmail.com:your-app-password
sudo postmap /etc/postfix/sasl_passwd
sudo chmod 600 /etc/postfix/sasl_passwd /etc/postfix/sasl_passwd.db
sudo systemctl restart postfix
echo "This is a test email" | mail -s "Test Email" targetemailuser@gmail.com