source: trunk/debathena/config/nmh-config/debian/inc.debathena @ 25751

Revision 25751, 898 bytes checked in by jdreed, 12 years ago (diff)
In nmh-config: * Inform NMH users that they're going to be sad after Dec 2013
  • Property svn:executable set to *
Line 
1#!/bin/bash
2if ! [ -e ~/.config/debathena/nmh-in-path ]; then
3    mkdir -p ~/.config/debathena >/dev/null 2>&1 && echo yes > ~/.config/debathena/nmh-in-path
4fi
5
6if ! [ -e ~/.config/debathena/nmh-cyrus-warned ]; then
7    echo "Please note that MIT is planning to retire the Cyrus IMAP/POP" >&2
8    echo "servers by December 2013.  Individual users will be contacted" >&2
9    echo "regarding migration to MIT's Exchange environment.  The Exchange" >&2
10    echo "environment does not support POP connections." >&2
11    echo "If you have questions about this migration, please contact" >&2
12    echo "cyrus-imap-retirement@mit.edu." >&2
13    echo >&2
14    echo "(You will only receive this message once.)" >&2
15    mkdir -p ~/.config/debathena >/dev/null 2>&1 && touch ~/.config/debathena/nmh-cyrus-warned
16fi
17
18exec -a inc /usr/bin/mh/inc.debathena-orig -host "${ATHENA_USER:-$USER}.mail.mit.edu" -sasl "$@"
Note: See TracBrowser for help on using the repository browser.