|
|
1.1 root 1: clear
2:
3: /bin/echo "Before re-establishing your remote connections to other uucp sites
4: or before other users on your system use the new mail utilities,
5: it is necessary to convert the existing mailboxes to the new mail
6: format used by Coherent 4.0. Failure to do this will result in
7: unpredictable behavior of the mail utilities."
8:
9: /bin/echo "Do you wish to convert existing mailboxes now? (y/n) \c"
10:
11: read answ
12: case $answ in
13: n) echo "To manually convert your system's mailboxes, run:"
14: echo " /bin/cvmail -m boxname"
15: echo "for each mailbox in the directory /usr/spool/mail."
16: echo
17: echo "To convert other files where you or other users of"
18: echo "your system may have saved mail messages, run:"
19: echo " /bin/cvmail filename"
20: echo
21: echo "Press return to continue...\c"
22: exit 1
23: ;;
24: y) echo "Converting mailboxes. This may take a few minutes.."
25: cd /usr/spool/mail
26: for y in `ls`
27: do
28: /bin/cvmail -m $y
29: done
30: ;;
31: esac
32:
33: echo "The system mailboxes have been converted to the format required"
34: echo "by Coherent 4.0's new mail utilities. If other users of your system"
35: echo "or yourself have previously saved mail messages to other files,"
36: echo "the mail command will detect wether or not these files are in the"
37: echo "new format and will prompt the user to run the cvmail command to"
38: echo "convert the mail file if necessary."
39: echo "\nPress return to continue...\n"
40: read answ
41: exit 0
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.