diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-10-10 13:28:31 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-10-10 13:28:31 +0100 |
commit | 98568161b387b691277b4992d51467368e8ce1ce (patch) | |
tree | 8e4e8210ad540ccc728877d615bf35121ab380a6 | |
parent | 189c7c80c9e56d09d8dd441a924d687aa2b9ed5e (diff) |
Document workaround for elinks/UTF8 encoding issues (see issue #128)
-rw-r--r-- | doc/INSTALL.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/INSTALL.md b/doc/INSTALL.md index 656b96467..bb8c7de21 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -266,3 +266,16 @@ is supplied in `../conf/varnish-alaveteli.vcl`. Did you remember to remove the file `alaveteli/config/rails_env.rb` as described above? It's created every time you run `script/rails-post-deploy` + +* **Non-ASCII characters are being displayed as asterisks in my incoming messages** + + We rely on `elinks` to convert HTML email to plain text. + Normally, the encoding should just work, but under some + circumstances it appears that `elinks` ignores the parameters + passed to it from Alaveteli. + + To force `elinks` always to treat input as UTF8, add the following + to `/etc/elinks/elinks.conf`: + + set document.codepage.assume = "utf-8" + |