# tlsmgr(8postfix) - man - phpman

[TLSMGR(8postfix)](https://www.chedong.com/phpMan.php/man/TLSMGR/8postfix/markdown)                                                                    [TLSMGR(8postfix)](https://www.chedong.com/phpMan.php/man/TLSMGR/8postfix/markdown)



## NAME
       tlsmgr - Postfix TLS session cache and PRNG manager

## SYNOPSIS
       **tlsmgr** [generic Postfix daemon options]

## DESCRIPTION
       The  [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) manages the Postfix TLS session caches.  It stores and retrieves cache entries
       on request by [**smtpd**(8)](https://www.chedong.com/phpMan.php/man/smtpd/8/markdown) and [**smtp**(8)](https://www.chedong.com/phpMan.php/man/smtp/8/markdown) processes, and periodically removes entries that have  ex‐
       pired.

       The [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) also manages the PRNG (pseudo random number generator) pool. It answers queries
       by the [**smtpd**(8)](https://www.chedong.com/phpMan.php/man/smtpd/8/markdown) and [**smtp**(8)](https://www.chedong.com/phpMan.php/man/smtp/8/markdown) processes to seed their internal PRNG pools.

       The [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown)'s PRNG pool is initially seeded from an external source (EGD, /dev/urandom,  or
       regular  file).  It is updated at configurable pseudo-random intervals with data from the ex‐
       ternal source. It is updated periodically with data from TLS session cache entries  and  with
       the  time  of  day, and is updated with the time of day whenever a process requests [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown)
       service.

       The [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) saves the PRNG state to an exchange file periodically and when the process ter‐
       minates, and reads the exchange file when initializing its PRNG.

## SECURITY
       The  [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown)  is  not security-sensitive. The code that maintains the external and internal
       PRNG pools does not "trust" the data that it manipulates, and the code that maintains the TLS
       session  cache  does not touch the contents of the cached entries, except for seeding its in‐
       ternal PRNG pool.

       The [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) can be run chrooted and with reduced privileges.  At process  startup  it  con‐
       nects to the entropy source and exchange file, and creates or truncates the optional TLS ses‐
       sion cache files.

       With Postfix version 2.5 and later, the [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) no longer uses root privileges when opening
       cache  files.  These files should now be stored under the Postfix-owned **data**___**directory**.  As a
       migration aid, an attempt to open a cache file under a non-Postfix directory is redirected to
       the Postfix-owned **data**___**directory**, and a warning is logged.

## DIAGNOSTICS
       Problems and transactions are logged to [**syslogd**(8)](https://www.chedong.com/phpMan.php/man/syslogd/8/markdown) or [**postlogd**(8)](https://www.chedong.com/phpMan.php/man/postlogd/8/markdown).

## BUGS
       There  is  no automatic means to limit the number of entries in the TLS session caches and/or
       the size of the TLS cache files.

## CONFIGURATION PARAMETERS
       Changes to **main.cf** are not picked up automatically, because [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) is  a  persistent  pro‐
       cesses.  Use the command "**postfix** **reload**" after a configuration change.

       The  text below provides only a parameter summary. See [**postconf**(5)](https://www.chedong.com/phpMan.php/man/postconf/5/markdown) for more details including
       examples.

## TLS SESSION CACHE
       **lmtp**___**tls**___**loglevel** **(0)**
              The LMTP-specific version of the smtp_tls_loglevel configuration parameter.

       **lmtp**___**tls**___**session**___**cache**___**database** **(empty)**
              The LMTP-specific version of the smtp_tls_session_cache_database configuration parame‐
              ter.

       **lmtp**___**tls**___**session**___**cache**___**timeout** **(3600s)**
              The  LMTP-specific version of the smtp_tls_session_cache_timeout configuration parame‐
              ter.

       **smtp**___**tls**___**loglevel** **(0)**
              Enable additional Postfix SMTP client logging of TLS activity.

       **smtp**___**tls**___**session**___**cache**___**database** **(empty)**
              Name of the file containing the optional Postfix SMTP client TLS session cache.

       **smtp**___**tls**___**session**___**cache**___**timeout** **(3600s)**
              The expiration time of Postfix SMTP client TLS session cache information.

       **smtpd**___**tls**___**loglevel** **(0)**
              Enable additional Postfix SMTP server logging of TLS activity.

       **smtpd**___**tls**___**session**___**cache**___**database** **(empty)**
              Name of the file containing the optional Postfix SMTP server TLS session cache.

       **smtpd**___**tls**___**session**___**cache**___**timeout** **(3600s)**
              The expiration time of Postfix SMTP server TLS session cache information.

## PSEUDO RANDOM NUMBER GENERATOR
       **tls**___**random**___**source** **(see** **'postconf** **-d'** **output)**
              The external entropy source for the in-memory [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) pseudo random number generator
              (PRNG) pool.

       **tls**___**random**___**bytes** **(32)**
              The  number of bytes that [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) reads from $tls_random_source when (re)seeding the
              in-memory pseudo random number generator (PRNG) pool.

       **tls**___**random**___**exchange**___**name** **(see** **'postconf** **-d'** **output)**
              Name of the pseudo random number generator (PRNG) state file  that  is  maintained  by
              [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown).

       **tls**___**random**___**prng**___**update**___**period** **(3600s)**
              The  time  between attempts by [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) to save the state of the pseudo random number
              generator (PRNG) to the file specified with $tls_random_exchange_name.

       **tls**___**random**___**reseed**___**period** **(3600s)**
              The maximal time between attempts by [**tlsmgr**(8)](https://www.chedong.com/phpMan.php/man/tlsmgr/8/markdown) to re-seed the in-memory pseudo  random
              number generator (PRNG) pool from external sources.

## MISCELLANEOUS CONTROLS
       **config**___**directory** **(see** **'postconf** **-d'** **output)**
              The default location of the Postfix main.cf and master.cf configuration files.

       **data**___**directory** **(see** **'postconf** **-d'** **output)**
              The  directory  with  Postfix-writable  data files (for example: caches, pseudo-random
              numbers).

       **daemon**___**timeout** **(18000s)**
              How much time a Postfix daemon process may take to handle a request before it is  ter‐
              minated by a built-in watchdog timer.

       **process**___**id** **(read-only)**
              The process ID of a Postfix command or daemon process.

       **process**___**name** **(read-only)**
              The process name of a Postfix command or daemon process.

       **syslog**___**facility** **(mail)**
              The syslog facility of Postfix logging.

       **syslog**___**name** **(see** **'postconf** **-d'** **output)**
              A  prefix  that is prepended to the process name in syslog records, so that, for exam‐
              ple, "smtpd" becomes "prefix/smtpd".

       Available in Postfix 3.3 and later:

       **service**___**name** **(read-only)**
              The master.cf service name of a Postfix daemon process.

## SEE ALSO
       [smtp(8)](https://www.chedong.com/phpMan.php/man/smtp/8/markdown), Postfix SMTP client
       [smtpd(8)](https://www.chedong.com/phpMan.php/man/smtpd/8/markdown), Postfix SMTP server
       [postconf(5)](https://www.chedong.com/phpMan.php/man/postconf/5/markdown), configuration parameters
       [master(5)](https://www.chedong.com/phpMan.php/man/master/5/markdown), generic daemon options
       [master(8)](https://www.chedong.com/phpMan.php/man/master/8/markdown), process manager
       [postlogd(8)](https://www.chedong.com/phpMan.php/man/postlogd/8/markdown), Postfix logging
       [syslogd(8)](https://www.chedong.com/phpMan.php/man/syslogd/8/markdown), system logging

## README FILES
       Use "**postconf** **readme**___**directory**" or "**postconf** **html**___**directory**" to locate this information.
       TLS_README, Postfix TLS configuration and operation

## LICENSE
       The Secure Mailer license must be distributed with this software.

## HISTORY
       This service was introduced with Postfix version 2.2.

**AUTHOR(S)**
       Lutz Jaenicke
       BTU Cottbus
       Allgemeine Elektrotechnik
       Universitaetsplatz 3-4
       D-03044 Cottbus, Germany

       Adapted by:
       Wietse Venema
       IBM T.J. Watson Research
       P.O. Box 704
       Yorktown Heights, NY 10598, USA

       Wietse Venema
       Google, Inc.
       111 8th Avenue
       New York, NY 10011, USA



                                                                                    [TLSMGR(8postfix)](https://www.chedong.com/phpMan.php/man/TLSMGR/8postfix/markdown)
