Fix Malformed UTF-8 Character in Mailsync fixes #322 (#323)

* line 5 defined the variable DBUS_SESSION_BUS_ADDRESS before exporting it in the next line

* change the pgrep line

* Revert "Update domains.csv (#321)"

This reverts commit a92c01e131.

* Revert "Revert "Update domains.csv (#321)""

This reverts commit af0c0826b9a699780256dc8492e74a157cab2a85.

* Revert "line 5 defined the variable DBUS_SESSION_BUS_ADDRESS before exporting it in the next line"

This reverts commit ca64a6ae56a31ead28cc638d8d8dac7e28f9df68.

* Revert "Revert "line 5 defined the variable DBUS_SESSION_BUS_ADDRESS before exporting it in the next line""

This reverts commit 4304eb731c109289251e06ef86377d372cef07e4.
This commit is contained in:
Wayne Reeves 2019-11-08 19:01:41 -06:00 committed by Luke Smith
parent a92c01e131
commit ff57bd2eb7

View File

@ -2,12 +2,13 @@
# Sync mail and give notification if there is new mail.
export PATH=$PATH:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
export DBUS_SESSION_BUS_ADDRESS
export DISPLAY=:0.0
[ -d "$HOME/.local/share/password-store" ] && export PASSWORD_STORE_DIR="$HOME/.local/share/password-store"
# Run only if user logged in (prevent cron errors)
pgrep -u "$USER" >/dev/null || { echo "$USER not logged in; sync will not run."; exit ;}
pgrep -u "${USER:=$LOGNAME}" >/dev/null || { echo "$USER not logged in; sync will not run."; exit ;}
# Run only if not already running in other instance
pgrep -x mbsync >/dev/null && { echo "mbsync is already running." ; exit ;}