Commit 3b53d64389647bae5c8b94fbab06982bf1a79e51
1 parent
8a29af86
Exists in
branch_test
and in
3 other branches
Explicitly use .forward for sending notifications
Showing
3 changed files
with
5 additions
and
2 deletions
Show diff stats
CHANGELOG
@@ -3,6 +3,9 @@ | @@ -3,6 +3,9 @@ | ||
3 | The latest version of this file can be found at the master branch of the | 3 | The latest version of this file can be found at the master branch of the |
4 | omnibus-gitlab repository. | 4 | omnibus-gitlab repository. |
5 | 5 | ||
6 | +7.1.0 | ||
7 | +- Build: explicitly use .forward for sending notifications | ||
8 | + | ||
6 | 7.0.0 | 9 | 7.0.0 |
7 | - Specify numeric user / group identifiers | 10 | - Specify numeric user / group identifiers |
8 | - Support AWS S3 attachment storage | 11 | - Support AWS S3 attachment storage |
doc/release.md
@@ -74,7 +74,7 @@ sudo su - omnibus-build | @@ -74,7 +74,7 @@ sudo su - omnibus-build | ||
74 | - Test email delivery: | 74 | - Test email delivery: |
75 | 75 | ||
76 | ```shell | 76 | ```shell |
77 | -date | mail -s "testing from $(uname -n)" $(whoami) | 77 | +date | mail -s "testing from $(uname -n)" $(cat ~/.forward) |
78 | ``` | 78 | ``` |
79 | 79 | ||
80 | - Configure aws credentials | 80 | - Configure aws credentials |
release.sh
@@ -15,4 +15,4 @@ fi | @@ -15,4 +15,4 @@ fi | ||
15 | 15 | ||
16 | # We assume that email to the current system user will somehow reach the right | 16 | # We assume that email to the current system user will somehow reach the right |
17 | # human eyes | 17 | # human eyes |
18 | -tail ${build}.log | sed 's/.*\r//' | mail -s "${subject}" $(whoami) | 18 | +tail ${build}.log | sed 's/.*\r//' | mail -s "${subject}" $(cat ~/.forward) |