1POSTDROP(1) General Commands Manual POSTDROP(1)
2
3
4
6 postdrop - Postfix mail posting utility
7
9 postdrop [-rv] [-c config_dir]
10
12 The postdrop(1) command creates a file in the maildrop directory and
13 copies its standard input to the file.
14
15 Options:
16
17 -c config_dir
18 The main.cf configuration file is in the named directory instead
19 of the default configuration directory. See also the MAIL_CONFIG
20 environment setting below.
21
22 -r Use a Postfix-internal protocol for reading the message from
23 standard input, and for reporting status information on standard
24 output. This is currently the only supported method.
25
26 -v Enable verbose logging for debugging purposes. Multiple -v op‐
27 tions make the software increasingly verbose. As of Postfix 2.3,
28 this option is available for the super-user only.
29
31 The command is designed to run with set-group ID privileges, so that it
32 can write to the maildrop queue directory and so that it can connect to
33 Postfix daemon processes.
34
36 Fatal errors: malformed input, I/O error, out of memory. Problems are
37 logged to syslogd(8) or postlogd(8) and to the standard error stream.
38 When the input is incomplete, or when the process receives a HUP, INT,
39 QUIT or TERM signal, the queue file is deleted.
40
42 MAIL_CONFIG
43 Directory with the main.cf file. In order to avoid exploitation
44 of set-group ID privileges, a non-standard directory is allowed
45 only if:
46
47 • The name is listed in the standard main.cf file with the
48 alternate_config_directories configuration parameter.
49
50 • The command is invoked by the super-user.
51
53 The following main.cf parameters are especially relevant to this pro‐
54 gram. The text below provides only a parameter summary. See post‐
55 conf(5) for more details including examples.
56
57 alternate_config_directories (empty)
58 A list of non-default Postfix configuration directories that may
59 be specified with "-c config_directory" on the command line (in
60 the case of sendmail(1), with the "-C" option), or via the
61 MAIL_CONFIG environment parameter.
62
63 config_directory (see 'postconf -d' output)
64 The default location of the Postfix main.cf and master.cf con‐
65 figuration files.
66
67 import_environment (see 'postconf -d' output)
68 The list of environment parameters that a privileged Postfix
69 process will import from a non-Postfix parent process, or
70 name=value environment overrides.
71
72 queue_directory (see 'postconf -d' output)
73 The location of the Postfix top-level queue directory.
74
75 syslog_facility (mail)
76 The syslog facility of Postfix logging.
77
78 syslog_name (see 'postconf -d' output)
79 A prefix that is prepended to the process name in syslog
80 records, so that, for example, "smtpd" becomes "prefix/smtpd".
81
82 trigger_timeout (10s)
83 The time limit for sending a trigger to a Postfix daemon (for
84 example, the pickup(8) or qmgr(8) daemon).
85
86 Available in Postfix version 2.2 and later:
87
88 authorized_submit_users (static:anyone)
89 List of users who are authorized to submit mail with the send‐
90 mail(1) command (and with the privileged postdrop(1) helper com‐
91 mand).
92
93 Available in Postfix version 3.6 and later:
94
95 local_login_sender_maps (static:*)
96 A list of lookup tables that are searched by the UNIX login
97 name, and that return a list of allowed envelope sender patterns
98 separated by space or comma.
99
100 empty_address_local_login_sender_maps_lookup_key (<>)
101 The lookup key to be used in local_login_sender_maps tables, in‐
102 stead of the null sender address.
103
104 recipient_delimiter (empty)
105 The set of characters that can separate an email address local‐
106 part, user name, or a .forward file name from its extension.
107
109 /var/spool/postfix/maildrop, maildrop queue
110
112 sendmail(1), compatibility interface
113 postconf(5), configuration parameters
114 postlogd(8), Postfix logging
115 syslogd(8), system logging
116
118 The Secure Mailer license must be distributed with this software.
119
121 Wietse Venema
122 IBM T.J. Watson Research
123 P.O. Box 704
124 Yorktown Heights, NY 10598, USA
125
126 Wietse Venema
127 Google, Inc.
128 111 8th Avenue
129 New York, NY 10011, USA
130
131
132
133 POSTDROP(1)