This document summarizes synchronous log shipping replication in PostgreSQL. It works by sending WAL entries from the active server to the standby before transactions commit, ensuring no data loss on failover. This is an improvement over warm standby servers which could lose the last WAL segment if the active crashes during archiving. The document compares this approach to other replication solutions and discusses its use for high availability of teleconference software.