System: Debian perfect setup with ISPConfig. In /etc/postfix/main.cf I have: mailbox_size_limit = 0 set. However, I still seem to have a message size limit imposed on SMTP. When I try to send myself a message with a ~40MB attachment[1] logging directly into my SMTP server, the log tells me: Nov 19 20:57:20 hostname postfix/smtpd[22875]: NOQUEUE: reject: MAIL from unknown[70.119.134.212]: 552 Message size exceeds fixed limit; proto=ESMTP helo=<myhost.mydomain.org> Can anyone whack me with a clue-bat and explain what's happening? TIA. Footnotes: 1. Yeah, I know what FTP's for. This was a test.
I'm not quite sure, but maybe 0 means 0, not unlimited. Try to set another value like 104857600 (100 MB) and restart Postfix.
The PostFix docs say that 0 in this case means unlimited. Either way, I've tried it with other values (and just now with the 100MB figure you suggested) and the response is the same. It seems strange. At first I thought it might be related to the virus scanner, spamassassin, and/or procmail imposing a limit. But that doesn't make sense, 'cause it seems the response is coming from SMTP/Postfix. Now, to add another curve into this , all attachments are not broken. I have had people send me smaller stuff (a single *.jpg attached to a mail, etc.). ________ YAMAHA WX5
Aha! Code: # postconf -d | grep message_size_limit message_size_limit = 10240000 Well, there seems to be a limit after all (he says making a mental note that he seriously has to read up on the PostFix man pages and docs. Yes, this value is set to 0 in main.cf (as per above). So now I wonder, how can this be changed to get rid of that ~10MB limit? ________ FORD D3 PLATFORM PICTURE
Simply set message_size_limit in main.cf, e.g. Code: postconf -e 'message_size_limit = 104857600' and restart Postfix.
Doh! (sound of hand hitting forehead) Whoops, sorry, I missed the transition from "mailbox" size limit to "message" size limit. Thanks much; problem resolved. ________ Mary jane
problems I am setting up the following values in main.cf mailbox_size_limit = 0 message_size_limit = 0 virtual_mailbox_limit = 0 However when i do a postconf -d and check the values it still shows me the following: mailbox_size_limit = 51200000 message_size_limit = 10240000 virtual_mailbox_limit = 51200000 How can i remove this limitation. I tried to increase these values, also, however the values seem to remain fixed. Any help will be appreciated.
Is it possible to change the max size of a message per user or is it only a system wide setting? Cheers bwragg