home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120423.etc.tar.gz / bradford.20120423.etc.tar / etc / idn.conf < prev    next >
Text File  |  2009-08-04  |  2KB  |  62 lines

  1. # $Id: idn.conf.sample.in,v 1.1.1.1 2003/06/04 00:26:45 marka Exp $
  2. #
  3. # Sample file for idnkit configuration file (idn.conf).
  4. #
  5.  
  6. #
  7. # `idn-encoding' entry specifies the encoding name used as the encoding
  8. # of multilingualized names by resolvers and DNS servers.  Currently, the
  9. # following encodings are available:
  10. #
  11. #    Punycode
  12. #    UTF-8
  13. #    <codeset names your iconv_open() accepts>
  14. #
  15. # If you enabled extra ace feature, following IDN encoding can be used.
  16. #
  17. #    AMC-ACE-Z (old name of Punycode)
  18. #    RACE
  19. #
  20. # syntax)
  21. #    idn-encoding <encoding>
  22. #
  23. idn-encoding Punycode
  24.  
  25. #
  26. # `nameprep' entry specifies the version of NAMEPREP.
  27. # idnkit currently supports the following version:
  28. #
  29. #    RFC3491            -- name preparation scheme described in the
  30. #                   RFC3491
  31. #
  32. # syntax)
  33. #    nameprep <nameprep version>
  34. #
  35. nameprep RFC3491
  36.  
  37. #
  38. # `local-map' entry specifies TLD (top level domain) based local mapping
  39. # schemes, which is performed before NAMEPREP.  Available schemes are:
  40. #    <nameprep version>      -- nameprep version
  41. #    filemap:<pathname>      -- read mapping rules from a file
  42. #
  43. # syntax)
  44. #    local-map <tld> <scheme> ...
  45. #
  46. # If the TLD of the domain name matches <tld>, local mapping specified
  47. # by <scheme> is performed on the name.  Otherwise no mapping are
  48. # performed.  Multiple schemes can be specified; they are applied in
  49. # turn.
  50. #
  51. # There are two special <tld>s for specifying a default mapping rule
  52. # and a mapping rule for local names (domain names containing no
  53. # dots).  If <tld> is `.', its schemes are applied to domain names
  54. # whose TLD does not match any TLDs specified in local-map entries.
  55. # If <tld> is `-', its schemes are applied to domain names which
  56. # contain no dots.
  57. #local-map -    filemap:/some/where/local.map
  58. #local-map .    filemap:/some/where/default.map
  59. local-map .jp    filemap:/bsc/services/named/share/idnkit/jp.map
  60.