Results 1 to 4 of 4
  1. #1

    * Exim RBL Whitelisting per e-mail address ??? how to?

    According to tutorial http://www.webhostgear.com/175.html

    You need to have this files

    domainlist rbl_blacklist = lsearch;/etc/rblblacklist
    domainlist rbl_bypass = lsearch;/etc/rblbypass
    hostlist rbl_whitelist = lsearch;/etc/relayhosts : net-iplsearch;/etc/rblwhitelist


    Ok one do permanent blacklist, other bypass rbl scanning and the other whitelist rbl scanning. Right now I´m whitelisting using CIDR net format (note that net-iplsearch will allow that).

    Is there a way to add other rule to whitelist per e-mail address? I dont know if there sender = can be applied.

    !domains = +rbl_bypass -> do the domain bypass
    !hosts = +rbl_whitelist -> do the whitlist

    Thanks
    Last edited by bsasninja; 08-24-2007 at 03:09 PM.

  2. #2
    Join Date
    Oct 2004
    Location
    Kerala, India
    Posts
    4,771
    Login to the server SSH as root. Make a sender whitelist file.

    touch /etc/exim_whitelist_senders

    Take a backup of the exim conf and open it.

    cp -p /etc/exim.conf /etc/exim.conf.BKP
    vi /etc/exim.comf

    Add the line on top of the file

    addresslist whitelist_senders = wildlsearch;/etc/exim_whitelist_senders

    Now search for the line
    require verify = sender/callout

    Comment that line and add the following below that.

    !verify = sender/callout=30s,defer_ok,maxwait=60s
    !senders = +whitelist_senders

    Save conf file.

    Add email address to the /etc/exim_whitelist_senders file one by one. Wildcard is also acceptable here, Eg: *@domain.com

    Restart exim
    David | www.cliffsupport.com
    Affordable Server Management Solutions sales AT cliffsupport DOT com
    CliffWebManager | Access WHM from iPhone and Android

  3. #3
    can I have sender callout verification activated anyways??

    why is used wildlsearch instead of lsearch?

  4. #4

    Question

    I have the following problem, at rblwhitelist I put some CIDR ip ranges to whitelist.

    One ip 201.254.74.128 is being blocked, but I have the CIDR range 201.254.0.0/16 whitelisted at rblwhitelist.

    Why is being blocked?

    Here is my config:

    At the top of exim:

    domainlist rbl_bypass = lsearch;/etc/rblbypass
    hostlist rbl_whitelist = lsearch;/etc/relayhosts : net-iplsearch;/etc/rblwhitelist
    addresslist whitelist_senders = wildlsearch;/etc/exim_whitelist_senders

    At ACL section:

    deny message = Message rejected - $sender_fullhost is in an RBL, see $dnslist_text
    !hosts = +relay_hosts
    !authenticated = *
    !domains = +rbl_bypass
    !hosts = +rbl_whitelist
    !senders = +whitelist_senders
    dnslists = sbl-xbl.spamhaus.org : bl.spamcop.net

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •