postfix.sh: add missing -E for extended regexes in smtpd_sender_restrictions#3272
Merged
georglauterbach merged 1 commit intodocker-mailserver:masterfrom Apr 18, 2023
Conversation
8 tasks
georglauterbach
approved these changes
Apr 18, 2023
Contributor
Author
|
For unescaped brackets you have to use -E in sed and grep: echo "abc" | sed 's/\(b\)/d/'
echo "abc" | sed -E 's/(b)/d/'I think both grep and sed use POSIX basic regular expressions as default and we are not used to those any more. |
Member
|
That explains the weirdness of the "old code" in #3271 - thanks for the info :) |
casperklein
reviewed
Apr 18, 2023
| if [[ -f /tmp/docker-mailserver/postfix-send-access.cf ]] | ||
| then | ||
| sed -i 's|(smtpd_sender_restrictions =)|\1 check_sender_access texthash:/tmp/docker-mailserver/postfix-send-access.cf,|' /etc/postfix/main.cf | ||
| sed -i -E 's|(smtpd_sender_restrictions =)|\1 check_sender_access texthash:/tmp/docker-mailserver/postfix-send-access.cf,|' /etc/postfix/main.cf |
Member
There was a problem hiding this comment.
sed --> sedfile to get notified in the future, if no change takes place.
This file contains hidden or 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
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.
Description
Noticed that something was wrong when in our tests i got the following additional output:
Type of change
Checklist:
docs/)Info @wt-io-it