mutt-wizard

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 213afe1e8f84c0753d6d492c7997dce3dd87645b
parent 5300aa7f723941b444f6fe13d9190582b80c071a
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Fri, 28 Feb 2025 09:49:22 +0000

Merge pull request #976 from ivan-boikov/master

No mailsync with locked GPG key in non-interactive shells
Diffstat:
Mbin/mailsync | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/bin/mailsync b/bin/mailsync @@ -24,6 +24,9 @@ eval "$(grep -h -- \ "$HOME/.config/zsh/.zshenv" "$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.config/zsh/.zshrc" \ "$HOME/.pam_environment" 2>/dev/null)" +# For non-interactive shell (e.g. cron job) run only when the GPG key (in $GNUPGHOME or pass --homedir) is unlocked +tty -s || (echo "dummy" | gpg --sign --batch --pinentry-mode error -o /dev/null > /dev/null 2>&1) || exit + export GPG_TTY="$(tty)" [ -n "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC" || MBSYNCRC="$HOME/.mbsyncrc"