From: Ivan Rako Date: Fri, 27 Apr 2012 15:19:23 +0000 (+0200) Subject: koristi se smtp_tls_security_level i smtpd_tls_security_level X-Git-Tag: debian/2.7.1-4^0 X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=postfix-cn.git;a=commitdiff_plain;h=5909c786ea7496fa35ea3f2d746311d8b98ca8a5 koristi se smtp_tls_security_level i smtpd_tls_security_level --- diff --git a/debian/changelog b/debian/changelog index 78ddfca..b612281 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +postfix-cn (2.7.1-4) stable; urgency=medium + + * Koristi se smtp_tls_security_level i smtpd_tls_security_level umjesto + zastarjelih smtp_use_tls i smtpd_use_tls + + -- Ivan Rako Fri, 27 Apr 2012 17:18:08 +0200 + postfix-cn (2.7.1-3) stable; urgency=medium * Jos sitnih izmjena u postinstu vezanih uz TLS diff --git a/debian/postinst b/debian/postinst index dd617e1..eefbed2 100755 --- a/debian/postinst +++ b/debian/postinst @@ -248,10 +248,10 @@ if [ "$restart_saslauthd" = "yes" ]; then fi # TLS stuff -postconf -e smtp_use_tls="yes" +postconf -e smtp_tls_security_level="may" postconf -e smtp_tls_session_cache_database="sdbm:/var/lib/postfix/smtp_scache" postconf -e smtp_tls_session_cache_timeout="3600s" -postconf -e smtpd_use_tls="yes" +postconf -e smtpd_tls_security_level="may" postconf -e smtpd_tls_session_cache_database="sdbm:/var/lib/postfix/smtpd_scache" postconf -e smtpd_tls_session_cache_timeout="3600s" postconf -e tls_random_source="dev:/dev/urandom"