converting.sun.configs
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:16k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1.      Converting Standard Sun Config
  2.       Files to Sendmail Version 8
  3.       Rick McCarty
  4.  Texas Instruments Inc.
  5.      Latest Update: 08/25/93 - RJMc
  6. This document details the changes necessary to continue using your
  7. current SunOS sendmail.cf with sendmail version 8.  In the longer term,
  8. it is recommended that one move to using an m4 based configuration such
  9. as those shipped with sendmail, but if you're like me and have made
  10. enough modifications to your .cf file that you'd rather put that task
  11. off until later, here's the sum total of my experience to get you to
  12. version 8 with minimal pain.  I'll cover .cf as well as build issues.
  13. Some background - as many are surely aware, Sun has some "special"
  14. features in the sendmail they ship ($%x, %y LHS lookup, NIS alias DB
  15. search, etc.).  (Some of those features can be had in alternative forms
  16. in IDA sendmail, but v8 has picked up some IDA capabilities as well as
  17. new ones, making it IMHO a most desirable version to go to.)  What I
  18. will explain below includes v8 functional "equivalences" to these Sun
  19. sendmail features.
  20. So with that out of the way, let's begin.
  21. First, some assumptions:
  22. 1) I'm going to assume you've got sendmail version 8.6 or
  23.    later in hand - if not, grab it from ftp.cs.berkeley.edu
  24.    in the ucb/sendmail directory.  There are bugs in earlier
  25.    versions which affect some of the needed functionality.
  26. 2) Second, I'm going to detail this based upon the
  27.    "sendmail.main.cf" configuration.  (BTW, if you attempt
  28.    to move to using an m4 generated config in the future,
  29.    MAIL_HUB is the feature which should provide similar
  30.    functionality).
  31.    In general, the changes will be similar for a subsidiary
  32.    file, but since we (my TI group) funnel all non-local mail
  33.    through our mailhost, we're not as interested in getting v8
  34.    to run on such systems and I haven't tried it.
  35. 3) You're using DNS and sendmail.mx.  If you're not, you ought
  36.    to be, even if you're also running it along with NIS (which
  37.    we do - except for gethostbyxxx() lookups, which I'll be
  38.    talking about later).  I would imagine you could get things
  39.    running OK without DNS support, but I haven't tried it myself.
  40. 4) You're not mounting /var/spool/mail from other systems.
  41.    I haven't found a v8 feature to guarantee this will work
  42.    correctly.  Anyway, in the past, we've tried doing that
  43.    here and found it to be a rather "ugly" feature, though
  44.    Sun ostensibly supports it ("R" option).  Perhaps v8
  45.    will one day have a similar feature, but for now, bottom
  46.    line, I would recommend against it.
  47. 5) You're not on Solaris or using NIS+.  I'm on 4.1.3.  I've
  48.    looked at Solaris briefly and have noted that things are
  49.    pretty much similar there except that they've moved some
  50.    things into the /etc/mail directory.  I'd guess the
  51.    executables aren't functionally all that different from
  52.    what they had before - the configs are roughly the same.
  53.    So I'd bet most of what I say in here will apply to
  54.    Solaris.
  55. OK, let's configure our sendmail.cf!  I'll just go from the top down...
  56.   VARIOUS DECLARATIONS
  57. 1) For v8, you need to define your .cf as AT LEAST a version level 4
  58.    configuration.  Add the following line:
  59. V4
  60.    There are some issues regarding certain predefined macros - $w, $j, and
  61.    $m.  With a V4 configuration:
  62. $w is defined to be the hostname, which will usually be fully
  63. qualified (i.e. "firefly.add.itg.ti.com").
  64. $j should have the same value as $w.
  65. $m will be predefined as the domain portion of $w
  66. (ex. "add.itg.ti.com").
  67.    One note about this - if your configuration relies on the "w" macro to
  68.    be the "simple" hostname (as mine does)...
  69.    If the configuration version is 5 or larger:
  70. $w is supposed to be the "simple" name (ex. "firefly")
  71. $j should be the fully qualified name (i.e. "firefly.add.itg.ti.com")
  72. $m will be predefined as the domain portion of $j
  73. (ex. "add.itg.ti.com").
  74.    I have not experimented with the various combinations, so I cannot
  75.    guarantee you that the above definitions will always come out as
  76.    expected.  Bottom line:  if your sendmail.cf depends on $w being the
  77.    simple hostname, test it carefully or define the name explicitly,
  78.    for example:
  79. Dwfirefly
  80. 2) To replace the Sun's "%y" feature, we must use a hostname mapping
  81.    feature in v8.  If you want to do similar lookups with v8, you need
  82.    to define the following map (we'll go over the rules that use this
  83.    map later):
  84. Khostlookup host -f -m -a.
  85.    This will define a "lookup only" map that is otherwise the same as
  86.    sendmail version 8's built-in "host" map (see the "Sendmail
  87.    Installation and Operation Guide" for details on this map.).
  88.    An important note:  Whether or not these lookups will be done via
  89.    NIS is a function of what gethostbyxxx() functions you link into
  90.    your sendmail.  DO NOT redefine your host mapping to use NIS
  91.    explicitly within sendmail - there can be unexpected behaviour if
  92.    you do so (if you do any canonicalization in your .cf, you can get
  93.    incorrect results, for one thing).
  94.    For example, DO NOT TRY:
  95. Khost nis -f -a. hosts.byname
  96. 3) If you're doing reverse alias mapping as done in ruleset 22, instead of:
  97. DZmail.byaddr
  98.    you'll need to declare the following:
  99. Kaliasrev nis -f -N mail.byaddr
  100. 4) If you are doing any other NIS map lookups, you'll need to define the
  101.    map as done in the below example.  I have a "mailhosts" map, which I
  102.    use to distinguish between local and non-local hosts.  Look at the
  103.    sendmail doc for details on this stuff.
  104. Kmailhosts nis -f -m -a. mailhosts 
  105. 5) You might wish to add the following line to support Errors-To: headers.
  106.    I don't.
  107. Ol
  108. 6) Comment out/remove the following line:
  109. OR
  110.    The R option means something different under v8 - check the documentation
  111.    if you're interested in using it.
  112. 7) If you're running NIS and have a separate alias map, BELOW the
  113.    following line where the alias file is declared:
  114. OA/etc/aliases
  115.    ADD the following:
  116. OAnis:mail.aliases
  117.    This will set things up so v8 will look at the local alias DB first,
  118.    then the NIS map, just as Sun sendmail does.
  119. 8) Though you don't have to, I'd suggest changing:
  120. OT3d
  121.    to use v8's warning feature, which allows a warning message to be
  122.    sent if a message cannot be delivered within a specified period.
  123.    I use:
  124. OT5d/4h
  125.    which says - bounce after 5 days, warn after 4 hours.
  126. 9) I set the following option to be explicit about how I want DNS
  127.     handled:
  128. OI +DNSRCH +DEFNAMES
  129. 10) The following line:
  130. T root daemon uucp
  131.     may be deleted, though it will be ignored if you leave it around.
  132. 11) It would probably be good to change the version macro value (which
  133.     shows up in "Received:" headers) so no one debugging mail problems
  134.     gets the wrong idea about what config you're running under.  Look
  135.     for something like:
  136. DVSMI-4.1
  137.     Mine, for example is:
  138. DVADD-HUB-2.1
  139. RULESETS
  140. 1)  In ruleset 3, BELOW this rule:
  141. # basic textual canonicalization
  142. R$*<$+>$* $2 basic RFC822 parsing
  143. I add the following rule to remove a trailing dot in the domain spec so
  144. it won't interfere with v8 mapping features, etc.  (Having a trailing dot is
  145. not RFC-compliant anyway.):
  146. R$+. $1
  147. 2) Because ruleset 5 is special in v8, I rename it to S95 and also change
  148.    all RHS expressions containing ">5" to use ">95" instead.  In v8,
  149.    5 is executed against addresses which resolve to the local mailer and
  150.    are not an alias.  If you don't change S5 to something else, you might
  151.    get a surprise!
  152. 3) If you're doing any lookups via the generalized NIS "$%x/$!x"
  153.    mechanisms (such as with the mailhost map I referred to earlier) it's
  154.    done differently under v8.  For example:
  155. DMmailhosts
  156. ...
  157. R$*<@$%M.uucp>$* $#ether $@$2 $:$1<@$2>$3
  158.    takes a different map definition and two rules under version 8:
  159. Kmailhosts nis -f -m -a. mailhosts
  160. ...
  161. R$*<@$+.uucp>$* $: $1<@$(mailhosts $2 $).uucp>$3
  162. R$*<@$+..uucp>$* $#ether $@$2 $:$1<@$2>$3
  163. 4) Sun has a special case of the "$%x" feature for host lookups - "%y" is
  164.    automagically defined to do an NIS "hosts.byname" search with no other
  165.    definition, as done in the below example:
  166. R$*<@$%y.LOCAL>$* $#ether $@$2 $:$1<@$2>$3
  167.    (Sun does this in more than one place.  But the above syntax is almost
  168.     identical in each - mostly a case of changing names to protect the
  169.     innocent.)
  170.    In version 8, the predefined "host" map can be used to do essentially
  171.    the same thing.  (However, whether or not it does an NIS lookup is
  172.    a function of what gethostbyxxx() functions are linked in.)
  173.    Recall the map definition I mentioned earlier in the DECLARATIONS
  174.    section:
  175. Khostlookup host -f -m -a.
  176.    Here's where we will use it.  It will take two rules:
  177. R$*<@$+.LOCAL>$* $: $1<@$(hostlookup $2 $).LOCAL>$3
  178. R$*<@$+..LOCAL>$* $#ether $@$2 $:$1<@$2>$3
  179.    Note that this is almost verbatim the same change as was used in the
  180.    previous "mailhosts" example.
  181. 5) Although Sun's default configs don't do this, because I mentioned
  182.    canonicalization earlier, it deserves an example, as it's illustrative
  183.    of the functional difference in the map definitions I discussed before.
  184.    This stuff is also convered in the "Sendmail Installation and Operation
  185.    Guide".
  186.    Remember the built-in "host" map definition?  As you'll recall, unlike
  187.    the "hostlookup" map we defined, "host" will actually CHANGE the
  188.    hostname in addition to appending a dot.  "hostlookup" only appends a
  189.    dot if the name is found and doesn't change it otherwise.  Anyway,
  190.    here's the example:
  191. R$*<@$+>$* $: $1<@$(host $2 $)>$3 canonicalize
  192. R$*<@$+.>$* $1<@$2>$3 remove trailing dot
  193.    Using the above, say you had input of:
  194. joe<@tilde>
  195. OR
  196. joe<@[128.247.160.56]>
  197. Assuming "tilde" or the IP address is found, it might be
  198.         canonicalized as:
  199. joe<@tilde.csc.ti.com>
  200. 6) As another instance of the NIS lookup feature, with a slightly
  201.    different twist, Sun implements reverse alias mapping in ruleset 22
  202.    with the below:
  203. DZmail.byaddr
  204. ...
  205. R$-<@$-> $:$>3${Z$1@$2$} invert aliases
  206.    To use this feature under v8, change the above rule a (remember to
  207.    define the alias map as I showed earlier):
  208. R$-<@$-> $:$>3$(aliasrev $1@$2 $) invert aliases
  209.    MAILER DEFINITIONS
  210. 1) Where "TCP" is defined in the "P=" and "A=" parameters of mailers, I
  211.    changed it to "IPC".  Version 8 will accept "TCP", but "IPC" is
  212.    preferred.
  213. 2) On all IPC mailers, I also defined "E=rn" and added an "L=1000" as
  214.    in the below example:
  215. Mether, P=[IPC], F=mDFMuCX, S=11, R=21, L=1000, E=rn, A=IPC $h
  216.    The "E=rn" will save you headaches interoperating with such things as
  217.    VMS TCP products.
  218.    The "L=1000" is for RFC821 compatibility.  Not strictly necessary.
  219.    I also removed the "s" (strip quotes) mailer flag Sun puts in for
  220.    these mailers.  Stripping quotes violates protocols, which say
  221.    clearly that you can't touch the local-part (left hand side of
  222.    the @) until you are on the delivering host.
  223. NOW.  If I haven't left anything out, you should be able to run through
  224. your Sun sendmail.cf file and convert it to run under v8.
  225.       BUILD ISSUES
  226. Some important notes on building v8 on SunOS:
  227. Makefile
  228. The default makefile in the version 8 source (src) directory assumes the
  229. new Berkeley make.  Unless you want to go to the trouble of building it,
  230. you can use your regular make, but you need to use a different makefile.
  231. You can use "Makefile.dist" or "Makefile.SunOS" in the src directory.  I
  232. made changes to get it to build so it is as compatible as possible with
  233. the file/directory locations Sun uses.  Here are some relevant sections
  234. out of my makefile:
  235. CC=gcc
  236. # use O=-O (usual) or O=-g (debugging)
  237. O= -O
  238. # define the database mechanisms available for map & alias lookups:
  239. # -DNDBM -- use new DBM
  240. # -DNEWDB -- use new Berkeley DB
  241. # -DNDBM -DNEWDB -DYPCOMPAT -- use both plus YP compatility
  242. # -DNIS -- include client NIS support
  243. # The really old (V7) DBM library is no longer supported.
  244. # See README for a description of how these flags interact.
  245. #DBMDEF= -DNDBM -DNEWDB
  246. DBMDEF= -DNDBM -DNIS
  247. # environment definitions (e.g., -D_AIX3)
  248. ENVDEF=
  249. # see also conf.h for additional compilation flags
  250. # library directories
  251. LIBDIRS=-L/usr/local/lib
  252. # libraries required on your system
  253. #LIBS= -ldb -ldbm
  254. LIBS= -ldbm -lresolv
  255. # location of sendmail binary (usually /usr/sbin or /usr/lib)
  256. BINDIR= ${DESTDIR}/usr/lib
  257. # location of sendmail.st file (usually /var/log or /usr/lib)
  258. STDIR= ${DESTDIR}/etc
  259. # location of sendmail.hf file (usually /usr/share/misc or /usr/lib)
  260. HFDIR= ${DESTDIR}/usr/lib
  261. For the resolver library, you can use the one shipped with Sun if you
  262. want.  But I'd recommend using another version of the resolver library
  263. (such as the one with Bind 4.8.3 or 4.9).  Sun's resolver stuff (at
  264. least with 4.1.x) is quite old - I believe it is of 4.3.1 vintage.  (Do
  265. you get the impression I don't TRUST what Sun ships with their systems?)
  266. If you want NIS host lookup while maintaining DNS capability, you might
  267. take a look at resolv+, which has NIS capable gethostbyxxx() functions
  268. in it.  My recommendation, however, is to avoid doing NIS host lookups
  269. in sendmail altogether, and to use a "pure" version of the resolver
  270. library.
  271. There are probably no situations (at least I think so) where it makes
  272. any sense to link in Sun's NIS gethostbyxxx() functions from libc.
  273. You could, I guess do it (I haven't tried it) and wind up with a
  274. sendmail equivalent to the non-mx version Sun ships.  You'd need to
  275. insure that NAMED_BIND is not defined in the build.  (If you do
  276. this and have the "-b" DNS passthru option set in NIS, remember that
  277. while you have some DNS functionality you'll not have any MX support.
  278. (This, IMO, is what makes this a non-optimal choice.)
  279.       INSTALLATION/TESTING ISSUES
  280. The sendmail.hf file in the src directory should replace the one currently
  281. in /usr/lib.  You also might choose to edit it a bit to "localize" what it
  282. says.
  283. The sendmail executable goes, of course, in /usr/lib in place of the current
  284. one.  What I did was create a subdirectory in /usr/lib and put all of the
  285. Sun sendmail stuff in there.  I named the v8 sendmail executable to be
  286. sendmail.v8.mx and then symbolically linked it to sendmail.
  287. One other thing.  If you use address test mode, keep in mind that
  288. Version 8 is like IDA in that it does not automatically execute ruleset
  289. 3 first.  So say you're playing around with things testing addresses and
  290. you're used to things like:
  291. 0 jimbob@good.old.boy.com
  292. under v8 you need to say instead:
  293. 3,0 jimbob@good.old.boy.com
  294.       INTEROPERABILITY ISSUES YOU MIGHT ENCOUNTER
  295. Be aware that sendmail v8 issues a multi-line SMTP welcome (220)
  296. response upon a client connection.  Most systems in your network should
  297. handle it OK, but there are some that choke on it, because whoever wrote
  298. the clients assumed only a single line.  THIS IS NOT SENDMAIL's FAULT.
  299. A multi-line 220 response is perfectly valid.  A likely place you'll
  300. encounter this problem is with non-Un*x SMTP clients.  If you do run
  301. into it, you should report it to the vendor.
  302. A final note about version 8 - if you follow the above configuration
  303. scenario, you'll notice it doesn't like to get envelope sender
  304. addresses it doesn't know how to get back to.  Sun sendmail would take
  305. anything, even though it might not be able to bounce the message back
  306. should something happen downstream.  So if another sendmail on a host
  307. that's not locally known is trying to pump mail through your v8 host,
  308. the ENVELOPE sender it gives had better be fully qualified.  This is
  309. a GREAT thing, because it helps clear up problems we've had with not
  310. being able to get things back to the sender, resulting in an
  311. overburdened postmaster.
  312. I hope this helps those running Sun sendmail feel more at ease with moving
  313. on to v8.  It's really worth going to.