Ignore:
Timestamp:
04/11/2004 12:14:37 AM (20 years ago)
Author:
Igor Živković <igor@…>
Branches:
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
Children:
9262ca5
Parents:
4dbc3f7a
Message:

updated to courier-0.45.4

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/mail/courier/courier-inst.xml

    r4dbc3f7a r7283ae5  
    99useradd -c 'Courier Mail Server' -d /dev/null -g courier -s /bin/false courier</command></userinput></screen>
    1010
     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>
    1127
    1228<para>Install <application>courier</application> by running the following commands:</para>
    1329
    14 <screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc/courier --with-piddir=/var/run \
    15 --libexecdir=/usr/lib/courier  --datadir=/usr/share/courier \
    16 --localstatedir=/var/lib/courier --disable-root-check --with-db=gdbm \
    17 --with-paranoid-smtpext --disable-autorenamesent \
    18 --with-mailuser=courier --with-mailgroup=courier \
    19 --enable-workarounds-for-imap-client-bugs \
    20 --with-ispell=/usr/bin/aspell --enable-mimetypes=/etc/apache/mime.types &amp;&amp;
     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;
    2136make &amp;&amp;
    2237make install &amp;&amp;
    2338make install-configure</command></userinput></screen>
    2439
    25 <!-- # Note - You may receive an error saying that the mime.types file
    26 could not be found.  This can easily be corrected by changing
    27 -enable-mimetypes=(location of mime.types file)  -->
    28 
    29 
    3040</sect2>
    31 
Note: See TracChangeset for help on using the changeset viewer.