diff options
author | Abin Simon <abinsimon10@gmail.com> | 2018-03-13 10:25:21 +0530 |
---|---|---|
committer | Abin Simon <abinsimon10@gmail.com> | 2018-03-13 14:26:58 +0530 |
commit | 4537d35666b9c23f82e9c5f2c0e838c09959906a (patch) | |
tree | bd7ec7749ee4b92459afb826e651618edd013dd1 /etc | |
parent | a4e016a8f33c76c963df256d47d8b78cb1a80d74 (diff) |
MacOS fixes
fix adding new account in macos
Fix mailsync ping command
Fix mutt-wizard
Fix muttrc for mac
Add files for offlineimap_profile and offlineimap_header
Update README with MacOS install instructions
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/mailsync.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/etc/mailsync.sh b/etc/mailsync.sh index 61eeade..4810ce7 100755 --- a/etc/mailsync.sh +++ b/etc/mailsync.sh @@ -7,8 +7,13 @@ # # I have this run as a cronjob every 5 minutes. -# Check for internet connection. Exit script if none. -ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit +# Check for internet connection. Exit script if none. (timeout in mac is `-t`) +if [ "$(uname)" == "Darwin" ] +then + ping -q -t 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit +else + ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit +fi # Get current number of new mail, then begin sync. ori=$(find ~/.mail -wholename '*/new/*' | grep -vi "spam\|trash\|junk" | wc -l) |