How ISPConfig manage SPF/DMARC for incoming mails ?

Discussion in 'Installation/Configuration' started by francoisPE, Jan 7, 2022.

  1. francoisPE

    francoisPE Active Member HowtoForge Supporter

    I send mails with cron using postfix satellite
    Due to that, I think that it is required whitelist my servers ips
    I read that : https://forum.howtoforge.com/threads/ispconfig-3-1-15p2-rspamd-whitelist.83099/
    But, I don't see any rspamd_multimap.conf.master file in install>tpl
    I think that's not implemented.
    Moreover, I don't find in web interface where to set an whitelist of ip.

    Am I correct ?
     
  2. Jesse Norell

    Jesse Norell Well-Known Member Staff Member Howtoforge Staff

    Correct. It has been started at https://git.ispconfig.org/ispconfig/ispconfig3/-/issues/6082, I am unsure at this point if I'll be able to complete that MR.
    Email > Postfix Whitelist (or Blacklist)
     
  3. francoisPE

    francoisPE Active Member HowtoForge Supporter

    I understand that your idea was to manage one list for postfix AND Rspamd.

    I saw the big job you did around that issue.
    For the moment, at my level, I did that
    Code:
      cat >/etc/rspamd/local.d/multimap.conf<<EOF
    IP_WHITELIST {
          type = "ip";
          prefilter = true;
          map = "/\${LOCAL_CONFDIR}/local.d/ip_whitelist.map";
          action = "accept";
      }
    EOF
    
    with local.d/ip_whitelist.map, containg all my IPv4s

    As far as I understand your issue, my mails should be DKIM signed... shouldn't they ?
     

Share This Page