This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Deny RCPT Hacks

We are looking for the function of "Deny RCPT Hacks" in V7.

Cause of accepting via smtp listme%listme.dsbl.org@mydomain.de we are blacklisted.

How to reject characters like % in email-adresses with V7?

thx


This thread was automatically locked due to age.
Parents
  • There does not seem to be a built in method. Although making changes via console is unsupported you could modify your exim.conf such as:


      # Deny mail that has non-local recipient
      deny message = Relay not permitted
           !domains = +domains

    +  # Deny RCPT to Hacks
    +  deny message = RCPT TO hacks not permitted
    +       local_parts = ^.*[@%!/|]
    +
      # Always accept mail to postmaster.


    Upgrades may undo the changes.
Reply
  • There does not seem to be a built in method. Although making changes via console is unsupported you could modify your exim.conf such as:


      # Deny mail that has non-local recipient
      deny message = Relay not permitted
           !domains = +domains

    +  # Deny RCPT to Hacks
    +  deny message = RCPT TO hacks not permitted
    +       local_parts = ^.*[@%!/|]
    +
      # Always accept mail to postmaster.


    Upgrades may undo the changes.
Children
No Data