File: UNICODE.TXT

package info (click to toggle)
sanitizer 1.76-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 940 kB
  • ctags: 184
  • sloc: perl: 5,276; sh: 2,107; makefile: 51
file content (25 lines) | stat: -rw-r--r-- 823 bytes parent folder | download | duplicates (6)
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
IMPORTANT NOTE ABOUT UNICODE/UTF8
---------------------------------

Recent versions of Perl (e.g. those distributed with RedHat 8 and
RedHat 9) include native support for Unicode, including UTF-8
encoded strings and input files.

This has changed the default semantics of many operations used by
the Anomy Sanitizer and may also effect how the Anomy source files
themselves (which contain 8-bit characters) are interpreted by Perl.

In order to avoid this behavior, it's necessary to modify the "LANG"
environment variable before running the Sanitizer.  It is also
recommended that the "LC_ALL" variable be explicitly set as well.

In bash syntax, the modification should be as follows:

  export LC_ALL=C
  export LANG=en_US

From within a procmailrc file, the following lines should suffice:

  LC_ALL=C
  LANG=en_US