-
-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #296720 from DanNixon/msmtp-update
msmtp: 1.8.22 -> 1.8.25
- Loading branch information
Showing
5 changed files
with
63 additions
and
68 deletions.
There are no files selected for viewing
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
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
13 changes: 13 additions & 0 deletions
13
pkgs/applications/networking/msmtp/msmtpq-remove-binary-check.patch
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/scripts/msmtpq/msmtpq b/scripts/msmtpq/msmtpq | ||
index bcb384e..9622e47 100755 | ||
--- a/scripts/msmtpq/msmtpq | ||
+++ b/scripts/msmtpq/msmtpq | ||
@@ -60,8 +60,6 @@ err() { dsp '' "$@" '' ; exit 1 ; } | ||
## export the location of the msmtp executable before running this script (no quotes !!) | ||
## e.g. ( export MSMTP=/path/to/msmtp ) | ||
MSMTP="${MSMTP:-msmtp}" | ||
-"$MSMTP" --version >/dev/null 2>&1 || \ | ||
- log_later -e 1 "msmtpq : can't run the msmtp executable [ $MSMTP ]" # if not found - complain ; quit | ||
## | ||
## set the queue var to the location of the msmtp queue directory | ||
## if the queue dir doesn't yet exist, create it (0700) |
41 changes: 41 additions & 0 deletions
41
pkgs/applications/networking/msmtp/msmtpq-systemd-logging.patch
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
diff --git a/scripts/msmtpq/msmtpq b/scripts/msmtpq/msmtpq | ||
index bcb384e..dbaf1b5 100755 | ||
--- a/scripts/msmtpq/msmtpq | ||
+++ b/scripts/msmtpq/msmtpq | ||
@@ -92,6 +92,8 @@ if [ ! -v MSMTPQ_LOG ] ; then | ||
fi | ||
fi | ||
[ -d "$(dirname "$MSMTPQ_LOG")" ] || mkdir -p "$(dirname "$MSMTPQ_LOG")" | ||
+ | ||
+JOURNAL=@journal@ | ||
## ====================================================================================== | ||
|
||
## msmtpq can use the following environment variables : | ||
@@ -144,6 +146,7 @@ on_exit() { # unlock the queue on exit if the lock was | ||
## display msg to user, as well | ||
## | ||
log() { | ||
+ local NAME=msmtpq | ||
local ARG RC PFX | ||
PFX="$('date' +'%Y %d %b %H:%M:%S')" | ||
# time stamp prefix - "2008 13 Mar 03:59:45 " | ||
@@ -161,10 +164,19 @@ log() { | ||
done | ||
fi | ||
|
||
+ if [ "$JOURNAL" = "Y" ]; then | ||
+ for ARG; do | ||
+ [ -n "$ARG" ] && | ||
+ echo "$ARG" | systemd-cat -t "$NAME" -p info | ||
+ done | ||
+ fi | ||
+ | ||
if [ -n "$RC" ] ; then # an error ; leave w/error return | ||
[ -n "$LKD" ] && lock_queue -u # unlock here (if locked) | ||
[ -n "$MSMTPQ_LOG" ] && \ | ||
echo " exit code = $RC" >> "$MSMTPQ_LOG" # logging ok ; send exit code to log | ||
+ [ "$JOURNAL" = "Y" ] && \ | ||
+ echo "exit code= $RC" | systemd-cat -t "$NAME" -p emerg | ||
exit "$RC" # exit w/return code | ||
fi | ||
} |
This file was deleted.
Oops, something went wrong.