source: server/mail/courier/courier-inst.xml@ 7283ae5

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7283ae5 was 7283ae5, checked in by Igor Živković <igor@…>, 20 years ago

updated to courier-0.45.4

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1975 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[91c2c77d]1<sect2>
[1a1da48]2<title>Installation of <application>Courier</application></title>
[91c2c77d]3
4<para> Before you compile the program, you need to create users and groups that
5will be expected to be in place when the install script executes. Add the users
[a75063d4]6and groups with the following commands:</para>
[91c2c77d]7
8<screen><userinput><command>groupadd courier &amp;&amp;
[0753e8d0]9useradd -c 'Courier Mail Server' -d /dev/null -g courier -s /bin/false courier</command></userinput></screen>
[91c2c77d]10
[7283ae5]11<para> You also need to create a bin user. If you already have a user named bin
12this step can be safely ignored.</para>
13
14<screen><userinput><command>useradd -c 'bin' -d /dev/null -g bin -u 1 bin</command></userinput></screen>
15
16<para>This creates a
17<filename class="directory">/var/run/courier</filename> directory where
18all the <application>Courier</application> <acronym>MTA</acronym> pid
19files will exist. This will allow <filename>courierfilter.pid</filename>
20to be created. Without the <command>courierfilter</command> running the
21<application>Courier</application> MTA will not work. Issue the
22following commands to create
23<filename class="directory">/var/run/courier</filename>:</para>
24
25<screen><userinput><command>mkdir /var/run/courier &amp&amp;
26chown courier:courier /var/run/courier</command></userinput></screen>
[91c2c77d]27
28<para>Install <application>courier</application> by running the following commands:</para>
29
[7283ae5]30<screen><userinput><command>./configure --prefix=/usr --libexecdir=/usr/lib/courier \
31 --datadir=/usr/share/courier --sysconfdir=/etc/courier \
32 --localstatedir=/var/lib/courier --with-piddir=/var/run/courier \
33 --disable-root-check --with-mailuser=courier --with-mailgroup=courier \
34 --with-paranoid-smtpext --disable-autorenamesent \
35 --enable-workarounds-for-imap-client-bugs &amp;&amp;
[91c2c77d]36make &amp;&amp;
37make install &amp;&amp;
38make install-configure</command></userinput></screen>
39
40</sect2>
Note: See TracBrowser for help on using the repository browser.