home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume6 / elm / part04 / hdrs / help.h < prev    next >
Text File  |  1986-11-30  |  3KB  |  106 lines

  1.     case '!': s = 
  2.            "Escape to the Unix shell of your choice, or just to enter commands";
  3.        break;
  4.     case '@': s = 
  5.        "Debug - display a summary of the notes on the header page";
  6.        break;
  7.     case '|': s = 
  8.      "Pipe the current message or tagged messages to the command specified";
  9.        break;
  10.     case '#': s = 
  11.       "Debug - display all information known about current message";
  12.       break;
  13.     case '%': s = 
  14.            "Debug - display the computed return address of the current message";
  15.        break;
  16.     case '*': s = "Go to the last message in the current mailbox";
  17.        break;
  18.     case '-': s = 
  19.        "Go to the previous page of messages in the current mailbox";
  20.        break;
  21.     case '=': s = "Go to the first message in the current mailbox";
  22.        break;
  23.     case ' ': s = "Go to the next page of messages in the current mailbox";
  24.        break;
  25.     case '+': s = "Go to the next page of messages in the current mailbox";
  26.        break;
  27.     case '/': s = "Search for specified pattern in mailbox";
  28.        break;
  29.     case '<': s = "Scan current message for calendar entries (if enabled)";
  30.        break;
  31.     case '>': s = 
  32.        "Save current message or tagged messages to specified file";
  33.        break;
  34.     case '^': s = 
  35.        "Toggle the Delete/Undelete status of the current message";
  36.        break;
  37.     case 'a': s = 
  38.        "Enter the alias sub-menu section.  Create and display aliases";
  39.        break;
  40.     case 'b': s = 
  41.        "Bounce (remail) a message to someone as if you have never seen it";
  42.        break;
  43.     case 'c': s = 
  44.        "Change mailboxes, leaving the current mailbox as if 'quitting'";
  45.        break;
  46.     case 'd': s = "Mark the current message for future deletion";
  47.        break;
  48.     case 'e': s = 
  49.            "Invoke the editor on the entire mailbox, resync'ing when done";
  50.        break;
  51.     case 'f': s = 
  52.            "Forward the current message to someone, return address is yours";
  53.        break;
  54.     case 'g': s = 
  55.          "Group reply not only to the sender, but to everyone who received msg";
  56.        break;
  57.     case 'h': s = "Display message with all Headers (ignore weedout list)";
  58.        break;
  59.     case 'j': s = 
  60.            "Go to the next message.  This is the same as the DOWN arrow";
  61.        break;
  62.     case 'k': s = 
  63.            "Go to the previous message.  This is the same as the UP arrow";
  64.        break;
  65.     case 'm': s = 
  66.            "Create and send mail to the specified person or persons";
  67.        break;
  68.     case 'n': s = 
  69.            "Read the current message, then move current to next messge";
  70.        break;
  71.     case 'o': s = "Go to the options submenu";
  72.        break;
  73.     case 'p': s = "Print the current message or the tagged messages";
  74.        break;
  75.     case 'q': s = "Quit the mailer, asking about deletion, saving, etc";
  76.        break;
  77.     case 'r': s = 
  78.       "Reply to the message.  This only sends to the originator of the message";
  79.        break;
  80.     case 's': s = 
  81.            "Save current message or tagged messages to specified file";
  82.        break;
  83.     case 't': s = 
  84.            "Tag a message for further operations (or untag if tagged)";
  85.        break;
  86.     case 'u': s = "Undelete - remove the deletion mark on the message";
  87.        break;
  88.     case 'x': s = "Exit the mail system quickly";
  89.        break;
  90.     
  91.     case '\n':
  92.     case '\r': s = "Read the current message";
  93.        break;
  94.  
  95.     case ctrl('L'): s = "Rewrite the screen";    
  96.        break;
  97.         case ctrl('?'):                        /* DEL */
  98.     case ctrl('Q'): s = "Exit the mail system quickly";
  99.        break;
  100.     default : 
  101.     
  102.         /** first off, is it a digit the user entered?? **/
  103.  
  104.               if (isdigit(ch)) 
  105.                 s = "Make specified number the current message";
  106.