blob: 31874c585b68730d39dedb4e06309d5c600c5573 [file] [log] [blame]
Chetan Gaonker7f4bf742016-05-04 15:56:08 -07001# -*- text -*-
2#
3# $Id: 534054077d52a7bb0bf8e02c1e861e5c86b76df9 $
4
5#
6# Internationalised domain names.
7#
8
9# The expansion string: %{idn: example.com} results in an ASCII
10# punycode version of the domain name. That version can then be used
11# for name comparisons. Using an i18n version of the name is NOT
12# RECOMMENDED, as that version is not canonical.
13#
14# i.e. the "same" domain name can be represented in many, many,
15# different ways. Only the idn version has *one* representation.
16#
17idn {
18 #
19 # Allow use of unassigned Unicode code points.
20 #
21 allow_unassigned = no
22
23 #
24 # Prohibit underscores and other invalid characters in domain
25 # names.
26 use_std3_ascii_rules = yes
27
28}