Changeset b785ab29 for server/mail


Ignore:
Timestamp:
06/05/2005 09:06:40 PM (19 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
fc290c7
Parents:
0efab06
Message:

Integrated system uid and gid values

into individual packages.

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

Location:
server/mail
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • server/mail/courier.xml

    r0efab06 rb785ab29  
    9595    group with the following commands:</para>
    9696
    97 <screen role="root"><userinput>groupadd courier &amp;&amp;
     97<screen role="root"><userinput>groupadd -g 30 courier &amp;&amp;
    9898useradd -c 'Courier Mail Server' -d /dev/null \
    99         -g courier -s /bin/false courier</userinput></screen>
     99        -g courier -s /bin/false -u 30 courier</userinput></screen>
    100100
    101101    <para>The install script also expects a <systemitem
     
    459459      <para>Create a virtual mailman user and group:</para>
    460460
    461 <screen role="root"><userinput>groupadd -g 9000 vmailman &amp;&amp;
    462 useradd -c 'Virtual Mailman' -g vmailman -m -k /dev/null -u 9000 vmailman</userinput></screen>
     461<screen role="root"><userinput>groupadd -g 35 vmailman &amp;&amp;
     462useradd -c 'Virtual Mailman' -g vmailman -m -k /dev/null -u 35 vmailman</userinput></screen>
    463463
    464464      <para>Create a mail directory for a new virtual user:</para>
  • server/mail/exim.xml

    r0efab06 rb785ab29  
    9292    will run the <command>exim</command> daemon:</para>
    9393
    94 <screen role="root"><userinput>groupadd exim &amp;&amp;
    95 useradd -d /dev/null -c "Exim Daemon" -g exim -s /bin/false exim</userinput></screen>
     94<screen role="root"><userinput>groupadd -g 31 exim &amp;&amp;
     95useradd -d /dev/null -c "Exim Daemon" -g exim -s /bin/false -u 31 exim</userinput></screen>
    9696
    9797    <para>If you have <application>Berkeley DB</application>
  • server/mail/sendmail.xml

    r0efab06 rb785ab29  
    7979    <systemitem class="username">root</systemitem> user:</para>
    8080
    81 <screen role="root"><userinput>groupadd smmsp &amp;&amp;
    82 groupadd mail &amp;&amp;
     81<screen role="root"><userinput>groupadd -g 26 smmsp &amp;&amp;
     82groupadd -g 34 mail &amp;&amp;
    8383useradd -c "Sendmail Daemon" -g smmsp -G mail \
    84         -d /dev/null -s /bin/false smmsp &amp;&amp;
     84        -d /dev/null -s /bin/false -u 26 smmsp &amp;&amp;
    8585chmod -v 1777 /var/mail &amp;&amp;
    8686install -v -m700 -d /var/spool/mqueue</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.