Monthly Archives December 2005

"syntactically invalid argument" of exim

http://directadmin.com/forum/showthread.php?s=e9a9bcfca7acd05a6cc4169292e9ea9f&threadid=2931
http://www.nobaloney.net/downloads/spamblocker/DirectAdmin/exim.conf.spamblocked

# ALLOW UNDERSCORE IN EMAIL DOMAIN NAME # domains shouldn’t use the underscore character “_” but some # may. Because John Postel, one of the architects of the Internet, # said “Be liberal in what you accept and conservative in what you # transmit, we choose to allow underscore in email domain names so […]

reading utf-8 file in Python

import codecs
fp = codecs.open(fileName, "r", "utf-8")
fp.read()
* http://evanjones.ca/python-utf8.html
* http://www.jorendorff.com/articles/unicode/python.html

Share This

Close
E-mail It