home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / uiuc / messages.h < prev    next >
Encoding:
Text File  |  1991-03-17  |  3.8 KB  |  86 lines

  1. /*
  2.  * Copyright (c) 1989 Paul Pomes
  3.  * Copyright (c) 1989 University of Illinois Board of Trustees
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms are permitted
  7.  * provided that the above copyright notice and this paragraph are
  8.  * duplicated in all such forms and that any documentation,
  9.  * advertising materials, and other materials related to such
  10.  * distribution and use acknowledge that the software was developed
  11.  * by the University of Illinois, Urbana.  In addition, redistribution
  12.  * and use must conform to the terms listed in the CopyLeft text below.
  13.  *
  14.  * The name of the University may not be used to endorse or promote products
  15.  * derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  19.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  * @(#)$Header: /usr/local/src/mail/sendmail/uiuc/RCS/messages.h,v 1.1 1991/03/18 15:38:00 paul Exp $
  22.  */
  23.  
  24. /* Messages for ErrorReturn().  How simple, yet stupid, do we have to be? */
  25.  
  26. char    *NoMatchMsg[] = {
  27.  " The message, \"No matches to nameserver query,\" is generated whenever",
  28.  " the ph nameserver fails to locate either a ph alias or name field that",
  29.  " matches the supplied name.  The usual causes are typographical errors or",
  30.  " the use of nicknames.  Recommended action is to use the ph program to",
  31.  " determine the correct ph alias for the individuals addressed.  If ph is",
  32.  " not available, try sending to the most explicit form of the name, e.g.,",
  33.  " if mike-fox fails, try michael-j-fox.",
  34.  " ",
  35.  NULL
  36. };
  37.  
  38. char    *MultiMsg[] = {
  39.  " The message, \"Multiple matches found for nameserver query,\" is generated",
  40.  " whenever the ph nameserver finds multiple matches for the supplied name.",
  41.  " The steering philosophy is that mail should be delivered only to the",
  42.  " addressed individual.  Since the supplied information is insufficient",
  43.  " to locate a specific individual, your message is being returned.",
  44.  " To help you locate the correct individual, selected fields from the",
  45.  " possible matches are included below.  The alias field is the only one",
  46.  " guaranteed unique within a given ph community.",
  47.  " ",
  48.  NULL
  49. };
  50.  
  51. char    *TooManyMsg[] = {
  52.  " The message, \"Too many matches found to nameserver query,\" is generated",
  53.  " whenever the supplied name or alias matched over twenty ph nameserver",
  54.  " entries.  In this case no information will be returned about possible",
  55.  " matches.  Recommended action is to supply more specific names, e.g.,",
  56.  " john-b-smith instead of john-smith, or use the per-person unique ph alias.",
  57.  " You may have thought that you had used a ph alias and not a name.  This is",
  58.  " an artifact of the address resolution process.  If the address fails as an",
  59.  " alias, it is retried first as a callsign and then as a name.  While aliases",
  60.  " are guaranteed unique, names can match multiple individuals depending on",
  61.  " how common the name is.",
  62.  " ",
  63.  NULL
  64. };
  65.  
  66. char    *AbsentMsg[] = {
  67.  " The message, \"E-mail field not present in nameserver entry,\" is generated",
  68.  " whenever the ph nameserver matched the supplied name or alias with an",
  69.  " entry that lacked an email address field.  In this case no delivery can",
  70.  " be made.  Recommended action is to contact the individual by alternate",
  71.  " means via the information included below.  If the individual already has",
  72.  " an email address, s/he should edit their ph entry to include it.",
  73.  " ",
  74.  NULL
  75. };
  76.  
  77. char    *PhoneMsg[] = {
  78.  " A note regarding phone numbers: the UIUC area code is 217.  There are three",
  79.  " exchanges used by UIUC: 333, 332, and 244.  UIUC phone numbers are often",
  80.  " abbreviated by omitting the first two digits of the exchange.  Thus the",
  81.  " example phone number 3-6262 can be reached by dialing 1 217 333 6262.",
  82.  " ",
  83.  NULL
  84. };
  85.  
  86.