Browse Source
use hostname function instead of HOSTNAME env variable
pull/2259/head
Honza Hommer
6 years ago
No known key found for this signature in database
GPG Key ID: 5EBDE8E7E1A00ACA
1 changed files with
1 additions and
1 deletions
-
notify/sendmail.sh
|
|
@ -27,7 +27,7 @@ sendmail_send() { |
|
|
|
|
|
|
|
SENDMAIL_FROM="${SENDMAIL_FROM:-$(_readaccountconf_mutable SENDMAIL_FROM)}" |
|
|
|
if [ -z "$SENDMAIL_FROM" ]; then |
|
|
|
SENDMAIL_FROM="$USER@$HOSTNAME" |
|
|
|
SENDMAIL_FROM="$USER@$(hostname -f)" |
|
|
|
_info "The SENDMAIL_FROM is not set, so use the default value: $SENDMAIL_FROM" |
|
|
|
fi |
|
|
|
_saveaccountconf_mutable SENDMAIL_FROM "$SENDMAIL_FROM" |
|
|
|