I'm trying to use client certificate to authenticate to an irc server. In emacs 23, I was able to use tls-program variable to do so:
(setq tls-program '("gnutls-cli --priority secure256 --x509cafile /home/me/CAs.pem --x509certfile /home/me/nick.pem -p %p %h"))
However, the support in emacs24 is native using libgnutls and does not use external program, hence it ignores tls-program variable.
Could someone tell me, what's the alternative way to define a default client certificate in emacs 24?