How to add External SMTP on WHM/cPanel with GSuite Relay SMTP

Search for a command to run...

No comments yet. Be the first to comment.
Upgrade Datacenter Evaluation to Full Version Run the following command: DISM /online /Set-Edition:ServerDatacenter /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula Replace XXXXX-XXXXX-XXXXX-XXXXX-XXXXX with the key corresponding to the version ...
Kalau kamu masih pakai email seperti kamu123@gmail.com untuk urusan kerja, freelance, atau bisnis, trust dari calon klien biasanya lebih rendah. Bandingkan: kamu123@gmail.com vs hello@namakamu.com Yan
Workflow ini berfungsi untuk mencatat setiap lamaran pekerjaan yang dikirim melalui pesan Telegram langsung ke Google Sheets secara otomatis menggunakan n8n.Setiap kali kamu mengirim pesan berisi detail lamaran ke bot Telegram, sistem akan menuliskan...
Bagi banyak developer, aapanel menjadi pilihan populer karena tampilan yang ramah pengguna dan fitur lengkap untuk mengelola server. Jika Anda membangun aplikasi React menggunakan Vite, proses deploy di aapanel sebenarnya sederhana namun cukup sulit ...
aaPanel adalah kontrol panel server berbasis web yang memudahkan pengguna dalam mengelola layanan hosting seperti web server, database, FTP, dan SSL tanpa perlu mengetik perintah terminal yang rumit. Panel ini merupakan alternatif populer untuk cPane...

Have you ever experienced emails from your server not reaching their destination — just disappearing? They've been sent without any errors, but the recipient never gets them. In this case, the issue is most likely in the email delivery process — it could be that the VPS where WHM is installed doesn't have port 25 open.
One of the most effective solutions to fix this is: Smarthost SMTP Relay. Here's how to set it up in WHM/cPanel:
Login to WHM as root / Administrator. Then go to the menu:
Home >> Service Configuration >> Exim Configuration Manager.
Click on Advanced Editor.
In the Section: AUTH, add the following code
excrelay_login:
driver = plaintext
public_name = LOGIN
client_send = : USERNAME : PASSWORD
In the Section: ROUTERSTART, add the following code:
send_via_excrelay:
driver = manualroute
domains = ! +local_domains
transport = excrelay_smtp
route_list = * smtp-relay.gmail.com
In the Section: TRANSPORTSTART, add the following code:
excrelay_smtp:
driver = smtp
port = 587
hosts = smtp-relay.gmail.com
hosts_require_auth = smtp-relay.gmail.com
Click the Save button to apply the changes.