-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue with specifying settings for gen_ #47
Comments
ill attempt building with a fork and see what happens |
Hi,
What we see is that the symbolic links to the modules are not created, but we ignore the reason. Maybe there has been a change on the rabbitmq side? Here you can find our try: sistemi-iungo#1 Thank you! |
@a-marcellini - please open a separate issue for the build problem. Most likely I need to update some files in this repo for recent RabbitMQ build changes. |
Done, Issue #52 |
We have to return a new max message size in the https://github.com/gen-smtp/gen_smtp/blob/master/src/smtp_server_example.erl#L82-L86 |
Fixes #47 Bump gen_smtp to 1.2.0 Add new `server_maxsize` setting, allowing users to override 10MiB limit Set maximum message size for EHLO as well, thanks @arjan Since we depend on the latest RabbitMQ source, we cannot test using Erlang 23 or 24 as only 25 is currently supported SIZE value must be a string Update versions in README
Fixes #47 Bump gen_smtp to 1.2.0 Add new `server_maxsize` setting, allowing users to override 10MiB limit Set maximum message size for EHLO as well, thanks @arjan Since we depend on the latest RabbitMQ source, we cannot test using Erlang 23 or 24 as only 25 is currently supported SIZE value must be a string Update versions in README
We're running into an issue with gen_smtp thats bouncing emails with max length greater than 10mb.
Gen_smtp controls this setting here:
https://github.com/gen-smtp/gen_smtp/blob/master/src/gen_smtp_server_session.erl#L71
However I'm not sure if its configurable in the rabbitmq_email server config block namely because the server_session.erl does not list it as an option:
https://github.com/gen-smtp/gen_smtp/blob/master/src/gen_smtp_server_session.erl#L93
Accompanying gen_smtp documentation seems to confirm this:
Am I missing something obvious here where it's possible to override this setting:
https://github.com/gen-smtp/gen_smtp/blob/fe4f164353d1a08fe0a64200c75fa358abe57b29/src/gen_smtp_server_session.erl#L37
I've tried through the rabbitmq_email server_config block but unsuccessfully
I assume I need to merge a change to gen_smtp_server_session.erl to include maxsize as a definable option, correct? that or i need to fork, and build rabbitmq_email with my fork?
The text was updated successfully, but these errors were encountered: