Although I haven set check_spool_space, Exim is still checking the amount of space on the spool for incoming SMTP messages that use the SIZE option. Can I suppress this?
A5014: The RFC for the SIZE option says: If the server currently lacks sufficient resources to accept a message of the indicated size, but may be able to accept the message at a later time, it responds with code “452 insufficient system storage”. and that is what Exim is trying to implement. This is entirely independent from check_spool_space, which says don’t accept any mail if there is less than so much space in the spool partition, though the code is optimised to do both checks at the same time if required. However, you can suppress the SIZE check if you want to, by unsetting smtp_check_spool_space.
Related Questions
- Although I haven set check_spool_space, Exim is still checking the amount of space on the spool for incoming SMTP messages that use the SIZE option. Can I suppress this?
- Exim is still checking the amount of space on the spool for incoming SMTP messages that use the SIZE option. Can I suppress this?
- Why is Exim not rejecting incoming messages addressed to non-existent users at SMTP time?