Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
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
21.06
KB
-rw-r--r--
BUILTIN_FILTER_README
16.36
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--
LINUX_README
2.32
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--
NFS_README
4.73
KB
-rw-r--r--
OVERVIEW
20.31
KB
-rw-r--r--
PACKAGE_README
5.79
KB
-rw-r--r--
POSTSCREEN_README
39.46
KB
-rw-r--r--
QSHAPE_README
36.63
KB
-rw-r--r--
RELEASE_NOTES
6.13
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.23
KB
-rw-r--r--
SMTPD_PROXY_README
11.9
KB
-rw-r--r--
SOHO_README
13
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 : DB_README
PPoossttffiixx BBeerrkkeelleeyy DDBB HHoowwttoo ------------------------------------------------------------------------------- IInnttrroodduuccttiioonn Postfix uses databases of various kinds to store and look up information. Postfix databases are specified as "type:name". Berkeley DB implements the Postfix database type "hash" and "btree". The name of a Postfix Berkeley DB database is the name of the database file without the ".db" suffix. Berkeley DB databases are maintained with the postmap(1) command. Note: Berkeley DB version 4 is not supported by Postfix versions before 2.0. This document describes: 1. How to build Postfix without Berkeley DB support even if the system comes with Berkeley DB. 2. How to build Postfix on systems that normally have no Berkeley DB library. 3. How to build Postfix on BSD or Linux systems with multiple Berkeley DB versions. 4. How to tweak performance. 5. Missing pthread library trouble. BBuuiillddiinngg PPoossttffiixx wwiitthhoouutt BBeerrkkeelleeyy DDBB ssuuppppoorrtt eevveenn iiff tthhee ssyysstteemm ccoommeess wwiitthh BBeerrkkeelleeyy DDBB Note: The following instructions apply to Postfix 2.9 and later. Postfix will normally enable Berkeley DB support if the system is known to have it. To build Postfix without Berkeley DB support, build the makefiles as follows: % make makefiles CCARGS="-DNO_DB" % make This will disable support for "hash" and "btree" files. BBuuiillddiinngg PPoossttffiixx oonn ssyysstteemmss tthhaatt nnoorrmmaallllyy hhaavvee nnoo BBeerrkkeelleeyy DDBB lliibbrraarryy Some UNIXes ship without Berkeley DB support; for historical reasons these use DBM files instead. A problem with DBM files is that they can store only limited amounts of data. To build Postfix with Berkeley DB support you need to download and install the source code from http://www.oracle.com/database/berkeley-db/. Warning: some Linux system libraries use Berkeley DB, as do some third-party libraries such as SASL. If you compile Postfix with a different Berkeley DB implementation, then every Postfix program will dump core because either the system library, the SASL library, or Postfix itself ends up using the wrong version. The more recent Berkeley DB versions have a compile-time switch, "--with- uniquename", which renames the symbols so that multiple versions of Berkeley DB can co-exist in the same application. Although wasteful, this may be the only way to keep things from falling apart. To build Postfix after you installed the Berkeley DB from source code, use something like: % make makefiles CCARGS="-DHAS_DB -I/usr/local/BerkeleyDB/include" \ AUXLIBS="-L/usr/local/BerkeleyDB/lib -ldb" % make Solaris needs this: % make makefiles CCARGS="-DHAS_DB -I/usr/local/BerkeleyDB/include" \ AUXLIBS="-R/usr/local/BerkeleyDB/lib -L/usr/local/BerkeleyDB/lib -ldb" % make The exact pathnames depend on the Berkeley DB version, and on how it was installed. Warning: the file format produced by Berkeley DB version 1 is not compatible with that of versions 2 and 3 (versions 2 and 3 have the same format). If you switch between DB versions, then you may have to rebuild all your Postfix DB files. Warning: if you use Berkeley DB version 2 or later, do not enable DB 1.85 compatibility mode. Doing so would break fcntl file locking. Warning: if you use Perl to manipulate Postfix's Berkeley DB files, then you need to use the same Berkeley DB version in Perl as in Postfix. BBuuiillddiinngg PPoossttffiixx oonn BBSSDD ssyysstteemmss wwiitthh mmuullttiippllee BBeerrkkeelleeyy DDBB vveerrssiioonnss Some BSD systems ship with multiple Berkeley DB implementations. Normally, Postfix builds with the default DB version that ships with the system. To build Postfix on BSD systems with a non-default DB version, use a variant of the following commands: % make makefiles CCARGS=-I/usr/include/db3 AUXLIBS=-ldb3 % make Warning: the file format produced by Berkeley DB version 1 is not compatible with that of versions 2 and 3 (versions 2 and 3 have the same format). If you switch between DB versions, then you may have to rebuild all your Postfix DB files. Warning: if you use Berkeley DB version 2 or later, do not enable DB 1.85 compatibility mode. Doing so would break fcntl file locking. Warning: if you use Perl to manipulate Postfix's Berkeley DB files, then you need to use the same Berkeley DB version in Perl as in Postfix. BBuuiillddiinngg PPoossttffiixx oonn LLiinnuuxx ssyysstteemmss wwiitthh mmuullttiippllee BBeerrkkeelleeyy DDBB vveerrssiioonnss Some Linux systems ship with multiple Berkeley DB implementations. Normally, Postfix builds with the default DB version that ships with the system. Warning: some Linux system libraries use Berkeley DB. If you compile Postfix with a non-default Berkeley DB implementation, then every Postfix program will dump core because either the system library or Postfix itself ends up using the wrong version. On Linux, you need to edit the makedefs script in order to specify a non- default DB library. The reason is that the location of the default db.h include file changes randomly between vendors and between versions, so that Postfix has to choose the file for you. Warning: the file format produced by Berkeley DB version 1 is not compatible with that of versions 2 and 3 (versions 2 and 3 have the same format). If you switch between DB versions, then you may have to rebuild all your Postfix DB files. Warning: if you use Berkeley DB version 2 or later, do not enable DB 1.85 compatibility mode. Doing so would break fcntl file locking. Warning: if you use Perl to manipulate Postfix's Berkeley DB files, then you need to use the same Berkeley DB version in Perl as in Postfix. TTwweeaakkiinngg ppeerrffoorrmmaannccee Postfix provides two configuration parameters that control how much buffering memory Berkeley DB will use. * berkeley_db_create_buffer_size (default: 16 MBytes per table). This setting is used by the commands that maintain Berkeley DB files: postalias(1) and postmap(1). For "hash" files, create performance degrades rapidly unless the memory pool is O(file size). For "btree" files, create performance is good with sorted input even for small memory pools, but with random input degrades rapidly unless the memory pool is O(file size). * berkeley_db_read_buffer_size (default: 128 kBytes per table). This setting is used by all other Postfix programs. The buffer size is adequate for reading. If the cache is smaller than the table, random read performance is hardly cache size dependent, except with btree tables, where the cache size must be large enough to contain the entire path from the root node. Empirical evidence shows that 64 kBytes may be sufficient. We double the size to play safe, and to anticipate changes in implementation and bloat. MMiissssiinngg pptthhrreeaadd lliibbrraarryy ttrroouubbllee When building Postfix fails with: undefined reference to `pthread_condattr_setpshared' undefined reference to `pthread_mutexattr_destroy' undefined reference to `pthread_mutexattr_init' undefined reference to `pthread_mutex_trylock' Add the "-lpthread" library to the "make makefiles" command. % make makefiles .... AUXLIBS="... -lpthread" More information is available at http://www.oracle.com/database/berkeley-db/.
Close