1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
|
#!/bin/sh
# To view the formatted manual page of this file, type:
# POSTFIXSOURCE/mantools/srctoman - postfix-install | nroff -man
#++
# NAME
# postfix-install 1
# SUMMARY
# Postfix installation procedure
# SYNOPSIS
# sh postfix-install [options] [name=value] ...
# DESCRIPTION
# The postfix-install script is to be run from the top-level
# Postfix source directory. It implements the following operations:
# .IP o
# Install or upgrade Postfix from source code. This requires
# super-user privileges.
# .IP o
# Build a package that can be distributed to other systems, in order
# to install or upgrade Postfix elsewhere. This requires no super-user
# privileges. To complete the installation after unpacking the
# package, execute as super-user the post-install script in the Postfix
# configuration directory.
# .PP
# The postfix-install script is controlled by installation parameters.
# Specific parameters are described at the end of this document.
#
# By default, postfix-install asks the user for installation
# parameter settings. Most settings are stored in the installed
# main.cf file. Stored settings are used as site-specific defaults
# when the postfix-install script is run later.
#
# The names of Postfix files and directories, as well as their
# ownerships and permissions, are stored in the postfix-files file
# in the Postfix configuration directory. This information is used
# by the post-install script (also in the configuration directory)
# for creating missing queue directories when Postfix is started,
# and for setting correct ownership and permissions when Postfix
# is installed from a pre-built package or from source code.
#
# Arguments
# .IP -non-interactive
# Do not ask the user for parameter settings. Installation parameters
# are specified via one of the non-interactive methods described
# below.
# INSTALLATION PARAMETER INPUT METHODS
# .ad
# .fi
# Parameter settings can be specified through a variety of
# mechanisms. In order of decreasing precedence these are:
# .IP "interactive mode"
# By default, postfix-install will ask the user for installation
# parameter settings. These settings have the highest precedence.
# .IP "command line"
# Parameter settings can be given as name=value arguments on
# the postfix-install command line.
# .IP "process environment"
# Parameter settings can be given as name=value environment
# variables. Environment parameters can also be specified on the
# make(1) command line as "make install name=value ...".
# .IP "installed configuration files"
# If a parameter is not specified via the command line or via the
# process environment, postfix-install will attempt to extract its
# value from an already installed Postfix main.cf configuration file.
# .IP "built-in defaults"
# These settings have the lowest precedence.
# INSTALLATION PARAMETER DESCRIPTION
# .ad
# .fi
# The description of installation parameters and their built-in
# default settings is as follows:
# .IP install_root
# Prefix that is prepended to the pathnames of installed files.
# Specify this ONLY when creating pre-built packages for distribution to
# other systems. The built-in default is "/", the local root directory.
# This parameter setting is not recorded in the installed main.cf file.
# .IP tempdir
# Directory for scratch files while installing Postfix.
# You must have write permission in this directory.
# The built-in default directory name is the current directory.
# This parameter setting is not recorded in the installed main.cf file.
# .IP config_directory
# The destination directory for Postfix configuration files.
# The built-in default directory name is /etc/postfix.
# This parameter setting is not recorded in the installed main.cf file.
# .IP daemon_directory
# The destination directory for Postfix daemon programs. This directory
# should not be in the command search path of any users.
# The built-in default directory name is /usr/libexec/postfix.
# This parameter setting is recorded in the installed main.cf file.
# .IP command_directory
# The destination directory for Postfix administrative commands. This
# directory should be in the command search path of adminstrative users.
# The built-in default directory name is system dependent.
# This parameter setting is recorded in the installed main.cf file.
# .IP queue_directory
# The destination directory for Postfix queues.
# The built-in default directory name is /var/spool/postfix.
# This parameter setting is recorded in the installed main.cf file.
# .IP sendmail_path
# The full destination pathname for the Postfix sendmail command.
# This is the Sendmail-compatible mail posting interface.
# The built-in default pathname is system dependent.
# This parameter setting is recorded in the installed main.cf file.
# .IP newaliases_path
# The full destination pathname for the Postfix newaliases command.
# This is the Sendmail-compatible command to build alias databases
# for the Postfix local delivery agent.
# The built-in default pathname is system dependent.
# This parameter setting is recorded in the installed main.cf file.
# .IP mailq_path
# The full destination pathname for the Postfix mailq command.
# This is the Sendmail-compatible command to list the mail queue.
# The built-in default pathname is system dependent.
# This parameter setting is recorded in the installed main.cf file.
# .IP mail_owner
# The owner of the Postfix queue. Its numerical user ID and group ID
# must not be used by any other accounts on the system.
# The built-in default account name is postfix.
# This parameter setting is recorded in the installed main.cf file.
# .IP setgid_group
# The group for mail submission and for queue management commands.
# Its numerical group ID must not be used by any other accounts on the
# system, not even by the mail_owner account.
# The built-in default group name is postdrop.
# This parameter setting is recorded in the installed main.cf file.
# .IP manpage_directory
# The destination directory for the Postfix on-line manual pages.
# This parameter setting is recorded in the installed main.cf file.
# .IP sample_directory
# The destination directory for the Postfix sample configuration files.
# This parameter setting is recorded in the installed main.cf file.
# .IP readme_directory
# The destination directory for the Postfix README files.
# This parameter setting is recorded in the installed main.cf file.
# SEE ALSO
# post-install(1) post-installation procedure
# FILES
# $config_directory/main.cf, Postfix installation configuration.
# $config_directory/postfix-files, installation control file.
# $config_directory/install.cf, obsolete configuration file.
# LICENSE
# .ad
# .fi
# The Secure Mailer license must be distributed with this software.
# AUTHOR(S)
# Wietse Venema
# IBM T.J. Watson Research
# P.O. Box 704
# Yorktown Heights, NY 10598, USA
#--
# Initialize.
# By now, shells must have functions. Ultrix users must use sh5 or lose.
umask 022
PATH=/bin:/usr/bin:/usr/sbin:/usr/etc:/sbin:/etc:/usr/contrib/bin:/usr/gnu/bin:/usr/ucb:/usr/bsd
SHELL=/bin/sh
IFS="
"
BACKUP_IFS="$IFS"
USAGE="Usage: $0 [name=value] [option]
-non-interactive Do not ask for installation parameters.
name=value Specify an installation parameter".
# Process command-line options and parameter settings. Work around
# brain damaged shells. "IFS=value command" should not make the
# IFS=value setting permanent. But some broken standard allows it.
for arg
do
case $arg in
*=*) IFS= eval $arg; IFS="$BACKUP_IFS";;
-non-int*) non_interactive=1;;
*) echo "$0: Error: $USAGE" 1>&2; exit 1;;
esac
shift
done
# Sanity checks.
test -z "$non_interactive" -a ! -t 0 && {
echo $0: Error: for non-interactive use, run: \"$0 -non-interactive\" 1>&2
exit 1
}
test -x bin/postconf || {
echo $0: Error: no bin/postconf file. Did you forget to run \"make\"? 1>&2
exit 1
}
case `uname -s` in
HP-UX*) FMT=cat;;
*) FMT=fmt;;
esac
# Disclaimer.
test -z "$non_interactive" && cat <<EOF | ${FMT}
Warning: if you use this script to install Postfix locally,
this script will replace existing sendmail or Postfix programs.
Make backups if you want to be able to recover.
Before installing files, this script prompts you for some
definitions. Most definitions will be remembered, so you have
to specify them only once. All definitions should have a
reasonable default value.
EOF
# The following shell functions replace files/symlinks while minimizing
# the time that a file does not exist, and avoid copying over files
# in order to not disturb running programs. That is certainly desirable
# when upgrading Postfix on a live machine. It also avoids surprises
# when building a Postfix package for distribution to other systems.
compare_or_replace() {
mode=$1
owner=$2
group=$3
src=$4
dst=$5
(cmp $src $dst >/dev/null 2>&1 && echo Skipping $dst...) || {
echo Updating $dst...
rm -f $tempdir/junk || exit 1
cp $src $tempdir/junk || exit 1
mv -f $tempdir/junk $dst || exit 1
test -z "$owner" || chown $owner $dst || exit 1
test -z "$group" || chgrp $group $dst || exit 1
chmod $mode $dst || exit 1
}
}
compare_or_symlink() {
(cmp $1 $2 >/dev/null 2>&1 && echo Skipping $2...) || {
echo Updating $2...
rm -f $tempdir/junk || exit 1
dest=`echo $1 | sed '
s;^'$install_root';;
s;/\./;/;g
s;//*;/;g
s;^/;;
'`
link=`echo $2 | sed '
s;^'$install_root';;
s;/\./;/;g
s;//*;/;g
s;^/;;
s;/[^/]*$;/;
s;[^/]*/;../;g
s;$;'$dest';
'`
ln -s $link $tempdir/junk || exit 1
mv -f $tempdir/junk $2 || {
echo $0: Error: your mv command is unable to rename symlinks. 1>&2
echo If you run Linux, upgrade to GNU fileutils-4.0 or better, 1>&2
echo or choose a tempdir that is in the same file system as $2. 1>&2
exit 1
}
}
}
check_parent() {
for path
do
dir=`echo $path|sed -e 's/[/][/]*[^/]*$//' -e 's/^$/\//'`
test -d $dir || mkdir -p $dir || exit 1
done
}
# How to supress newlines in echo.
case `echo -n` in
"") n=-n; c=;;
*) n=; c='\c';;
esac
# Prompts.
install_root_prompt="the prefix for installed file names. Specify
this ONLY if you are building ready-to-install packages for
distribution to other machines."
tempdir_prompt="a directory for scratch files while installing
Postfix. You must have write permission in this directory."
config_directory_prompt="the destination directory for installed
Postfix configuration files."
daemon_directory_prompt="the destination directory for installed
Postfix daemon programs. This directory should not be in the
command search path of any users."
command_directory_prompt="the destination directory for installed
Postfix administrative commands. This directory should be in the
command search path of adminstrative users."
queue_directory_prompt="the destination directory for Postfix
queues."
sendmail_path_prompt="the full destination pathname for the installed
Postfix sendmail command. This is the Sendmail-compatible mail
posting interface."
newaliases_path_prompt="the full destination pathname for the
installed Postfix newaliases command. This is the Sendmail-compatible
command to build alias databases for the Postfix local delivery
agent."
mailq_path_prompt="the full destination pathname for the installed
Postfix mailq command. This is the Sendmail-compatible mail queue
listing command."
mail_owner_prompt="the owner of the Postfix queue. Specify an
account with numerical user ID and group ID values that are not
used by any other accounts on the system."
setgid_group_prompt="the group for mail submission and for queue
management commands. Specify a group name with a numerical group
ID that is not shared with other accounts, not even with the Postfix
mail_owner account. You can no longer specify \"no\" here."
manpage_directory_prompt="the destination directory for the Postfix on-line
manual pages. You can no longer specify \"no\" here."
sample_directory_prompt="the destination directory for the Postfix
sample configuration files."
readme_directory_prompt="the destination directory for the Postfix
README files. Specify \"no\" if you do not want to install these files."
# Default settings, just to get started.
: ${install_root=/}
: ${tempdir=`pwd`}
: ${config_directory=`bin/postconf -h -d config_directory`}
# Find out the location of installed configuration files.
test -z "$non_interactive" && for name in install_root tempdir config_directory
do
while :
do
echo
eval echo Please specify \$${name}_prompt | ${FMT}
eval echo \$n "$name: [\$$name]\ \$c"
read ans
case $ans in
"") break;;
*) case $ans in
/*) eval $name=$ans; break;;
*) echo; echo $0: Error: $name should be an absolute path name. 1>&2;;
esac;;
esac
done
done
# In case some systems special-case pathnames beginning with //.
case $install_root in
/) install_root=
esac
CONFIG_DIRECTORY=$install_root$config_directory
# If a parameter is not set via the command line or environment,
# try to use settings from installed configuration files.
# Extract parameter settings from the obsolete install.cf file, as
# a transitional aid.
grep setgid_group $CONFIG_DIRECTORY/main.cf >/dev/null 2>&1 || {
test -f $CONFIG_DIRECTORY/install.cf && {
for name in sendmail_path newaliases_path mailq_path setgid manpages
do
eval junk=\$$name
case "$junk" in
"") eval unset $name;;
esac
eval : \${$name="\`. $CONFIG_DIRECTORY/install.cf; echo \$$name\`"} \
|| exit 1
done
: ${setgid_group=$setgid}
: ${manpage_directory=$manpages}
}
}
# Extract parameter settings from the installed main.cf file.
test -f $CONFIG_DIRECTORY/main.cf && {
for name in daemon_directory command_directory queue_directory mail_owner \
setgid_group sendmail_path newaliases_path mailq_path manpage_directory \
sample_directory readme_directory
do
eval junk=\$$name
case "$junk" in
"") eval unset $name;;
esac
eval : \${$name=\`bin/postconf -c $CONFIG_DIRECTORY -h $name\`} ||
exit 1
done
}
# Use built-in defaults as the final source of parameter settings.
for name in daemon_directory command_directory queue_directory mail_owner \
setgid_group sendmail_path newaliases_path mailq_path manpage_directory \
sample_directory readme_directory
do
eval junk=\$$name
case "$junk" in
"") eval unset $name;;
esac
eval : \${$name=\`bin/postconf -d -h $name\`} || exit 1
done
# Override settings manually.
test -z "$non_interactive" && for name in daemon_directory command_directory \
queue_directory sendmail_path newaliases_path mailq_path mail_owner \
setgid_group manpage_directory sample_directory readme_directory
do
while :
do
echo
eval echo Please specify \$${name}_prompt | ${FMT}
eval echo \$n "$name: [\$$name]\ \$c"
read ans
case $ans in
"") break;;
*) eval $name=$ans; break;;
esac
done
done
# Sanity checks
case "$setgid_group" in
no) (echo $0: Error: the setgid_group parameter no longer accepts
echo \"no\" values. Try again with \"setgid_group=groupname\" on the
echo command line or execute \"make install\" and specify setgid_group
echo interactively.) | ${FMT} 1>&2
exit 1;;
esac
case "$manpage_directory" in
no) (echo $0: Error: the manpage_directory parameter no longer accepts
echo \"no\" values. Try again with \"manpage_directory=/path/name\"
echo on the command line or execute \"make install\" and specify
echo manpage_directory interactively.) | ${FMT} 1>&2
exit 1;;
esac
for path in "$readme_directory"
do
case "$path" in
/*) ;;
no) ;;
*) echo $0: Error: \"$path\" should be \"no\" or an absolute path name. 1>&2
exit 1;;
esac
done
for path in "$daemon_directory" "$command_directory" "$queue_directory" \
"$sendmail_path" "$newaliases_path" "$mailq_path" "$manpage_directory" \
"$sample_directory"
do
case "$path" in
/*) ;;
*) echo $0: Error: \"$path\" should be an absolute path name. 1>&2; exit 1;;
esac
done
test -d $tempdir || mkdir -p $tempdir || exit 1
trap "rm -f $tempdir/junk" 0 1 2 3 15
( rm -f $tempdir/junk && touch $tempdir/junk ) || {
echo $0: Error: you have no write permission to $tempdir. 1>&2
echo Specify an alternative directory for scratch files. 1>&2
exit 1
}
test -z "$install_root" && {
chown root $tempdir/junk >/dev/null 2>&1 || {
echo Error: you have no permission to change file ownership. 1>&2
exit 1
}
chown "$mail_owner" $tempdir/junk >/dev/null 2>&1 || {
echo $0: Error: \"$mail_owner\" needs an entry in the passwd file. 1>&2
echo Remember, \"$mail_owner\" needs a dedicated user and group id. 1>&2
exit 1
}
chgrp "$setgid_group" $tempdir/junk >/dev/null 2>&1 || {
echo $0: Error: \"$setgid_group\" needs an entry in the group file. 1>&2
echo Remember, \"$setgid_group\" needs a dedicated group id. 1>&2
exit 1
}
}
rm -f $tempdir/junk || exit 1
trap 0 1 2 3 15
# Avoid clumsiness.
DAEMON_DIRECTORY=$install_root$daemon_directory
COMMAND_DIRECTORY=$install_root$command_directory
QUEUE_DIRECTORY=$install_root$queue_directory
SENDMAIL_PATH=$install_root$sendmail_path
NEWALIASES_PATH=$install_root$newaliases_path
MAILQ_PATH=$install_root$mailq_path
MANPAGE_DIRECTORY=$install_root$manpage_directory
SAMPLE_DIRECTORY=$install_root$sample_directory
README_DIRECTORY=$install_root$readme_directory
# Avoid repeated tests for existence of these; default permissions suffice.
test -d $DAEMON_DIRECTORY || mkdir -p $DAEMON_DIRECTORY || exit 1
test -d $COMMAND_DIRECTORY || mkdir -p $COMMAND_DIRECTORY || exit 1
test -d $COMMAND_DIRECTORY || mkdir -p $COMMAND_DIRECTORY || exit 1
test -d $SAMPLE_DIRECTORY || mkdir -p $SAMPLE_DIRECTORY || exit 1
test "$readme_directory" = "no" -o -d $README_DIRECTORY ||
mkdir -p $README_DIRECTORY || exit 1
# Upgrade or first-time installation?
if [ -f $CONFIG_DIRECTORY/main.cf ]
then
post_install_options="upgrade-source"
else
post_install_options="first-install"
fi
# Install files, using information from the postfix-files file.
exec < conf/postfix-files || exit 1
while IFS=: read path type owner group mode flags junk
do
IFS="$BACKUP_IFS"
# Skip comments.
case $path in
[$]*) ;;
*) continue;;
esac
# Skip over files that must be preserved.
case $flags in
*p*) eval test -f $install_root$path && {
eval echo "Skipping $install_root$path..."
continue
};;
esac
# If installing from source code, apply special permissions or ownership.
# If building a package, don't apply special permissions or ownership.
case $install_root in
"") case $owner in
[$]*) eval owner=$owner;;
root) owner=;;
esac
case $group in
[$]*) eval group=$group;;
-) group=;;
esac;;
*) case $mode in
[1-7]755) mode=755;;
esac
owner=
group=;;
esac
# Create directory.
case $type in
d) eval path=$install_root$path
test "$path" = "${install_root}no" -o -d $path || {
mkdir -p $path || exit 1
test -z "$owner" || chown $owner $path || exit 1
test -z "$group" || chgrp $group $path || exit 1
chmod $mode $path || exit 1
}
continue;;
[fl]) ;;
*) echo $0: Error: unknown type for $path in conf/postfix-files; exit 1;;
esac
# Install or replace file.
echo $path | (IFS=/ read prefix file; IFS="$BACKUP_IFS"
case $prefix in
'$daemon_directory')
compare_or_replace $mode "$owner" "$group" libexec/$file \
$DAEMON_DIRECTORY/$file || exit 1;;
'$command_directory')
compare_or_replace $mode "$owner" "$group" bin/$file \
$COMMAND_DIRECTORY/$file || exit 1;;
'$config_directory')
compare_or_replace $mode "$owner" "$group" conf/$file \
$CONFIG_DIRECTORY/$file || exit 1;;
'$sendmail_path')
check_parent $SENDMAIL_PATH || exit 1
compare_or_replace $mode "$owner" "$group" bin/sendmail \
$SENDMAIL_PATH || exit 1;;
'$mailq_path')
check_parent $MAILQ_PATH || exit 1
compare_or_symlink $SENDMAIL_PATH $MAILQ_PATH || exit 1;;
'$newaliases_path')
check_parent $NEWALIASES_PATH || exit 1
compare_or_symlink $SENDMAIL_PATH $NEWALIASES_PATH || exit 1;;
'$manpage_directory')
check_parent $MANPAGE_DIRECTORY/$file || exit 1
compare_or_replace $mode "$owner" "$group" man/$file \
$MANPAGE_DIRECTORY/$file || exit 1;;
'$sample_directory')
compare_or_replace $mode "$owner" "$group" conf/$file \
$SAMPLE_DIRECTORY/$file || exit 1;;
'$readme_directory')
test "$readme_directory" = "no" ||
compare_or_replace $mode "$owner" "$group" README_FILES/$file \
$README_DIRECTORY/$file || exit 1;;
*) echo $0: Error: unknown entry $path in conf/postfix-files; exit 1;;
esac) || exit 1
done
# Save the installation parameters to main.cf even when they haven't
# changed from their current default. Defaults can change between
# Postfix releases, and software should not suddenly be installed in
# the wrong place when Postfix is being upgraded.
bin/postconf -c $CONFIG_DIRECTORY -e \
"daemon_directory = $daemon_directory" \
"command_directory = $command_directory" \
"queue_directory = $queue_directory" \
"mail_owner = $mail_owner" \
"setgid_group = $setgid_group" \
"sendmail_path = $sendmail_path" \
"mailq_path = $mailq_path" \
"newaliases_path = $newaliases_path" \
"manpage_directory = $manpage_directory" \
"sample_directory = $sample_directory" \
"readme_directory = $readme_directory" \
|| exit 1
# If Postfix is being installed locally from source code, do the
# post-install processing now.
test -n "$install_root" || {
export daemon_directory command_directory queue_directory sendmail_path \
newaliases_path mailq_path mail_owner setgid_group manpage_directory \
sample_directory readme_directory
${SHELL} conf/post-install $post_install_options || exit 1
}
|