summaryrefslogtreecommitdiffstats
path: root/mutt/choose-muttrc-type
blob: 46b2cbe122e51c33aca80e660102bc353b5bdf09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -eu
set -o pipefail

case "$(hostname)" in
hush)
    echo 'source ~/.mutt/offlineimap'
    ;;
*)
    echo 'source ~/.mutt/imap'
    ;;
esac