12 lines
258 B
Bash
Executable file
12 lines
258 B
Bash
Executable file
#!/bin/sh
|
|
|
|
SERVER="mail.darkou.fr"
|
|
NETRC=".netrc"
|
|
|
|
inbox=$(curl -sf --netrc-file "$NETRC" -X "STATUS INBOX (UNSEEN)" imaps://"$SERVER"/INBOX | tr -d -c "[:digit:]")
|
|
|
|
if [ "$inbox" ] && [ "$inbox" -gt 0 ]; then
|
|
echo "# $inbox"
|
|
else
|
|
echo "0 unread"
|
|
fi
|