[postfix] le CA de cacert a changé d'emplacement sous squeeze
Ignore-this: f4f761c37edd0640d2cb3477f8611bea darcs-hash:20111021110859-ffbb2-9133c7517f38c43c53c1a748320946891cf906e5.gz
This commit is contained in:
parent
8affda6c07
commit
75458c1c7d
1 changed files with 8 additions and 2 deletions
|
@ -177,7 +177,10 @@ if not mx:
|
||||||
@# TLS pour la reception
|
@# TLS pour la reception
|
||||||
smtpd_tls_cert_file = "/etc/ssl/certs/smtp.pem"
|
smtpd_tls_cert_file = "/etc/ssl/certs/smtp.pem"
|
||||||
smtpd_tls_key_file = "/etc/ssl/private/smtp.pem"
|
smtpd_tls_key_file = "/etc/ssl/private/smtp.pem"
|
||||||
|
if not has("squeeze"):
|
||||||
smtpd_tls_CAfile = "/etc/ssl/certs/root.pem"
|
smtpd_tls_CAfile = "/etc/ssl/certs/root.pem"
|
||||||
|
else:
|
||||||
|
smtpd_tls_CAfile = "/etc/ssl/certs/cacert.org.pem"
|
||||||
smtpd_tls_loglevel = 0
|
smtpd_tls_loglevel = 0
|
||||||
smtpd_use_tls = True
|
smtpd_use_tls = True
|
||||||
smtpd_tls_received_header = True
|
smtpd_tls_received_header = True
|
||||||
|
@ -185,7 +188,10 @@ smtpd_tls_received_header = True
|
||||||
@# On utilise aussi TLS pour envoyer les mails
|
@# On utilise aussi TLS pour envoyer les mails
|
||||||
smtp_tls_cert_file = ""
|
smtp_tls_cert_file = ""
|
||||||
smtp_tls_key_file = ""
|
smtp_tls_key_file = ""
|
||||||
|
if not has("squeeze"):
|
||||||
smtp_tls_CAfile = "/etc/ssl/certs/root.pem"
|
smtp_tls_CAfile = "/etc/ssl/certs/root.pem"
|
||||||
|
else:
|
||||||
|
smtp_tls_CAfile = "/etc/ssl/certs/cacert.org.pem"
|
||||||
smtp_tls_loglevel = 1
|
smtp_tls_loglevel = 1
|
||||||
smtp_use_tls = True
|
smtp_use_tls = True
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue