Upgrade to sendmail 8.1C from NetBSD
[unix-history] / usr.sbin / sendmail / cf / mailer / smtp.m4
CommitLineData
6f14531a
RG
1PUSHDIVERT(-1)
2#
3# Copyright (c) 1983 Eric P. Allman
4# Copyright (c) 1988, 1993
5# The Regents of the University of California. All rights reserved.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11# notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13# notice, this list of conditions and the following disclaimer in the
14# documentation and/or other materials provided with the distribution.
15# 3. All advertising materials mentioning features or use of this software
16# must display the following acknowledgement:
17# This product includes software developed by the University of
18# California, Berkeley and its contributors.
19# 4. Neither the name of the University nor the names of its contributors
20# may be used to endorse or promote products derived from this software
21# without specific prior written permission.
22#
23# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33# SUCH DAMAGE.
34#
35ifdef(`SMTP_MAILER_FLAGS',,
36 `define(`SMTP_MAILER_FLAGS',
37 `ifdef(`_OLD_SENDMAIL_', `L', `')')')
38POPDIVERT
39#####################################
40### SMTP Mailer specification ###
41#####################################
42
43VERSIONID(`@(#)smtp.m4 8.1 (Berkeley) 6/7/93')
44
45Msmtp, P=[IPC], F=CONCAT(mDFMueXC, SMTP_MAILER_FLAGS), S=11, R=21, E=\r\n,
46 ifdef(`_OLD_SENDMAIL_',, `L=990, ')A=IPC $h
47Mrelay, P=[IPC], F=CONCAT(mDFMueXC, SMTP_MAILER_FLAGS), S=11, R=19, E=\r\n,
48 ifdef(`_OLD_SENDMAIL_',, `L=2040, ')A=IPC $h
49
50S11
51
52# do sender/recipient common rewriting
53R$+ $: $>19 $1
54
55# if already @ qualified, we are done
56R$* < @ $* > $* $@ $1 < @ $2 > $3 already qualified
57
58# don't qualify list:; syntax
59R$* :; <@> $@ $1 :;
60
61# unqualified names (e.g., "eric") "come from" $M
62R$=E $@ $1 < @ $j> show exposed names
63R$+ $: $1 < @ $M > user w/o host
64R$+ <@> $: $1 < @ $j > in case $M undefined
65
66S21
67
68# do sender/recipient common rewriting
69R$+ $: $>19 $1
70
71# if already @ qualified, we are done
72R$* < @ $* > $* $@ $1 < @ $2 > $3 already qualified
73
74# don't qualify list:; syntax
75R$* :; <@> $@ $1 :;
76
77# unqualified names (e.g., "eric") are qualified by local host
78R$+ $: $1 < @ $j >
79
80S19
81
82# pass <route-addr>s through
83R< @ $+ > $* $@ < @ $1 > $2 resolve <route-addr>
84
85# output fake domains as user%fake@relay
86ifdef(`BITNET_RELAY',
87`R$+ <@ $+ . BITNET > $: $1 % $2 .BITNET < @ $B > user@host.BITNET',
88 `dnl')
89ifdef(`CSNET_RELAY',
90`R$+ <@ $+ . CSNET > $: $1 % $2 .CSNET < @ $C > user@host.CSNET',
91 `dnl')
92ifdef(`_NO_UUCP_', `dnl',
93`R$+ <@ $+ . UUCP > $: $2 ! $1 < @ $j > user@host.UUCP')