Home › Forums › OS X Server and Client Discussion › Mail › Root Certificate Error
- This topic has 5 replies, 3 voices, and was last updated 20 years, 1 month ago by
Anonymous.
-
AuthorPosts
-
February 19, 2005 at 6:10 pm #360767
lakecoder
ParticipantHowdy,
Following the “Big SSL” article over a year ago, I bought a 1 year cert from qualityssl.com of the form secure.mydomain.com and this all works fine with Apache. I also used it to enable secure mail access. I remember doing *something* to add to the client keychains so that mail clients would no longer cry about “no root certificate for this server” type errors.
I recently renewed my 1 year cert, and now the mail clients are crying again when attempting to connect via ssl. The email clients are set to this same domain (secure.mydomain.com) as their incoming mail sever address.
Can anyone remind me what needs to be done to appease the mail clients?
Thanks!
Dave
February 21, 2005 at 3:41 pm #360785lakecoder
Participant[QUOTE BY= macshome] sudo certtool i yourcert.crt v k=/System/Library/Keychains/x509Anchors[/QUOTE]
I had previously tried that and received a response:
…certificate successfully imported.
But no change – both Apple Mail & Entourage still both complain of ‘no root cetificate’
Dave
March 5, 2005 at 3:55 pm #360899Anonymous
Guestyou need to make /etc/imapd.conf reference your cert, your key, and the ca cert from your issuing company:
tls_ca_file: /etc/certs/mydomain.com/ComodoSecurityServicesCA.crt
tls_cert_file: /etc/certs/mydomain.com/server.crt
tls_key_file: /etc/certs/mydomain.com/server.keysame goes with /etc/postfix/main.cf:
smtpd_tls_CAfile = /etc/certs/mydomain.com/ComodoSecurityServicesCA.crt
smtpd_tls_cert_file = /etc/certs/mydomain.com/server.crt
smtpd_tls_key_file = /etc/certs/mydomain.com/server.key
smtp_tls_CAfile = /etc/certs/mydomain.com/ComodoSecurityServicesCA.crt
smtp_tls_cert_file = /etc/certs/mydomain.com/server.crt
smtp_tls_key_file = /etc/certs/mydomain.com/server.keyMarch 5, 2005 at 3:55 pm #360900Anonymous
Guestyou need to make /etc/imapd.conf reference your cert, your key, and the ca cert from your issuing company:
tls_ca_file: /etc/certs/mydomain.com/ComodoSecurityServicesCA.crt
tls_cert_file: /etc/certs/mydomain.com/server.crt
tls_key_file: /etc/certs/mydomain.com/server.keysame goes with /etc/postfix/main.cf:
smtpd_tls_CAfile = /etc/certs/mydomain.com/ComodoSecurityServicesCA.crt
smtpd_tls_cert_file = /etc/certs/mydomain.com/server.crt
smtpd_tls_key_file = /etc/certs/mydomain.com/server.key
smtp_tls_CAfile = /etc/certs/mydomain.com/ComodoSecurityServicesCA.crt
smtp_tls_cert_file = /etc/certs/mydomain.com/server.crt
smtp_tls_key_file = /etc/certs/mydomain.com/server.key -
AuthorPosts
- You must be logged in to reply to this topic.
Comments are closed