1

Topic: No iptables rules after installation on Debian 10

iRedMail version 1.2.1
- Deployed with the downloadable installer
- Linux/BSD distribution name and version: Debian 10
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Web server (Apache or Nginx): NGINX
- Manage mail accounts with iRedAdmin-Pro? NO

I installed 1.2.1 onto Debian 10 and the itpables rules weren't setup:

iptables -S
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT

Is this expected on Debian?

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: No iptables rules after installation on Debian 10

debian 10 use nftables, not iptables

3 (edited by YurkshireLad 2020-06-02 00:10:06)

Re: No iptables rules after installation on Debian 10

That is true, but I still don't think there are any rules configured.

nft list table filter
table ip filter {
    chain INPUT {
        type filter hook input priority 0; policy accept;
    }

    chain FORWARD {
        type filter hook forward priority 0; policy accept;
    }

    chain OUTPUT {
        type filter hook output priority 0; policy accept;
    }
}

I think 1.2.1 is broken based on what I read on the forums and the number of installations I've attempted on different Linux distros. I know I had an earlier version (1.2 I think) working not long ago.

4

Re: No iptables rules after installation on Debian 10

Let's stick to your another forum topic and no duplicate topic please:
https://forum.iredmail.org/post74759.html#p74759