On 10/2/24 19:01, OlivaFN88 wrote: > Hello guys! > > I have create an valias in mysql with 300 members and when I send an mail to > this alias I can see this: > virtuals[60710]: warn: result too large > d743df75a217ad6c smtp failed-command command="RCPT TO:<alias@xyz>" > result="424 4.2.4 Mailing list expansion problem: <alias@xyz>” > > I tried change limits with smtp limit max-rcpt 1000 and smtp limit max-mails > 1000, but with no success. > > I’m running opensmtpd-7.3.0_3,1 on FreeBSD 14.1 > > Somebody have idea of how to solve this without mail lists?
Your smtpd.conf file would be helpful. I think table lookup results are limited to LINE_MAX hardcoded. Depends on the table backend implementation you are using. Solving this may mean you'd have to recompile the table backend with increased limits. I am not sure about it but I guess there is no way to configure that without recompiling. At least for the most recent table implementations like here. <https://github.com/OpenSMTPD/table-mysql> -- Christian