LX0-104 · Question #414
What can proxymap be used for in a Postfix installation? (Select TWO correct answers)
The correct answer is A. Consolidating the number of open lookup tables. D. Overcoming chroot restrictions.. Proxymap in Postfix is used to consolidate multiple lookup tables into a single process, reducing system resource usage, and also helps overcome chroot restrictions for various lookup services.
Question
Options
- AConsolidating the number of open lookup tables.
- BCreating and querying Postfix alias databases.
- CMapping mail user IDs to system accounts.
- DOvercoming chroot restrictions.
- ECreating and querying Postfix lookup tables.
How the community answered
(33 responses)- A91% (30)
- C3% (1)
- E6% (2)
Why each option
Proxymap in Postfix is used to consolidate multiple lookup tables into a single process, reducing system resource usage, and also helps overcome chroot restrictions for various lookup services.
Proxymap allows the Postfix lookup client to query a single lookup proxy server process instead of opening multiple connections to individual lookup table files, thereby reducing the number of open file descriptors and system load.
Postfix alias databases are a type of lookup table, but proxymap's purpose is broader than just aliases; it generalizes to all lookup tables and their efficiency/chroot implications.
Mapping mail user IDs to system accounts is a function of specific lookup tables (like virtual_alias_maps, virtual_mailbox_maps) that proxymap might handle, but it's not the primary purpose of proxymap itself, which is about the mechanism of lookup access.
When Postfix daemons are chrooted for security, they cannot directly access lookup tables outside their chroot jail; proxymap can run unchrooted, serving lookup requests to the chrooted Postfix processes, effectively overcoming these restrictions.
Proxymap doesn't create lookup tables; it provides a mechanism for Postfix to query existing lookup tables more efficiently or to overcome chroot limitations.
Concept tested: Postfix proxymap functionality
Source: http://www.postfix.org/proxymap.8.html
Topics
Community Discussion
No community discussion yet for this question.