This repository has been archived on 2023-01-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mail-config/astroid/poll.sh

53 lines
1.5 KiB
Bash
Raw Normal View History

2017-04-13 12:28:53 +02:00
#!/bin/bash
CURDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
TMP=/tmp/status
source "$TMP"
# If offline mode, do a quick sync
if [ "$var_conn" == "off" ]; then
echo "[INFO] Offline mode enabled. Do a quick sync"
offlineimap -q
else
echo "[INFO] Do a normal sync."
2017-04-13 12:28:53 +02:00
offlineimap
fi
# Index new mails which will be tagged with notmuch's new.tags
echo "[DEBUG] Sync notmuch database with new mails"
2017-04-13 12:28:53 +02:00
notmuch new
# Move selectedly tagged mails to folders if they are only in INBOX
echo "[DEBUG] Move tagged mails in INBOX to folders (move-tag.sh)"
bash $CURDIR/scripts/move-tag.sh ${var_conn}
# Index again after mails have been moved
echo "[DEBUG] Update notmuch database with possibly moved mails"
notmuch new
2017-04-13 12:28:53 +02:00
### Sort emails
# Archiv
echo "[DEBUG] Tag mails in offline ARCHIVE folder"
2017-04-13 12:28:53 +02:00
notmuch tag +archive -- path:ARCHIVE/**
# Inbox
echo "[DEBUG] Tag mails in in INBOX folder"
notmuch tag +inbox -- path:INBOX/**
2017-04-13 12:28:53 +02:00
# Automatic tagging based on location of mails in folders
2017-08-18 13:29:46 +02:00
echo "[DEBUG] Tag mails based on their folder (tag-folder.sh)"
2017-04-13 12:28:53 +02:00
bash $CURDIR/scripts/tag-folder.sh # generates commands from tag-folder.csv
bash $CURDIR/scripts/tag-folder-rules.sh # executes generated commands
2017-08-18 13:29:46 +02:00
# Mark mails in certain folders read
echo "[DEBUG] Mark mails in trash folders read"
notmuch tag -unread -- path:Trash/**
notmuch tag -unread -- path:Trash.ignore-mod/**
2018-02-19 09:11:57 +01:00
# Remove "new" tag
echo "[DEBUG] Remove the 'new' tag"
notmuch tag -new -- tag:new
2017-08-18 13:29:46 +02:00
echo "[DEBUG] poll.sh exited successfully"