Software: Apache/2.2.22 (Debian). PHP/5.6.36 uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) Safe-mode: OFF (not secure) /usr/share/doc/maildrop/html/ drwxr-xr-x |
Viewing file: Select action/file-type: Namemaildropgdbm — GDBM/DB support in maildrop Synopsisgdbmopen(filename, mode) gdbmclose gdbmfetch(key [,default]) gdbmstore(key,value) DESCRIPTIONThe gdbm family of functions provides access to the GDBM library - a library of routines that manage simple database files. The library provides a way of quickly storing and looking up key/data pairs. GDBM support in maildrop is optional, and may not be available to you. GDBM support in maildrop can optionally be implemented using the DB library. This option is selected by the system administrator. If this is the case, these functions still work exactly as described below, except that they will operate on DB hash files, instead of GDBM files. To see whether GDBM or DB support is used, run the command "maildrop -v". GDBM support is minimal, and simplistic. A filter file may have only one gdbm file open at the same time. However, the filter file can close the current gdbm file, and open another one. If another filter file is included using the include statement, the included filter file may open its own, separate, gdbm file. A GDBM file contains a list of key/value pairs. All keys in the GDBM file are unique. After storing an arbitrary key/value pair in the GDBM file, the value associated with the given key can be quickly located and retrieved. gdbmfetch - retrieve data
This function retrieves the data for the given key.
The
If the
If "domain" is also not found, and domain is of the form
"
If the NoteGDBM databases are case sensitive. Make sure that the GDBM database is created using lowercase letters only, and use the tolower function to convert the key to lowercase.
If the NoteThese features are implemented by brute force: if the query doesn't succeed, try again. Take note of potential denial-of-service attacks where key is set to a long text string consisting mostly of periods, which will result in numerous GDBM queries that will take an excessive amount of time to complete. gdbmopen - open gdbm file
gdbmopen opens the indicated GDBM file. The optional second argument specifies the following:
The The GDBM library allows multiple processes to read the same GDBM file at the same time, but it does not allow multiple access when the GDBM file is open for writing. Using flock or dotlock is highly recommended. In delivery mode, maildrop runs from the recipient's home directory. Keep that in mind while specifying the filename. The gdbmopen function returns 0 if the GDBM file was successfully opened, non-zero otherwise. gdbmstore - store data
|
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0297 ]-- |