Jose Borges Ferreira: > Hi! > > I've setup a Postfix like this, having on the submission port a bigger > value than the message_size_limit specified in main.cf > > main.cf > message_size_limit = 10000000 > > master.cf > smtp inet n - n - - smtpd > submission inet n - n - - smtpd > -o message_size_limit=20000000 > > What I found is that , even tough the SIZE announced in reply to EHLO > is correct ( 10000000 for port 25 and 20000000 for the port 587 ) > Postfix wouldn't accept an Email bigger that 10000000.
Postfix has lots of parameters that are shared by different programs. Although you *can* use master.cf to specify conflicting values for parameter X to different programs, doing so will rarely produce a useful result. It is not practical to document what happens when you specify conflicting settings for the same parameters to different programs. It simply is not supported beyond the examples in Postfix documentation. Wietse