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

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