Login to Server First, you can check the mail queue with this command exim -bp Next, copy the email ID from affected account and use this command to view the header Example: exim -Mvh 1jdIeW-00022q-P3 Next, to view the mail delivery logs and authentication use this command cat /var/log/exim/mainlog | grep 185.29.11.12 | more Then ..
Category : Email
To enable email archiving at cPanel (for directadmin, sample in ns14 /etc/system_filter.exim) 1. edit /etc/cpanel_exim_system_filter 2. add below text at the last line: == if (“$h_to:, $h_cc:, $h_bcc” contains “domain.com.my”) then unseen deliver “test@domain.com.my” endif if $sender_address: contains “domain.com.my” then unseen deliver “test2@domain.com.my” endif == 3. save > re..
Example user locked for outgoing email when sending through mail relay: Go to Spamexperts > domain > mrelay300 > Outgoing > Manage Identities > Select ..
Servers > Localhost > Connectors > SMTP > (properties) > Outbound (tab) > Outbound IP Binding Re..
Sometimes we may need to bypass the SMTP authentication for the certain sender’s IP address. In order to do so in Directadmin server, we’ll need to add sender’s IP address into exim.conf: Find the line below: hostlist relay_hosts = net-lsearch;/etc/virtual/pophosts Add senders IP address: hostlist relay_hosts = net-lsearch;/etc/virtual/pophosts : xx.xx.xx.xx Where xx.xx.xx.xx is senders IP ..
You will not be able to receive emails from blacklisted domains or email addresses. To continue receiving emails from those domains, we can whitelist the domain/email addresses. To do this in Smartermail, simply login and click on Settings. Then click on Trusted Senders. Click New. You can now add the domain/email addresses you wish to ..
Use the following script to see POP3/IMAP usage in bytes (it reads /var/log/maillog file and outputs the bandwidth usage for every email user (period of time counted depends on logrotate)) #!/bin/sh for u in `ls /usr/local/directadmin/data/users`; do { echo “$u”; echo -n “POP3: ” grep “($u)” /var/log/maillog | awk ‘/pop3/ && /retr/ && /Disconnected/ {print ..
Sometimes, after the SmarterMail password is changed, for Windows hosting we also need to update it in Plesk. For Plesk 12.5, the password can be updated in: Tools & Settings >> Server Components >> Mail Server (SmarterMail Server 15.x.xxx) For old Plesk 9.5: Settings >> Server Components >> Mail Server (SmarterMail Server..
Sometimes, when cutomers use their gmail account to send out emails throught their website, e.g WordPress, they may encounter the error below: [cc]cURL error 60: SSL certificate problem: unable to get local issuer certificat[/cc] In order to fix it we need to download a CA cert file from https://curl.haxx.se/docs/caextract.html and include it in website’s php.ini ..
Edit /etc/vaderetro/vrspamd.conf [cc lang=”bash”]vi /etc/vaderetro/vrspamd.conf[/cc] add on the last line [cc lang=”bash”]SPAM_STORAGE_PATH=/var/vaderetro/spam[/cc] create spam directory [cc lang=”bash”]mkdir -p /var/vaderetro/spam[/cc] restart vrspamd [cc lang=”bash”]service vrspamd re..