Переглянути джерело

Update mailsync to have it look in "inbox" and "Inbox"

Several email providers name their inbox folder with a wide usage of lowercase or uppercase letters (INBOX, inbox, Inbox). This commit makes mailsync.sh looks in different folders so that the notification works properly whenever there is a new email in INBOX, Inbox or inbox
pull/138/head
badmrfrosty 5 роки тому
committed by GitHub
джерело
коміт
f4874d08ed
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 4AEE18F83AFDEB23
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      etc/mailsync.sh

+ 1
- 1
etc/mailsync.sh Переглянути файл

@@ -31,7 +31,7 @@ pkill -RTMIN+12 i3blocks
for account in $(ls ~/.mail)
do
#List unread messages newer than last mailsync and count them
newcount=$(find ~/.mail/"$account"/INBOX/new/ -type f -newer ~/.config/mutt/etc/.mailsynclastrun 2> /dev/null | wc -l)
newcount=$(find ~/.mail/"$account"/INBOX/new/ ~/.mail/"$account"/inbox/new/ ~/.mail/"$account"/Inbox/new/ -type f -newer ~/.config/mutt/etc/.mailsynclastrun 2> /dev/null | wc -l)
if [ "$newcount" -gt "0" ]
then
notify "$account" "$newcount" &


Завантаження…
Відмінити
Зберегти