diff options
-rwxr-xr-x | mailsync.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mailsync.sh b/mailsync.sh new file mode 100755 index 0000000..f3a20b4 --- /dev/null +++ b/mailsync.sh @@ -0,0 +1,12 @@ +#!/bin/sh + + +DELAY="30" + + +while : +do + offlineimap + notmuch new + sleep "${DELAY}" +done |