Skip to main content

problem send email retry time not reached for any host

Comments

7 comments

  • cPRex Jurassic Moderator
    Hey there! This is controlled by the Exim retry database, which can be reset with these commands: /usr/sbin/exim_tidydb -t 0d /var/spool/exim retry > /dev/null /usr/sbin/exim_tidydb -t 0d /var/spool/exim reject > /dev/null /usr/sbin/exim_tidydb -t 0d /var/spool/exim wait-remote_smtp > /dev/null
    If you still get errors after running those commands, there is likely an issue with the domain you are trying to send the message to.
    0
  • melzaiady
    Hey there! This is controlled by the Exim retry database, which can be reset with these commands: /usr/sbin/exim_tidydb -t 0d /var/spool/exim retry > /dev/null /usr/sbin/exim_tidydb -t 0d /var/spool/exim reject > /dev/null /usr/sbin/exim_tidydb -t 0d /var/spool/exim wait-remote_smtp > /dev/null
    If you still get errors after running those commands, there is likely an issue with the domain you are trying to send the message to.

    thank you, i execute this on terminal but now error become T=dkim_remote_smtp defer (110): Connection timed out
    0
  • cPRex Jurassic Moderator
    Thanks for that - that would indicate that your server either can't look up the remote location to send the message, or you are blocked from sending to that location. You can running this command to see if you can manually connect: telnet remotedomain.com 25
    as that will attempt to make a connection to the remote mail server.
    0
  • melzaiady
    Thanks for that - that would indicate that your server either can't look up the remote location to send the message, or you are blocked from sending to that location. You can running this command to see if you can manually connect: telnet remotedomain.com 25
    as that will attempt to make a connection to the remote mail server.

    Thank you, this result of telnet
    0
  • cPRex Jurassic Moderator
    Thanks for that. The most likely issue is that you server's resolvers are not set properly. Can you comment out the existing entries in /etc/resolv.conf and add the following? nameserver 8.8.8.8 nameserver 8.8.4.4
    and see if that gets things working?
    0
  • melzaiady
    Thanks for that. The most likely issue is that you server's resolvers are not set properly. Can you comment out the existing entries in /etc/resolv.conf and add the following? nameserver 8.8.8.8 nameserver 8.8.4.4
    and see if that gets things working?

    thank you, i change nameserver but telnet return error
    0
  • cPRex Jurassic Moderator
    Thanks for the additional details. The most likely reason for this is that your hosting provider is blocking port 25. Can you speak with them to see if that is the case, and if they have alternative recommendations for sending mail?
    0

Please sign in to leave a comment.