-
Notifications
You must be signed in to change notification settings - Fork 97
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
Add TLS authentication to smtp relay host #129
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resolves issue #112 |
* fix: renovate regex * chore(deps): update dependency jwilder/dockerize to v0.6.1 Co-authored-by: Renovate Bot <[email protected]>
…7.2.5 (jeboehm#165) Co-authored-by: Renovate Bot <[email protected]>
…hm#166) Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Renovate Bot <[email protected]>
…ehm#179) Co-authored-by: Renovate Bot <[email protected]>
Since Dovecot is protecting the global environment variables, the sieve script for learing ham / spam is modified to obtain its own set of variables
…jeboehm#150, jeboehm#99) - Add xapian full-text search - added templating for .env to support: - ENABLE_FTS: enable/disable xapian plugin - FTS_ARGS: override set of startup options, esp for low-memory settings - FTS_VSZ_LIMIT: control memory limit for indexer service Co-authored-by: Ashley Gittins <[email protected]>
* test: Update dependency jeboehm/imap-tester to v1 * add fileinfo extension Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Jeffrey Böhm <[email protected]>
… and junk folders (jeboehm#187)
Disabling and enabling of xapian works again. Added a test to make sure the index (doesn't) exist(s). thanks to @agittins for pointing this out.
Postfix now serves the submission port 587. Please check your port bindings as reflected in docker-compose.production.yml This allows rspamd to recognize authenticated users. Besides that, sender adresses are restricted to either the account name itself or its aliases.
The port forwarding has to be enabled in docker-compose.production.yml. Fixes jeboehm#146
…es could be merged here
This PR is to much cluttered due to merges. I will close this one and create a new one if needed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I've added configuration to provide TLS SMTP authentication for relayhosts. This is necessary when using gmail as relayhost for your mailserver for example.
To make use of the TLS authentication you need to follow these steps:
Create a config file './config/mta/sasl_passwd' with the following contents:
[smtp.gmail.com]:587 username:password
Add the following volume to 'docker-compose.override.yml' for the 'mta' service:
./config/mta/sasl_passwd:/etc/postfix/sasl_passwd
Add the following lines to your '.env' file
RELAYHOST=[smtp.gmail.com]:587 RELAY_PASSWD_FILE=/etc/postfix/sasl_passwd RELAY_OPTIONS=
It is important to add the 'RELAY_OPTIONS' line, because these allow Postfix to use anonymous and plaintext authentication by leaving it empty.