소스 검색

old redundancy removed

tags/v3.1
Luke Smith 6 년 전
부모
커밋
125e439930
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      etc/mailsync.sh

+ 3
- 3
etc/mailsync.sh 파일 보기

@@ -11,11 +11,11 @@
ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit

# Get current number of new mail, then begin sync.
ori=$(find ~/.mail -wholename '*/new/*' | grep /new/ | grep -vi "spam\|trash\|junk" | wc -l)
ori=$(find ~/.mail -wholename '*/new/*' | grep -vi "spam\|trash\|junk" | wc -l)
offlineimap -o

# Output new new mail count.
new=$(find ~/.mail -wholename '*/new/*' | grep /new/ | grep -vi "spam\|trash\|junk" | wc -l)
# Recount new mail.
new=$(find ~/.mail -wholename '*/new/*' | grep -vi "spam\|trash\|junk" | wc -l)

# If new mail has grown, play a notification.
if [ "$new" -gt "$ori" ]; then


불러오는 중...
취소
저장