Gentoo Archives: gentoo-commits

From: "Tobias Heinlein (keytoaster)" <keytoaster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/doc/de: virt-mail-howto.xml
Date: Sun, 03 Aug 2008 23:37:35
Message-Id: E1KPn8k-0007K7-Pn@stork.gentoo.org
1 keytoaster 08/08/03 23:37:30
2
3 Modified: virt-mail-howto.xml
4 Log:
5 -> 1.59
6
7 Revision Changes Path
8 1.23 xml/htdocs/doc/de/virt-mail-howto.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/virt-mail-howto.xml?rev=1.23&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/virt-mail-howto.xml?rev=1.23&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/de/virt-mail-howto.xml?r1=1.22&r2=1.23
13
14 Index: virt-mail-howto.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/de/virt-mail-howto.xml,v
17 retrieving revision 1.22
18 retrieving revision 1.23
19 diff -u -r1.22 -r1.23
20 --- virt-mail-howto.xml 11 Sep 2007 21:39:20 -0000 1.22
21 +++ virt-mail-howto.xml 3 Aug 2008 23:37:30 -0000 1.23
22 @@ -3,7 +3,7 @@
23
24 <!-- English CVS Version: 1.58 -->
25
26 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/virt-mail-howto.xml,v 1.22 2007/09/11 21:39:20 keytoaster Exp $ -->
27 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/de/virt-mail-howto.xml,v 1.23 2008/08/03 23:37:30 keytoaster Exp $ -->
28
29 <guide link="/doc/de/virt-mail-howto.xml" lang="de">
30 <title>Leitfaden zum virtuellen Mailhosting System mit Postfix</title>
31 @@ -371,9 +371,9 @@
32 nicht in der Lage sein zu authentifizieren.)</comment>
33
34 smtpd_recipient_restrictions =
35 - permit_sasl_authenticated,
36 - permit_mynetworks,
37 - reject_unauth_destination
38 + permit_sasl_authenticated,
39 + permit_mynetworks,
40 + reject_unauth_destination
41
42 <comment>(Die nächsten zwei Optionen aktivieren ausgehende Verschlüsselung.)</comment>
43 smtp_use_tls = yes
44 @@ -497,12 +497,11 @@
45 # <i>/etc/init.d/mysql start</i>
46 # <i>mysqladmin -u root -p create mailsql</i>
47 # <i>mysql -u root -p mailsql &lt; genericmailsql.sql</i>
48 -
49 # <i>mysql -u root -p mysql</i>
50 mysql> <i>GRANT SELECT,INSERT,UPDATE,DELETE</i>
51 - -> <i>ON mailsql.*</i>
52 - -> <i>TO mailsql@localhost</i>
53 - -> <i>IDENTIFIED BY '$password';</i>
54 + -> <i>ON mailsql.*</i>
55 + -> <i>TO mailsql@localhost</i>
56 + -> <i>IDENTIFIED BY '$password';</i>
57 Query OK, 0 rows affected (0.02 sec)
58
59 mysql> <i>FLUSH PRIVILEGES;</i>
60 @@ -532,9 +531,9 @@
61
62
63 <pre caption="Beispieleinträge für die Tabelle alias" >
64 -id alias destination
65 -1 root foo@×××.com
66 -2 postmaster foo@×××.com
67 +id alias destination
68 +1 root foo@×××.com
69 +2 postmaster foo@×××.com
70 </pre>
71
72 <pre caption="Benutzer-Beispielstabelle" >
73 @@ -554,14 +553,14 @@
74
75
76 <pre caption="Beispieleinträge für die Tabelle transport" >
77 -id domain destination
78 -1 bar.com local:
79 +id domain destination
80 +1 bar.com local:
81 2 virt-domain.com virtual:
82 </pre>
83
84 <pre caption="Beispieleinträge für die Tabelle virtual" >
85 -id email destination
86 -3 root@×××××××××××.com other@×××××.address
87 +id email destination
88 +3 root@×××××××××××.com other@×××××.address
89 </pre>
90
91 </body>
92 @@ -727,39 +726,39 @@
93 # <i>nano -w /etc/postfix/mysql-aliases.cf</i>
94 # mysql-aliases.cf
95
96 -user = mailsql
97 -password = $password
98 -dbname = mailsql
99 -table = alias
100 -select_field = destination
101 -where_field = alias
102 -hosts = unix:/var/run/mysqld/mysqld.sock
103 +user = mailsql
104 +password = $password
105 +dbname = mailsql
106 +table = alias
107 +select_field = destination
108 +where_field = alias
109 +hosts = unix:/var/run/mysqld/mysqld.sock
110 </pre>
111
112 <pre caption="/etc/postfix/mysql-relocated.cf" >
113 # <i>nano -w /etc/postfix/mysql-relocated.cf</i>
114 # mysql-relocated.cf
115
116 -user = mailsql
117 -password = $password
118 -dbname = mailsql
119 -table = relocated
120 -select_field = destination
121 -where_field = email
122 -hosts = unix:/var/run/mysqld/mysqld.sock
123 +user = mailsql
124 +password = $password
125 +dbname = mailsql
126 +table = relocated
127 +select_field = destination
128 +where_field = email
129 +hosts = unix:/var/run/mysqld/mysqld.sock
130 </pre>
131
132 <pre caption="/etc/postfix/mysql-transport.cf (optional)" >
133 # <i>nano -w /etc/postfix/mysql-transport.cf</i>
134 # mysql-transport.cf
135
136 -user = mailsql
137 -password = $password
138 -dbname = mailsql
139 -table = transport
140 -select_field = destination
141 -where_field = domain
142 -hosts = unix:/var/run/mysqld/mysqld.sock
143 +user = mailsql
144 +password = $password
145 +dbname = mailsql
146 +table = transport
147 +select_field = destination
148 +where_field = domain
149 +hosts = unix:/var/run/mysqld/mysqld.sock
150 </pre>
151
152 <pre caption="/etc/postfix/mysql-virtual-gid.cf (optional)" >