Automatic change detection of DBM files was slightly broken (incremental changes would no longer be detected). The fix is to use separate file handles for locking and for change detection. The trivial-rewrite server could dereference a dangling pointer after stripping a source route (@domain,domain:) from an address while append_at_myorigin was turned off (which is not supported). It should not SIGSEGV anyway. The SMTP server replied with 552 (too much mail) when rejecting mail content. No reply code is defined for this, but one could argue that 550 is more appropriate. And so it shall be. Prereq: "1.1.4" diff -cr /tmp/postfix-1.1.4/src/global/mail_version.h ./src/global/mail_version.h *** /tmp/postfix-1.1.4/src/global/mail_version.h Fri Feb 22 19:38:56 2002 --- ./src/global/mail_version.h Mon Mar 11 21:10:12 2002 *************** *** 22,30 **** */ #define VAR_MAIL_VERSION "mail_version" #ifdef SNAPSHOT ! #define DEF_MAIL_VERSION "1.1.4-$mail_release_date" #else ! #define DEF_MAIL_VERSION "1.1.4" #endif extern char *var_mail_version; --- 22,30 ---- */ #define VAR_MAIL_VERSION "mail_version" #ifdef SNAPSHOT ! #define DEF_MAIL_VERSION "1.1.5-$mail_release_date" #else ! #define DEF_MAIL_VERSION "1.1.5" #endif extern char *var_mail_version; *************** *** 32,38 **** * Release date. */ #define VAR_MAIL_RELEASE "mail_release_date" ! #define DEF_MAIL_RELEASE "20020222" extern char *var_mail_release; /* LICENSE --- 32,38 ---- * Release date. */ #define VAR_MAIL_RELEASE "mail_release_date" ! #define DEF_MAIL_RELEASE "20020311" extern char *var_mail_release; /* LICENSE diff -cr /tmp/postfix-1.1.4/HISTORY ./HISTORY *** /tmp/postfix-1.1.4/HISTORY Sat Feb 23 19:31:55 2002 --- ./HISTORY Mon Mar 11 20:51:39 2002 *************** *** 6095,6100 **** --- 6095,6130 ---- Solaris qsort() causes SIGSEGV errors otherwise. Victor Duchovny, Morgan Stanley. File: *qmgr/qmgr_message.c. + 20020302 + + Bugfix: don't strip source route (@domain...:) when the + result would be an empty address. This avoids problems when + append_at_myorigin is set to "no" (which is not supported). + Problem reported by Charles McColgan, Big Fish Communications. + File: trivial-rewrite/rewrite.c. + + 20020304 + + Cleanup: postqueue should not not complain when output + fails with "broken pipe". + + 20020308 + + Bugfix? reply with 550 not 552 when content is rejected. + 552 is reserved for "too much mail". + + Documentation: add note to sendmail manual page that running + "sendmail -bs" as $mail_owner enables SMTP server UCE and + access control checks. This is meant for use from inetd etc. + Matthias Andree. + + 20020311 + + Bugfix: DBM maps should use different files for locking + and for change detection. Problem reported by Victor + Duchovny, Morgan Stanley. Files: util/dict.h util/dict.c + util/dict_db.c util/dict_dbm.c global/mkmap.c local/alias.c. + Open problems: Low: don't do user@domain and @domain lookups in diff -cr /tmp/postfix-1.1.4/conf/main.cf ./conf/main.cf *** /tmp/postfix-1.1.4/conf/main.cf Thu Jan 31 21:12:04 2002 --- ./conf/main.cf Sun Mar 3 11:58:06 2002 *************** *** 225,233 **** # REJECTING UNKNOWN LOCAL USERS # # The local_recipient_maps parameter specifies optional lookup tables ! # with all users that are local with respect to $mydestination and ! # $inet_interfaces. If this parameter is defined, then the SMTP server ! # will reject mail for unknown local users. # # If you use the default Postfix local delivery agent for local # delivery, uncomment the definition below. --- 225,234 ---- # REJECTING UNKNOWN LOCAL USERS # # The local_recipient_maps parameter specifies optional lookup tables ! # with all names (not addresses) of users that are local with respect ! # to $mydestination and $inet_interfaces. If this parameter is ! # defined, then the SMTP server will reject mail for unknown local ! # users. # # If you use the default Postfix local delivery agent for local # delivery, uncomment the definition below. diff -cr /tmp/postfix-1.1.4/conf/master.cf ./conf/master.cf *** /tmp/postfix-1.1.4/conf/master.cf Thu Jan 10 15:24:59 2002 --- ./conf/master.cf Sat Mar 2 18:13:56 2002 *************** *** 24,32 **** # Chroot: whether or not the service runs chrooted to the mail queue # directory (pathname is controlled by the queue_directory configuration # variable in the main.cf file). Presently, all Postfix daemons can run ! # chrooted, except for the pipe and local daemons. The files in the ! # examples/chroot-setup subdirectory describe how to set up a Postfix ! # chroot environment for your type of machine. # # Wakeup time: automatically wake up the named service after the # specified number of seconds. A ? at the end of the wakeup time --- 24,32 ---- # Chroot: whether or not the service runs chrooted to the mail queue # directory (pathname is controlled by the queue_directory configuration # variable in the main.cf file). Presently, all Postfix daemons can run ! # chrooted, except for the pipe, virtual and local delivery daemons. ! # The files in the examples/chroot-setup subdirectory describe how ! # to set up a Postfix chroot environment for your type of machine. # # Wakeup time: automatically wake up the named service after the # specified number of seconds. A ? at the end of the wakeup time diff -cr /tmp/postfix-1.1.4/conf/sample-smtpd.cf ./conf/sample-smtpd.cf *** /tmp/postfix-1.1.4/conf/sample-smtpd.cf Wed Dec 26 17:11:37 2001 --- ./conf/sample-smtpd.cf Fri Mar 8 09:42:29 2002 *************** *** 440,446 **** # The access_map_reject_code parameter specifies the SMTP server # response code when a client violates an access map restriction. # ! # Do not change this unless you have a complete understanding of RFC 822. # access_map_reject_code = 550 --- 440,446 ---- # The access_map_reject_code parameter specifies the SMTP server # response code when a client violates an access map restriction. # ! # Do not change this unless you have a complete understanding of RFC 821. # access_map_reject_code = 550 *************** *** 448,475 **** # response when a client violates the reject_invalid_hostname anti-UCE # restriction. # ! # Do not change this unless you have a complete understanding of RFC 822. # invalid_hostname_reject_code = 501 # The maps_rbl_reject_code parameter specifies the SMTP server response # when a client violates the maps_rbl_domains restriction. # ! # Do not change this unless you have a complete understanding of RFC 822. # maps_rbl_reject_code = 550 # The reject_code parameter specifies the SMTP server response code # when an SMTP client matches a reject restriction. # ! # Do not change this unless you have a complete understanding of RFC 822. # reject_code = 550 # The relay_domains_reject_code parameter specifies the SMTP server # response when a client attempts to violate the mail relay policy. # ! # Do not change this unless you have a complete understanding of RFC 822. # relay_domains_reject_code = 550 --- 448,475 ---- # response when a client violates the reject_invalid_hostname anti-UCE # restriction. # ! # Do not change this unless you have a complete understanding of RFC 821. # invalid_hostname_reject_code = 501 # The maps_rbl_reject_code parameter specifies the SMTP server response # when a client violates the maps_rbl_domains restriction. # ! # Do not change this unless you have a complete understanding of RFC 821. # maps_rbl_reject_code = 550 # The reject_code parameter specifies the SMTP server response code # when an SMTP client matches a reject restriction. # ! # Do not change this unless you have a complete understanding of RFC 821. # reject_code = 550 # The relay_domains_reject_code parameter specifies the SMTP server # response when a client attempts to violate the mail relay policy. # ! # Do not change this unless you have a complete understanding of RFC 821. # relay_domains_reject_code = 550 *************** *** 477,483 **** # response when a client violates the reject_unknown_sender_domain # or reject_unknown_recipient_domain restrictions. # ! # Do not change this unless you have a complete understanding of RFC 822. # unknown_address_reject_code = 450 --- 477,483 ---- # response when a client violates the reject_unknown_sender_domain # or reject_unknown_recipient_domain restrictions. # ! # Do not change this unless you have a complete understanding of RFC 821. # unknown_address_reject_code = 450 *************** *** 485,491 **** # response when a client without address to name mapping violates # the reject_unknown_clients restriction. # ! # Do not change this unless you have a complete understanding of RFC 822. # unknown_client_reject_code = 450 --- 485,491 ---- # response when a client without address to name mapping violates # the reject_unknown_clients restriction. # ! # Do not change this unless you have a complete understanding of RFC 821. # unknown_client_reject_code = 450 *************** *** 493,498 **** # response when a client violates the reject_unknown_hostname # restriction. # ! # Do not change this unless you have a complete understanding of RFC 822. # unknown_hostname_reject_code = 450 --- 493,498 ---- # response when a client violates the reject_unknown_hostname # restriction. # ! # Do not change this unless you have a complete understanding of RFC 821. # unknown_hostname_reject_code = 450 diff -cr /tmp/postfix-1.1.4/html/mailq.1.html ./html/mailq.1.html *** /tmp/postfix-1.1.4/html/mailq.1.html Fri Feb 1 09:17:24 2002 --- ./html/mailq.1.html Mon Mar 11 19:55:43 2002 *************** *** 124,143 **** -bs Stand-alone SMTP server mode. Read SMTP commands from standard input, and write responses to stan- ! dard output. This mode of operation is implemented ! by running the smtpd(8) daemon. -f sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. -h hop_count (ignored) ! Hop count limit. Use the hopcount_limit configura- tion parameter instead. ! -i When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -m (ignored) --- 124,148 ---- -bs Stand-alone SMTP server mode. Read SMTP commands from standard input, and write responses to stan- ! dard output. In stand-alone SMTP server mode, UCE ! restrictions and access controls are disabled by ! default. To enable them, run the process as the ! mail_owner user. ! ! This mode of operation is implemented by running ! the smtpd(8) daemon. -f sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. -h hop_count (ignored) ! Hop count limit. Use the hopcount_limit configura- tion parameter instead. ! -i When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -m (ignored) *************** *** 147,213 **** Backwards compatibility. -oAalias_database ! Non-default alias database. Specify pathname or type:pathname. See postalias(1) for details. -o7 (ignored) -o8 (ignored) ! The message body type. Currently, Postfix imple- ments just-send-eight. ! -oi When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -om (ignored) ! The sender is never eliminated from alias etc. expansions. -o x value (ignored) ! Set option x to value. Use the equivalent configu- ration parameter in main.cf instead. -r sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. ! -q Attempt to deliver all queued mail. This is imple- mented by executing the postqueue(1) command. -qinterval (ignored) ! The interval between queue runs. Use the queue_run_delay configuration parameter instead. -qRsite ! Schedule immediate delivery of all mail that is queued for the named site. This option accepts only ! site names that are eligible for the "fast flush" ! service, and is implemented by executing the postqueue(1) command. See flush(8) for more infor- mation about the "fast flush" service. -qSsite ! This command is not implemented. Use the slower sendmail -q command instead. ! -t Extract recipients from message headers. This ! requires that no recipients be specified on the command line. -v Enable verbose logging for debugging purposes. Mul- ! tiple -v options make the software increasingly verbose. SECURITY ! By design, this program is not set-user (or group) id. ! However, it must handle data from untrusted users or ! untrusted machines. Thus, the usual precautions need to be taken against malicious inputs. DIAGNOSTICS ! Problems are logged to syslogd(8) and to the standard error stream. ENVIRONMENT --- 152,218 ---- Backwards compatibility. -oAalias_database ! Non-default alias database. Specify pathname or type:pathname. See postalias(1) for details. -o7 (ignored) -o8 (ignored) ! The message body type. Currently, Postfix imple- ments just-send-eight. ! -oi When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -om (ignored) ! The sender is never eliminated from alias etc. expansions. -o x value (ignored) ! Set option x to value. Use the equivalent configu- ration parameter in main.cf instead. -r sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. ! -q Attempt to deliver all queued mail. This is imple- mented by executing the postqueue(1) command. -qinterval (ignored) ! The interval between queue runs. Use the queue_run_delay configuration parameter instead. -qRsite ! Schedule immediate delivery of all mail that is queued for the named site. This option accepts only ! site names that are eligible for the "fast flush" ! service, and is implemented by executing the postqueue(1) command. See flush(8) for more infor- mation about the "fast flush" service. -qSsite ! This command is not implemented. Use the slower sendmail -q command instead. ! -t Extract recipients from message headers. This ! requires that no recipients be specified on the command line. -v Enable verbose logging for debugging purposes. Mul- ! tiple -v options make the software increasingly verbose. SECURITY ! By design, this program is not set-user (or group) id. ! However, it must handle data from untrusted users or ! untrusted machines. Thus, the usual precautions need to be taken against malicious inputs. DIAGNOSTICS ! Problems are logged to syslogd(8) and to the standard error stream. ENVIRONMENT *************** *** 219,225 **** MAIL_DEBUG Enable debugging with an external command, as spec- ! ified with the debugger_command configuration parameter. FILES --- 224,230 ---- MAIL_DEBUG Enable debugging with an external command, as spec- ! ified with the debugger_command configuration parameter. FILES *************** *** 227,239 **** /etc/postfix, configuration files CONFIGURATION PARAMETERS ! See the Postfix main.cf file for syntax details and for ! default values. Use the postfix reload command after a configuration change. alias_database ! Default alias database(s) for newaliases. The ! default value for this parameter is system-spe- cific. bounce_size_limit --- 232,244 ---- /etc/postfix, configuration files CONFIGURATION PARAMETERS ! See the Postfix main.cf file for syntax details and for ! default values. Use the postfix reload command after a configuration change. alias_database ! Default alias database(s) for newaliases. The ! default value for this parameter is system-spe- cific. bounce_size_limit *************** *** 249,310 **** initialized. debug_peer_level ! Increment in verbose logging level when a remote host matches a pattern in the debug_peer_list parameter. debug_peer_list ! List of domain or network patterns. When a remote ! host matches a pattern, increase the verbose log- ! ging level by the amount specified in the debug_peer_level parameter. default_verp_delimiters ! The VERP delimiter characters that are used when ! the -V command line option is specified without delimiter characters. fast_flush_domains List of domains that will receive "fast flush" ser- ! vice (default: all domains that this system is ! willing to relay mail to). This list specifies the ! domains that Postfix accepts in the SMTP ETRN request and in the sendmail -qR command. fork_attempts ! Number of attempts to fork() a process before giv- ing up. fork_delay ! Delay in seconds between successive fork() attempts. hopcount_limit Limit the number of Received: message headers. mail_owner ! The owner of the mail queue and of most Postfix processes. command_directory ! Directory with Postfix support commands (default: $program_directory). daemon_directory ! Directory with Postfix daemon programs (default: $program_directory). queue_directory ! Top-level directory of the Postfix queue. This is also the root directory of Postfix daemons that run chrooted. queue_run_delay ! The time between successive scans of the deferred queue. verp_delimiter_filter ! The characters that Postfix accepts as VERP delim- iter characters. SEE ALSO --- 254,315 ---- initialized. debug_peer_level ! Increment in verbose logging level when a remote host matches a pattern in the debug_peer_list parameter. debug_peer_list ! List of domain or network patterns. When a remote ! host matches a pattern, increase the verbose log- ! ging level by the amount specified in the debug_peer_level parameter. default_verp_delimiters ! The VERP delimiter characters that are used when ! the -V command line option is specified without delimiter characters. fast_flush_domains List of domains that will receive "fast flush" ser- ! vice (default: all domains that this system is ! willing to relay mail to). This list specifies the ! domains that Postfix accepts in the SMTP ETRN request and in the sendmail -qR command. fork_attempts ! Number of attempts to fork() a process before giv- ing up. fork_delay ! Delay in seconds between successive fork() attempts. hopcount_limit Limit the number of Received: message headers. mail_owner ! The owner of the mail queue and of most Postfix processes. command_directory ! Directory with Postfix support commands (default: $program_directory). daemon_directory ! Directory with Postfix daemon programs (default: $program_directory). queue_directory ! Top-level directory of the Postfix queue. This is also the root directory of Postfix daemons that run chrooted. queue_run_delay ! The time between successive scans of the deferred queue. verp_delimiter_filter ! The characters that Postfix accepts as VERP delim- iter characters. SEE ALSO *************** *** 319,325 **** syslogd(8) system logging LICENSE ! The Secure Mailer license must be distributed with this software. AUTHOR(S) --- 324,330 ---- syslogd(8) system logging LICENSE ! The Secure Mailer license must be distributed with this software. AUTHOR(S) diff -cr /tmp/postfix-1.1.4/html/newaliases.1.html ./html/newaliases.1.html *** /tmp/postfix-1.1.4/html/newaliases.1.html Fri Feb 1 09:17:24 2002 --- ./html/newaliases.1.html Mon Mar 11 19:55:43 2002 *************** *** 124,143 **** -bs Stand-alone SMTP server mode. Read SMTP commands from standard input, and write responses to stan- ! dard output. This mode of operation is implemented ! by running the smtpd(8) daemon. -f sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. -h hop_count (ignored) ! Hop count limit. Use the hopcount_limit configura- tion parameter instead. ! -i When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -m (ignored) --- 124,148 ---- -bs Stand-alone SMTP server mode. Read SMTP commands from standard input, and write responses to stan- ! dard output. In stand-alone SMTP server mode, UCE ! restrictions and access controls are disabled by ! default. To enable them, run the process as the ! mail_owner user. ! ! This mode of operation is implemented by running ! the smtpd(8) daemon. -f sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. -h hop_count (ignored) ! Hop count limit. Use the hopcount_limit configura- tion parameter instead. ! -i When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -m (ignored) *************** *** 147,213 **** Backwards compatibility. -oAalias_database ! Non-default alias database. Specify pathname or type:pathname. See postalias(1) for details. -o7 (ignored) -o8 (ignored) ! The message body type. Currently, Postfix imple- ments just-send-eight. ! -oi When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -om (ignored) ! The sender is never eliminated from alias etc. expansions. -o x value (ignored) ! Set option x to value. Use the equivalent configu- ration parameter in main.cf instead. -r sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. ! -q Attempt to deliver all queued mail. This is imple- mented by executing the postqueue(1) command. -qinterval (ignored) ! The interval between queue runs. Use the queue_run_delay configuration parameter instead. -qRsite ! Schedule immediate delivery of all mail that is queued for the named site. This option accepts only ! site names that are eligible for the "fast flush" ! service, and is implemented by executing the postqueue(1) command. See flush(8) for more infor- mation about the "fast flush" service. -qSsite ! This command is not implemented. Use the slower sendmail -q command instead. ! -t Extract recipients from message headers. This ! requires that no recipients be specified on the command line. -v Enable verbose logging for debugging purposes. Mul- ! tiple -v options make the software increasingly verbose. SECURITY ! By design, this program is not set-user (or group) id. ! However, it must handle data from untrusted users or ! untrusted machines. Thus, the usual precautions need to be taken against malicious inputs. DIAGNOSTICS ! Problems are logged to syslogd(8) and to the standard error stream. ENVIRONMENT --- 152,218 ---- Backwards compatibility. -oAalias_database ! Non-default alias database. Specify pathname or type:pathname. See postalias(1) for details. -o7 (ignored) -o8 (ignored) ! The message body type. Currently, Postfix imple- ments just-send-eight. ! -oi When reading a message from standard input, don't ! treat a line with only a . character as the end of input. -om (ignored) ! The sender is never eliminated from alias etc. expansions. -o x value (ignored) ! Set option x to value. Use the equivalent configu- ration parameter in main.cf instead. -r sender Set the envelope sender address. This is the address where delivery problems are sent to, unless ! the message contains an Errors-To: message header. ! -q Attempt to deliver all queued mail. This is imple- mented by executing the postqueue(1) command. -qinterval (ignored) ! The interval between queue runs. Use the queue_run_delay configuration parameter instead. -qRsite ! Schedule immediate delivery of all mail that is queued for the named site. This option accepts only ! site names that are eligible for the "fast flush" ! service, and is implemented by executing the postqueue(1) command. See flush(8) for more infor- mation about the "fast flush" service. -qSsite ! This command is not implemented. Use the slower sendmail -q command instead. ! -t Extract recipients from message headers. This ! requires that no recipients be specified on the command line. -v Enable verbose logging for debugging purposes. Mul- ! tiple -v options make the software increasingly verbose. SECURITY ! By design, this program is not set-user (or group) id. ! However, it must handle data from untrusted users or ! untrusted machines. Thus, the usual precautions need to be taken against malicious inputs. DIAGNOSTICS ! Problems are logged to syslogd(8) and to the standard error stream. ENVIRONMENT *************** *** 219,225 **** MAIL_DEBUG Enable debugging with an external command, as spec- ! ified with the debugger_command configuration parameter. FILES --- 224,230 ---- MAIL_DEBUG Enable debugging with an external command, as spec- ! ified with the debugger_command configuration parameter. FILES *************** *** 227,239 **** /etc/postfix, configuration files CONFIGURATION PARAMETERS ! See the Postfix main.cf file for syntax details and for ! default values. Use the postfix reload command after a configuration change. alias_database ! Default alias database(s) for newaliases. The ! default value for this parameter is system-spe- cific. bounce_size_limit --- 232,244 ---- /etc/postfix, configuration files CONFIGURATION PARAMETERS ! See the Postfix main.cf file for syntax details and for ! default values. Use the postfix reload command after a configuration change. alias_database ! Default alias database(s) for newaliases. The ! default value for this parameter is system-spe- cific. bounce_size_limit *************** *** 249,310 **** initialized. debug_peer_level ! Increment in verbose logging level when a remote host matches a pattern in the debug_peer_list parameter. debug_peer_list ! List of domain or network patterns. When a remote ! host matches a pattern, increase the verbose log- ! ging level by the amount specified in the debug_peer_level parameter. default_verp_delimiters ! The VERP delimiter characters that are used when ! the -V command line option is specified without delimiter characters. fast_flush_domains List of domains that will receive "fast flush" ser- ! vice (default: all domains that this system is ! willing to relay mail to). This list specifies the ! domains that Postfix accepts in the SMTP ETRN request and in the sendmail -qR command. fork_attempts ! Number of attempts to fork() a process before giv- ing up. fork_delay ! Delay in seconds between successive fork() attempts. hopcount_limit Limit the number of Received: message headers. mail_owner ! The owner of the mail queue and of most Postfix processes. command_directory ! Directory with Postfix support commands (default: $program_directory). daemon_directory ! Directory with Postfix daemon programs (default: $program_directory). queue_directory ! Top-level directory of the Postfix queue. This is also the root directory of Postfix daemons that run chrooted. queue_run_delay ! The time between successive scans of the deferred queue. verp_delimiter_filter ! The characters that Postfix accepts as VERP delim- iter characters. SEE ALSO --- 254,315 ---- initialized. debug_peer_level ! Increment in verbose logging level when a remote host matches a pattern in the debug_peer_list parameter. debug_peer_list ! List of domain or network patterns. When a remote ! host matches a pattern, increase the verbose log- ! ging level by the amount specified in the debug_peer_level parameter. default_verp_delimiters ! The VERP delimiter characters that are used when ! the -V command line option is specified without delimiter characters. fast_flush_domains List of domains that will receive "fast flush" ser- ! vice (default: all domains that this system is ! willing to relay mail to). This list specifies the ! domains that Postfix accepts in the SMTP ETRN request and in the sendmail -qR command. fork_attempts ! Number of attempts to fork() a process before giv- ing up. fork_delay ! Delay in seconds between successive fork() attempts. hopcount_limit Limit the number of Received: message headers. mail_owner ! The owner of the mail queue and of most Postfix processes. command_directory ! Directory with Postfix support commands (default: $program_directory). daemon_directory ! Directory with Postfix daemon programs (default: $program_directory). queue_directory ! Top-level directory of the Postfix queue. This is also the root directory of Postfix daemons that run chrooted. queue_run_delay ! The time between successive scans of the deferred queue. verp_delimiter_filter ! The characters that Postfix accepts as VERP delim- iter characters. SEE ALSO *************** *** 319,325 **** syslogd(8) system logging LICENSE ! The Secure Mailer license must be distributed with this software. AUTHOR(S) --- 324,330 ---- syslogd(8) system logging LICENSE ! The Secure Mailer license must be distributed with this software. AUTHOR(S) diff -cr /tmp/postfix-1.1.4/html/postqueue.1.html ./html/postqueue.1.html *** /tmp/postfix-1.1.4/html/postqueue.1.html Tue Jan 22 11:04:43 2002 --- ./html/postqueue.1.html Mon Mar 11 19:55:43 2002 *************** *** 1,5 ****
- POSTQUEUE(1) POSTQUEUE(1) NAME --- 1,4 ---- *************** *** 110,115 **** P.O. Box 704 Yorktown Heights, NY 10598, USA ! 1 !--- 109,113 ---- P.O. Box 704 Yorktown Heights, NY 10598, USA ! POSTQUEUE(1)