Accept mail from our badly configured VMs
This commit is contained in:
parent
bdd88e748b
commit
b2c89091d8
1 changed files with 15 additions and 0 deletions
|
@ -159,6 +159,21 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
session.ehlo.require = [
|
||||||
|
{
|
||||||
|
"if" = "starts_with(remote_ip, '192.168.0.')"; #TODO setup vms properly
|
||||||
|
"then" = false;
|
||||||
|
}
|
||||||
|
{"else" = true;}
|
||||||
|
];
|
||||||
|
session.ehlo.reject-non-fqdn = [
|
||||||
|
{
|
||||||
|
"if" = "starts_with(remote_ip, '192.168.0.')"; #TODO setup vms properly
|
||||||
|
"then" = false;
|
||||||
|
}
|
||||||
|
{"else" = true;}
|
||||||
|
];
|
||||||
|
|
||||||
# Stalwart gets its configuration from two places: A TOML configuration file that we control in this module
|
# Stalwart gets its configuration from two places: A TOML configuration file that we control in this module
|
||||||
# and from a database that can be configured from web management interface or via Rest API.
|
# and from a database that can be configured from web management interface or via Rest API.
|
||||||
# We here define what comes from the TOML-file and especially add "sieve.trusted.scripts.*" to the default ones
|
# We here define what comes from the TOML-file and especially add "sieve.trusted.scripts.*" to the default ones
|
||||||
|
|
Loading…
Add table
Reference in a new issue