Note that sslmode=require verifies the CA if root cert is present
authorMagnus Hagander
Sat, 24 Sep 2011 12:25:12 +0000 (14:25 +0200)
committerMagnus Hagander
Sat, 24 Sep 2011 12:25:12 +0000 (14:25 +0200)
This mode still exists for backwards compatibility, making
sslmode=require the same as sslmode=verify-ca when the file is present,
but not causing an error when it isn't.

Per bug 6189, reported by Srinivas Aji

doc/src/sgml/libpq.sgml

index 163a893fb96ff0a91cdf41dcbd180f702ed9477a..48689a7df23eca81e37b6da05da45f85e3614585 100644 (file)
@@ -420,7 +420,9 @@ PGconn *PQconnectdbParams(const char **keywords, const char **values, int expand
              require
              
               
-               only try an SSL connection
+               only try an SSL connection. If a root CA
+               file is present, verify the certificate in the same way as
+               if verify-ca was specified
               
              
             
@@ -6732,6 +6734,18 @@ ldap://ldap.acme.com/cn=dbserver,cn=hosts?pgconnectinfo?base?(objectclass=*)
    the connection parameters sslrootcert and sslcrl
    or the environment variables PGSSLROOTCERT and PGSSLCRL.
   
+
+  
+   
+    For backwards compatibility with earlier versions of PostgreSQL, if a
+    root CA file exists, the behavior of
+    sslmode=require will be the same
+    as that of verify-ca, meaning the sever certificate
+    is validated against the CA. Relying on this behavior is discouraged,
+    and applications that need certificate validation should always use
+    validate-ca or validate-full.
+   
+