summaryrefslogtreecommitdiff
path: root/fml/doc/en/tutorial/internals/language.sgml
blob: 439518f4d2848df66d1087660ca5f0291d946e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!--
   $FML: language.sgml,v 1.1 2005/07/27 12:21:36 fukachan Exp $
-->


<chapter id="language.preference">
	<title>
	Language Preference In Processing
	</title>


<sect1 id="language.preference.overview">
	<title>
	Problems Of Language Preference
	</title>

<para>
The simplest model is that we suppose we should return the japanese
message when the ML is configured as for Japanese.
This model needs that the language of a ML is fixed.
This ML always returns the error message in Japanese.
</para>

<para>
However, it is not proper to ignore Accept-Language: header field
since some Japanese people cannot read Japanese on the screen.
There may be invalid Accept-Language: field.
There are several problems.
</para>

<para>
For example, if "Accept-Language: ja" is given, we can recognize the
language is "ja".  However, how about the case Japanese send a mail
with the body content "help" (English) ? In that case we cannot
determine we should return the reply in us-ascii or iso-2022-jp.
For example, how about the following example ?
<screen>
[Example]

From: rudo@example.co.jp
Subject: help
mime-version: 1.0
content-type: text/plain; charset=us-ascii 

help
</screen>
</para>

<para>
We should return the English reply message based on charset
information since this message contains English only, so charset is
us-ascii. But in this case we should return Japanese message since the
sender is a Japanese.  So we should return the help message in both
English and Japanese if the ML is configured as Japanese
preferrable. If English is preferrable, the reply is English only.
</para>

<para>
If Accept-Lanaguage: is specified, we prefer it. Even if the ML is
English preferrable (config: language_preference_order = en) and the
message with "Accept-Lanaguage: ja" is given, the ML returns the
Japanese help message.
&fml8; behaves like it.
</para>

</sect1>


<sect1 id="language.preference.ml.ja">
	<title>
	Japanese Preferred ML
	</title>

<para>
language_preference_order variable controls the behaviour.
By default, an ML for Japanese is configured as 
<screen>
language_preference_order	=	ja en
</screen>
&fml8; uses this hint.
</para>


<sect2>
	<title>
	Accept-Language: ja, en
	</title>

<para>
&fml8; returns the message only in Japanese.
</para>

</sect2>


<sect2>
	<title>
	Accept-Language: en
	</title>

<para>
&fml8; returns the message only in English.
</para>

</sect2>


<sect2>
	<title>
	no Accept-Language:,  Content-Type: charset=iso-2022-jp
	</title>

<para>
&fml8; returns the message only in Japanese.
</para>

</sect2>


<sect2>
	<title>
	no Accept-Language:, Content-Type: charset=us-ascii
	</title>

<para>
We cannot determine the language.
We should return the message in both English and Japanese.
</para>

</sect2>


<sect2>
	<title>
	no Accept-Language:,  no Content-Type:
	</title>

<para>
We cannot determine the language.
We should return the message in both English and Japanese.
</para>

</sect2>

</sect1>


<sect1 id="language.preference.ml.en">
	<title>
	English preferred ML
	</title>

<para>
By default, a  ML for English people is configured as
<screen>
language_preference_order	=	en
</screen>
&fml8; uses this hints.
</para>


<sect2>
	<title>
	Accept-Language: ja, en
	</title>

<para>
&fml8; returns the message only in Japanese.
</para>

</sect2>


<sect2>
	<title>
	Accept-Language: en
	</title>

<para>
&fml8; returns the message only in English.
</para>

</sect2>


<sect2>
	<title>
	no Accept-Language:, Content-Type: charset=iso-2022-jp
	</title>

<para>
&fml8; returns the message only in Japanese.
</para>

</sect2>


<sect2>
	<title>
	no Accept-Language:, Content-Type: charset=us-ascii
	</title>

<para>
&fml8; returns the message only in English.
</para>

</sect2>


<sect2>
	<title>
	no Accept-Language:, no Content-Type:
	</title>

<para>
&fml8; returns the message only in English.
</para>

</sect2>

</sect1>


</chapter>