Sublime Text 2의 기본 한글 폰트는 보기에 좋지 않다. 한글 폰트를 나눔코딩폰트로 변경하려면 메뉴에서 Preferences > Settings – User 클릭한 다음 font_face를 설정하면 된다.
font_face를 설정하고 저장한 다음 한글 파일을 읽으면 다음처럼 보인다.
I go where the wind takes me
Sublime Text 2의 기본 한글 폰트는 보기에 좋지 않다. 한글 폰트를 나눔코딩폰트로 변경하려면 메뉴에서 Preferences > Settings – User 클릭한 다음 font_face를 설정하면 된다.
font_face를 설정하고 저장한 다음 한글 파일을 읽으면 다음처럼 보인다.
CentOS 5에 yum으로 설치가능한 Exim 버전은 4.63이다. 4.63은 DKIM을 지원하지 않으므로 DKIM을 사용하기 위해서는 상위 버전을 설치해야 한다.
[atrpms-stable]
name=Centos $releasever – $basearch – ATrpms
baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1
enabled=1
includepkgs=libspf2* libsrs*[atrpms-testing]
name=Centos $releasever – $basearch – ATrpms
baseurl=http://dl.atrpms.net/el$releasever-$basearch/atrpms/testing
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1
enabled=1
includepkgs=exim*
yum install exim
DKIM_DOMAIN = ${lc:${domain:$h_from:}}
DKIM_FILE = /etc/exim/dkim/${lc:${domain:$h_from:}}.pem
DKIM_PRIVATE_KEY = ${if exists{DKIM_FILE}{DKIM_FILE}{0}}
remote_smtp:
driver = smtp
dkim_domain = DKIM_DOMAIN
dkim_selector = mail
dkim_private_key = DKIM_PRIVATE_KEY
dkim_canon = relaxed
dkim_strict = 0
$ mkdir /etc/exim/dkim/ && cd /etc/exim/dkim/
$ openssl genrsa -out example.com.pem 768
$ openssl rsa -in example.com.pem -out example.com-public.pem -pubout -outform PEM
t=y는 테스트 중임을 의미. 테스트가 끝나면 삭제해야 한다.
$ dig +short txt x._domainkey.example.com
“v=DKIM1\; k=rsa\; p=MIGfMA0AQAB”
Authentication-Results: mx.google.com; spf=neutral (google.com: ….., dkim=pass (test mode) header.i=@example.com
ASP에서 FileSystemObject를 이용해서 UTF-8 파일을 읽으면 글자가 깨진다. ASCII나 유니코드(UCS-2) 파일이 아닌 경우는 FileSystemObject로 파일을 읽을 수 없다.
ASP에서 UTF-8 파일을 읽거나 쓸 때 다음 함수를 이용하면 유용한다.
Function ReadUTF8File(sFileName) Dim Stream, TextBuffer Set Stream = Server.CreateObject("ADODB.Stream") With Stream .Charset = "utf-8" .Type = 2 'adTypeText .Open .LoadFromFile sFileName .Position = 0 ReadUTF8File = .ReadText .Close End With Set Stream = Nothing End Function Function WriteUTF8File(sFileName, sText) Dim Stream Set Stream = Server.CreateObject("ADODB.Stream") With Stream .Charset = "utf-8" .Type = 2 'adTypeText .Open .WriteText sText .SaveToFile sFileName, 2 'adSaveCreateOverWrite .Close End With Set Stream = Nothing End Function