summaryrefslogtreecommitdiffstats
path: root/mutt/choose-muttrc-type
blob: 363a64cc8724c3362b47beeb95f1a0b49aed11aa (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/local'
    ;;
*)
    echo 'source ~/.mutt/imap'
    ;;
esac