Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
postfix-3.4.7 /
README_FILES /
[ HOME SHELL ]
Name
Size
Permission
Action
AAAREADME
2.99
KB
-rw-r--r--
ADDRESS_CLASS_README
9.33
KB
-rw-r--r--
ADDRESS_REWRITING_README
42.72
KB
-rw-r--r--
ADDRESS_VERIFICATION_README
23.28
KB
-rw-r--r--
BACKSCATTER_README
12.5
KB
-rw-r--r--
BASIC_CONFIGURATION_README
20.99
KB
-rw-r--r--
BUILTIN_FILTER_README
16.36
KB
-rw-r--r--
CDB_README
3.26
KB
-rw-r--r--
COMPATIBILITY_README
12.05
KB
-rw-r--r--
CONNECTION_CACHE_README
9.23
KB
-rw-r--r--
CONTENT_INSPECTION_README
3.29
KB
-rw-r--r--
DATABASE_README
17.04
KB
-rw-r--r--
DB_README
7.58
KB
-rw-r--r--
DEBUG_README
18.09
KB
-rw-r--r--
DSN_README
4.33
KB
-rw-r--r--
ETRN_README
11.4
KB
-rw-r--r--
FILTER_README
28.61
KB
-rw-r--r--
FORWARD_SECRECY_README
28.84
KB
-rw-r--r--
INSTALL
63.8
KB
-rw-r--r--
IPV6_README
11.79
KB
-rw-r--r--
LDAP_README
21
KB
-rw-r--r--
LINUX_README
2.32
KB
-rw-r--r--
LMDB_README
4.9
KB
-rw-r--r--
LOCAL_RECIPIENT_README
5.65
KB
-rw-r--r--
MAILDROP_README
5.23
KB
-rw-r--r--
MEMCACHE_README
2.27
KB
-rw-r--r--
MILTER_README
41.04
KB
-rw-r--r--
MULTI_INSTANCE_README
42.58
KB
-rw-r--r--
MYSQL_README
5.55
KB
-rw-r--r--
NFS_README
4.73
KB
-rw-r--r--
OVERVIEW
20.31
KB
-rw-r--r--
PACKAGE_README
5.79
KB
-rw-r--r--
PCRE_README
3.25
KB
-rw-r--r--
PGSQL_README
4.98
KB
-rw-r--r--
POSTSCREEN_README
39.46
KB
-rw-r--r--
QSHAPE_README
36.63
KB
-rw-r--r--
RELEASE_NOTES
8.38
KB
-rw-r--r--
RESTRICTION_CLASS_README
7
KB
-rw-r--r--
SASL_README
64.71
KB
-rw-r--r--
SCHEDULER_README
65.39
KB
-rw-r--r--
SMTPD_ACCESS_README
20.66
KB
-rw-r--r--
SMTPD_POLICY_README
27.19
KB
-rw-r--r--
SMTPD_PROXY_README
11.9
KB
-rw-r--r--
SOHO_README
13
KB
-rw-r--r--
SQLITE_README
2.75
KB
-rw-r--r--
STANDARD_CONFIGURATION_README
26.56
KB
-rw-r--r--
STRESS_README
20.67
KB
-rw-r--r--
TLS_LEGACY_README
51.47
KB
-rw-r--r--
TLS_README
125.7
KB
-rw-r--r--
TUNING_README
24.3
KB
-rw-r--r--
ULTRIX_README
1.96
KB
-rw-r--r--
UUCP_README
5.14
KB
-rw-r--r--
VERP_README
7.35
KB
-rw-r--r--
VIRTUAL_README
23.52
KB
-rw-r--r--
XCLIENT_README
10.03
KB
-rw-r--r--
XFORWARD_README
8.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : LMDB_README
PPoossttffiixx OOppeennLLDDAAPP LLMMDDBB HHoowwttoo ------------------------------------------------------------------------------- IInnttrroodduuccttiioonn Postfix uses databases of various kinds to store and look up information. Postfix databases are specified as "type:name". OpenLDAP LMDB (called "LMDB" from here on) implements the Postfix database type "lmdb". The name of a Postfix LMDB database is the name of the database file without the ".lmdb" suffix. This document describes: * Building Postfix with LMDB support. * Configuring LMDB settings. * Using LMDB maps with non-Postfix programs. * Required minimum LMDB patchlevel. * Credits. BBuuiillddiinngg PPoossttffiixx wwiitthh LLMMDDBB ssuuppppoorrtt Postfix normally does not enable LMDB support. To build Postfix with LMDB support, use something like: % make makefiles CCARGS="-DHAS_LMDB -I/usr/local/include" \ AUXLIBS_LMDB="-L/usr/local/lib -llmdb" % make Postfix versions before 3.0 use AUXLIBS instead of AUXLIBS_LMDB. With Postfix 3.0 and later, the old AUXLIBS variable still supports building a statically- loaded LMDB database client, but only the new AUXLIBS_LMDB variable supports building a dynamically-loaded or statically-loaded LMDB database client. Failure to use the AUXLIBS_LMDB variable will defeat the purpose of dynamic database client loading. Every Postfix executable file will have LMDB database library dependencies. And that was exactly what dynamic database client loading was meant to avoid. Solaris may need this: % make makefiles CCARGS="-DHAS_LMDB -I/usr/local/include" \ AUXLIBS_LMDB="-R/usr/local/lib -L/usr/local/lib -llmdb" % make The exact pathnames depend on how LMDB was installed. When building Postfix fails with: undefined reference to `pthread_mutexattr_destroy' undefined reference to `pthread_mutexattr_init' undefined reference to `pthread_mutex_lock' Add the "-lpthread" library to the "make makefiles" command. % make makefiles .... AUXLIBS_LMDB="... -lpthread" CCoonnffiigguurriinngg LLMMDDBB sseettttiinnggss Postfix provides one configuration parameter that controls LMDB database behavior. * lmdb_map_size (default: 16777216). This setting specifies the initial LMDB database size limit in bytes. Each time a database becomes "full", its size limit is doubled. The maximum size is the largest signed integer value of "long". UUssiinngg LLMMDDBB mmaappss wwiitthh nnoonn--PPoossttffiixx pprrooggrraammss Programs that use LMDB's built-in locking protocol will corrupt a Postfix LMDB database or will read garbage. Postfix does not use LMDB's built-in locking protocol, because that would require world-writable lockfiles, and would violate Postfix security policy. Instead, Postfix uses external locks based on fcntl(2) to prevent writers from corrupting the database, and to prevent readers from receiving garbage. See lmdb_table(5) for a detailed description of the locking protocol that all programs must use when they access a Postfix LMDB database. RReeqquuiirreedd mmiinniimmuumm LLMMDDBB ppaattcchhlleevveell Currently, Postfix requires LMDB 0.9.11 or later. The required minimum LMDB patchlevel has evolved over time, as the result of Postfix deployment experience: * LMDB 0.9.11 allows Postfix daemons to log an LMDB error message, instead of falling out of the sky without any notification. * LMDB 0.9.10 closes an information leak where LMDB was writing up to 4-kbyte chunks of uninitialized heap memory to the database. This would persist information that was not meant to be persisted, or share information that was not meant to be shared. * LMDB 0.9.9 allows Postfix to use external (fcntl()-based) locks, instead of having to use world-writable LMDB lock files, violating the Postfix security model in multiple ways. * LMDB 0.9.8 allows Postfix to recover from a "database full" error without having to close the database. This version adds support to update the database size limit on-the-fly. This is necessary because Postfix database sizes vary with mail server load. * LMDB 0.9.7 allows the postmap(1) and postalias(1) commands to use a bulk- mode transaction larger than the amount of physical memory. This is necessary because LMDB supports databases larger than physical memory. CCrreeddiittss * Howard Chu contributed the initial Postfix dict_lmdb driver. * Wietse Venema wrote an abstraction layer (slmdb) that behaves more like Berkeley DB, NDBM, etc. This layer automatically retries an LMDB request when a database needs to be resized, or after a database was resized by a different process. * Howard and Wietse went through many iterations with changes to both LMDB and Postfix, with input from Viktor Dukhovni.
Close