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

Revision 25760, 1.1 KB checked in by jdreed, 12 years ago (diff)
Be clearer when telling MH users that they'll lose in 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 "If you are seeing this message, you are using POP to connect to" >&2
8    echo "MIT's legacy mail (\"Cyrus\") infrastructure." > &2
9    echo >&2
10    echo "Please note that MIT is planning to retire the Cyrus IMAP/POP" >&2
11    echo "servers by December 2013.  Individual users will be contacted" >&2
12    echo "regarding migration to MIT's Exchange environment.  The Exchange" >&2
13    echo "environment does not support POP connections, and you will" >&2
14    echo "likely need to select a different e-mail client, such as Pine.">&2
15    echo "If you have questions about this migration, please contact" >&2
16    echo "cyrus-imap-retirement@mit.edu." >&2
17    echo >&2
18    echo "(You will only receive this message once.)" >&2
19    mkdir -p ~/.config/debathena >/dev/null 2>&1 && touch ~/.config/debathena/nmh-cyrus-warned
20fi
21
22exec -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.