Domainkeys and DKIM help ?

Kooistra

New member
Joined
Apr 2, 2010
Messages
2
Hello,

Does anybody has a tutorial how to install Domainkeys and DKIM ?
(Exim, centos 5.3).

thank you
 
I am trying to compile exim with domainkey support;

Everything seem ok but when i try to restart exim it returns;

Starting exim: Exim configuration error in line 835 of /etc/exim.conf:
option "dk_selector" unknown

My Local/MakeFile is;

EXPERIMENTAL_DOMAINKEYS=yes
CFLAGS += -I/usr/local/include
LDFLAGS += -ldomainkeys -L/usr/local/lib

My exim.conf includes;

remote_smtp:
driver = smtp
dk_selector = myselector
dk_private_key = /usr/local/src/dk/rsa.private
dk_canon = nofws

Any ideas?
 
I believe there's another thread on the forums in the past few days with the same question.

Is the sourcecode for a version of exim specifically prepared for DKIM support? Where did the source come from? Where did the exim.conf file come from?

Jeff
 
in the exim.conf add this
remote_smtp:
driver = smtp
dkim_selector = myselector
dkim_private_key = /usr/local/src/dk/rsa.private
dkim_canon = nofws
 
Back
Top