Ignore:
Timestamp:
09/28/2003 09:08:03 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
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_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
f0334b2
Parents:
36ae4612
Message:

glossary update

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

File:
1 edited

Legend:

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

    r36ae4612 r971ca3d  
    6262<para>This command will create the mysql database for authentication:</para>
    6363
    64 <screen><userinput><command>mysqladmin -uroot -p{password} create courier-mail</command></userinput></screen>
     64<screen><userinput><command>mysqladmin -uroot -p<replaceable>[password]</replaceable> create courier-mail</command></userinput></screen>
    6565
    6666<para>This command will setup the table users for the courier-mail
    6767database:</para>
    6868
    69 <screen><userinput><command>mysql -uroot -p{password} courier-mail
     69<screen><userinput><command>mysql -uroot -p<replaceable>[password]</replaceable> courier-mail
    7070
    7171        CREATE TABLE users (
     
    8484authmysql file:</para>
    8585
    86 <screen><userinput><command>mysql -uroot -p{password} mysql
    87 
    88 grant all privileges on *.* to courier@localhost identified by '{password}' with grant option;</command></userinput></screen>
     86<screen><userinput><command>mysql -uroot -p<replaceable>[password]</replaceable> mysql
     87
     88grant all privileges on *.* to courier@localhost identified by '<replaceable>[password]</replaceable>' with grant option;</command></userinput></screen>
    8989
    9090
     
    9797
    9898<screen><userinput><command>cat &gt; /etc/courier/defaultdomain &lt;&lt; "EOF"</command>
    99 {yourdomain}
     99<replaceable>[yourdomain]</replaceable>
    100100<command>EOF</command></userinput></screen>
    101101
     
    125125<para><filename>/etc/courier/aliases/system</filename></para>
    126126
    127 <screen><userinput>postmaster: {your adminstrator email}</userinput></screen>
     127<screen><userinput>postmaster: <replaceable>[your adminstrator email]</replaceable></userinput></screen>
    128128
    129129<para>If you want to deny access from some hosts from sending mail you
     
    173173<para><filename>/etc/courier/imapd</filename></para>
    174174
     175
    175176<screen><userinput>IMAPDSTART=YES</userinput></screen>
    176177
     
    185186your system users.</para>
    186187
    187 <screen><userinput><command>cd /home/{username}
     188<screen><userinput><command>cd /home/<replaceable>[username]</replaceable>
    188189maildirmake Maildir
    189 chown {username}.{username} Maildir -R</command></userinput></screen>
     190chown <replaceable>[username]</replaceable>.<replaceable>[username]</replaceable> Maildir -R</command></userinput></screen>
    190191
    191192<para><emphasis>Setup for Virtual users</emphasis></para>
     
    200201
    201202<screen><userinput><command>cd /home/vmailman
    202 mkdir {virtual_user}
    203 cd {virtual_user}
     203mkdir <replaceable>[virtual_user]</replaceable>
     204cd <replaceable>[virtual_user]</replaceable>
    204205maildirmake Maildir
    205206chown vmailman.vmailman Maildir -R</command></userinput></screen>
     
    208209least on version of the password either clear text or encrypted.</para>
    209210
    210 <screen><userinput><command>mysql -ucourier -p{password} courier-mail
    211 
    212 insert into users values('{virtual_users}@{domain.com},
    213 '{encrypted password or blank}','{clear text password or blank}',
    214 '{User's Name}',9000,9000,'{location of Maildir}','{Quota in Bytes'});</command></userinput></screen>
     211<screen><userinput><command>mysql -ucourier -p<replaceable>[password]</replaceable> courier-mail
     212
     213insert into users values('<replaceable>[virtual_users]</replaceable>@<replaceable>[domain.com]</replaceable>,
     214'<replaceable>[encrypted password or blank]</replaceable>','<replaceable>[clear text password or blank]</replaceable>',
     215'<replaceable>[User's Name]</replaceable>',9000,9000,'<replaceable>[location of Maildir]</replaceable>','<replaceable>[Quota in Bytes']</replaceable>);</command></userinput></screen>
    215216
    216217<para>example</para>
     
    253254
    254255<screen><userinput><command>cat &gt; /etc/courier/webadmin/password &lt;&lt; "EOF"</command>
    255 {password}
     256<replaceable>[password]</replaceable>
    256257<command>EOF</command></userinput></screen>
    257258
Note: See TracChangeset for help on using the changeset viewer.