]> git.ipfire.org Git - thirdparty/postfix.git/commitdiff
postfix-3.4-20190201
authorWietse Venema <wietse@porcupine.org>
Fri, 1 Feb 2019 05:00:00 +0000 (00:00 -0500)
committerViktor Dukhovni <postfix-users@dukhovni.org>
Sun, 3 Feb 2019 19:06:13 +0000 (14:06 -0500)
15 files changed:
postfix/HISTORY
postfix/RELEASE_NOTES
postfix/conf/postfix-script
postfix/html/postconf.5.html
postfix/html/postfix.1.html
postfix/man/man1/postfix.1
postfix/man/man5/postconf.5
postfix/mantools/postlink
postfix/proto/postconf.proto
postfix/src/global/Makefile.in
postfix/src/global/mail_params.c
postfix/src/global/mail_params.h
postfix/src/global/mail_version.h
postfix/src/global/maillog_client.c
postfix/src/postfix/postfix.c

index bfdb6744679241a40a5fba3276acb3a156280daa..c400b856ebf7fa9a11fdb8b9092b548c313f3072 100644 (file)
@@ -24012,3 +24012,11 @@ Apologies for any names omitted.
 20190128
 
        Testing: run libtls tests under Valgrind. File tls/Makefile.in.
+
+20190129
+
+       Safety: require that $maillog_file matches one of the
+       pathname prefixes specified in $maillog_file_prefixes.  The
+       maillog file is created by root, and the prefixes limit the
+       damage from a single configuration error. Files:
+       global/mail_params.[hc], global/maillog_client.c.
index c87676085d7fffc66cd8c9401dbe2645532b0aa1..ddf248e94c916bc33972db089eef1d9ffd0f83c7 100644 (file)
@@ -35,8 +35,8 @@ Incompatible changes with snapshot 20190126-nonprod
 
 This introduces a new master.cf service type 'unix-dgram' that is
 used by the new postlogd(8) daemon. This type is not supported by
-older Postfix versions. Before backing out to an Postfix 3.3 or
-earlier, edit the master.cf file and remove the postlog entry.
+older Postfix versions. Before backing out to an older release,
+edit the master.cf file and remove the postlog entry.
 
 Major changes with snapshot 20190126-nonprod
 ============================================
@@ -52,10 +52,11 @@ Support for logging to file or stdout. This disables syslog logging.
 To enable Postfix logging to file or stdout:
 --------------------------------------------
 
-Add the following line to master.cf (no whitespace at the start of the line):
+Add the following line to master.cf if not already present (no
+whitespace at the start of the line):
     postlog   unix-dgram n  -       n       -       1       postlogd
 
-To write logs to Postfix logfile: 
+To write logs to Postfix logfile (see below for logfile rotation)
     # postfix stop
     # postconf maillog_file=/var/log/postfix.log
     # postfix start
@@ -64,24 +65,26 @@ To write logs to stdout, typically while Postfix runs in a container:
     # postconf maillog_file=/dev/stdout
     # postfix start-fg
 
+The maillog_file parameter must contain a prefix that is specified
+with the maillog_file_prefixes parameter (default: /var, /dev/stdout).
+This limits the damage from a single configuration mistake.
+
 To rotate a Postfix logfile with a daily cronjob:
 -------------------------------------------------
 
-The following applies when the maillog_file parameter specifies a
-reguar file.
-
-- Rename the current logfile in the same directory, appending the
-  current date to file file name. The following adds a suffix
-  of the form YYYYMMDD to file name:
-   # mv postfix.log postfix.log.$(date +%Y%M%d)
+The command "postfix logrotate" renames the logfile by appending a
+suffix that contains the date and time, reloads Postfix so that it
+closes the old logfile, and after a brief pause compresses the old
+logfile. This command will not rotate the log if it specifies a
+pathname under the /dev directory, such as /dev/stdout.
 
-- DO NOT YET COMPRESS THE FILE. POSTFIX STILL WRITES TO IT.
+The command "postfix logrotate" does not (yet) remove old logfiles.
 
-- Reload Postfix, so that postlogd(8) will start writing to a new
-  file:
-   # postfix reload
+Configuration parameters: 
+- maillog_file_compressor (gzip)
+- maillog_file_rotate_suffix (%Y%M%d-%H%M%S)
 
-- Compress the old file, and move it elsewhere if needed.
+See the postconf(5) manpage for detailed descriptions.
 
 Limitations of logging to Postfix logfile or stdout:
 ----------------------------------------------------
index 0526681c39982355bdee75042e5cab376eb149ec..72855e25c68e812b3a3e8473d6c67560473bddc0 100755 (executable)
@@ -405,8 +405,41 @@ tls)
        "$@"
        ;;
 
+logrotate)
+       case $# in
+       1) ;;
+       *) $FATAL "usage postfix $1 (no arguments)"; exit 1;;
+       esac
+       for name in maillog_file maillog_file_compressor \
+          maillog_file_rotate_suffix
+       do
+           value="`$command_directory/postconf -h $name`"
+           case "$value" in
+           "") $FATAL "empty '$name' parameter value - logfile rotation failed"
+               exit 1;;
+           esac
+           eval $name='"$value"';
+       done
+
+       case "$maillog_file" in
+       /dev/*) $FATAL "not rotating '$maillog_file'"; exit 1;;
+       esac
+
+       (
+           suffix="`date +$maillog_file_rotate_suffix`" || exit 1
+           mv "$maillog_file" "$maillog_file.$suffix" || exit 1
+           $daemon_directory/master -t 2>/dev/null ||
+               kill -HUP `sed 1q pid/master.pid`
+           sleep 1
+           "$maillog_file_compressor" "$maillog_file.$suffix" || exit 1
+       ) || {
+           $FATAL "logfile '$maillog_file' rotation failed"
+           exit 1
+       }
+       ;;
+
 *)
-       $FATAL "unknown command: '$1'. Usage: postfix start (or stop, reload, abort, flush, check, status, set-permissions, upgrade-configuration)"
+       $FATAL "unknown command: '$1'. Usage: postfix start (or stop, reload, abort, flush, check, status, set-permissions, upgrade-configuration, logrotate)"
        exit 1
        ;;
 
index 6aa08434c7ea72447df165f9d6cc7f98f3b9a03d..39550614f297ce267fcf215e03284caf8c3f9b66 100644 (file)
@@ -6245,13 +6245,54 @@ substitutions in regular expression maps. </p>
 Specify "/dev/stdout" for logging to standard output. Stdout logging
 requires that Postfix is started with "postfix start-fg".  </p>
 
-<p> Note: Some Postfix non-daemon programs may still log information
+<p> Note 1: The <a href="postconf.5.html#maillog_file">maillog_file</a> parameter value must contain a prefix
+that is specified with the <a href="postconf.5.html#maillog_file_prefixes">maillog_file_prefixes</a> parameter. </p>
+
+<p> Note 2: Some Postfix non-daemon programs may still log information
 to syslogd(8), before they have processed their configuration
 parameters and command-line options. </p>
 
 <p> This feature is available in Postfix 3.4 and later. </p>
 
 
+</DD>
+
+<DT><b><a name="maillog_file_compressor">maillog_file_compressor</a>
+(default: gzip)</b></DT><DD>
+
+<p> The program to run after rotating $<a href="postconf.5.html#maillog_file">maillog_file</a> with "postfix
+logrotate". The command is run with the rotated file as its first
+argument. </p>
+
+<p> This feature is available in Postfix 3.4 and later. </p>
+
+
+</DD>
+
+<DT><b><a name="maillog_file_prefixes">maillog_file_prefixes</a>
+(default: /var, /dev/stdout)</b></DT><DD>
+
+<p> A list of allowed prefixes for a <a href="postconf.5.html#maillog_file">maillog_file</a> value. This is a
+safety feature to contain the damage from a single configuration
+mistake. Specify one or more prefix strings, separated by comma or
+whitespace. </p>
+
+<p> This feature is available in Postfix 3.4 and later. </p>
+
+
+</DD>
+
+<DT><b><a name="maillog_file_rotate_suffix">maillog_file_rotate_suffix</a>
+(default: %Y%M%d-%H%M%S)</b></DT><DD>
+
+<p> The format of the suffix to append to $<a href="postconf.5.html#maillog_file">maillog_file</a> while rotating
+the file with "postfix logrotate". See strftime(3) for syntax. The
+default suffix, YYYYMMDD-HHMMSS, allows logs to be rotated frequently.
+</p>
+
+<p> This feature is available in Postfix 3.4 and later. </p>
+
+
 </DD>
 
 <DT><b><a name="mailq_path">mailq_path</a>
index aeec1c36c735d68b979eacee3e4a8ed07455902c..4c5c4f937115ee107404bf153cd53821abe8c5d8 100644 (file)
@@ -84,6 +84,15 @@ POSTFIX(1)                                                          POSTFIX(1)
               fix   2.0   and   earlier,  use  "<b>$<a href="postconf.5.html#config_directory">config_directory</a>/post-install</b>
               <b>set-permissions</b>".
 
+       <b>logrotate</b>
+              Rotate the logfile specified with $<a href="postconf.5.html#maillog_file">maillog_file</a>, by appending  a
+              time-stamp   suffix   that  is  formatted  according  to  $<a href="postconf.5.html#maillog_file_rotate_suffix">mail</a>-
+              <a href="postconf.5.html#maillog_file_rotate_suffix">log_file_rotate_suffix</a>, and by compressing  the  file  with  the
+              command  specified with $<a href="postconf.5.html#maillog_file_compressor">maillog_file_compressor</a>.  This will not
+              rotate /dev/* files.
+
+              This feature is available in Postfix 3.4 and later.
+
        <b>tls</b> <i>subcommand</i>
               Enable opportunistic TLS in the Postfix SMTP client  or  server,
               and  manage  Postfix  SMTP  server TLS private keys and certifi-
@@ -269,6 +278,17 @@ POSTFIX(1)                                                          POSTFIX(1)
               The  name  of an optional logfile that is written by the Postfix
               <a href="postlogd.8.html"><b>postlogd</b>(8)</a> service.
 
+       <b><a href="postconf.5.html#maillog_file_compressor">maillog_file_compressor</a> (gzip)</b>
+              The program to run after rotating  $<a href="postconf.5.html#maillog_file">maillog_file</a>  with  "postfix
+              logrotate".
+
+       <b><a href="postconf.5.html#maillog_file_prefixes">maillog_file_prefixes</a> (/var, /dev/stdout)</b>
+              A list of allowed prefixes for a <a href="postconf.5.html#maillog_file">maillog_file</a> value.
+
+       <b><a href="postconf.5.html#maillog_file_rotate_suffix">maillog_file_rotate_suffix</a> (%Y%M%d-%H%M%S)</b>
+              The format of the suffix to append to $<a href="postconf.5.html#maillog_file">maillog_file</a> while rotat-
+              ing the file with "postfix logrotate".
+
        <b><a href="postconf.5.html#postlog_service_name">postlog_service_name</a> (postlog)</b>
               The name of the <a href="postlogd.8.html"><b>postlogd</b>(8)</a> service entry in <a href="master.5.html">master.cf</a>.
 
index bc5775a62b135ca20249f1c090279356f9a1550c..7a8a39cd24a300318c1f37abcba1252688ce7985 100644 (file)
@@ -83,6 +83,14 @@ already installed Postfix system.
 This feature is available in Postfix 2.1 and later.  With
 Postfix 2.0 and earlier, use "\fB$config_directory/post\-install
 set\-permissions\fR".
+.IP "\fBlogrotate\fR"
+Rotate the logfile specified with $maillog_file, by appending
+a time\-stamp suffix that is formatted according to
+$maillog_file_rotate_suffix, and by compressing the file
+with the command specified with $maillog_file_compressor.
+This will not rotate /dev/* files.
+.sp
+This feature is available in Postfix 3.4 and later.
 .IP "\fBtls\fR \fIsubcommand\fR"
 Enable opportunistic TLS in the Postfix SMTP client or
 server, and manage Postfix SMTP server TLS private keys and
@@ -239,6 +247,14 @@ Available in Postfix version 3.4 and later:
 .IP "\fBmaillog_file (empty)\fR"
 The name of an optional logfile that is written by the Postfix
 \fBpostlogd\fR(8) service.
+.IP "\fBmaillog_file_compressor (gzip)\fR"
+The program to run after rotating $maillog_file with "postfix
+logrotate".
+.IP "\fBmaillog_file_prefixes (/var, /dev/stdout)\fR"
+A list of allowed prefixes for a maillog_file value.
+.IP "\fBmaillog_file_rotate_suffix (%Y%M%d\-%H%M%S)\fR"
+The format of the suffix to append to $maillog_file while rotating
+the file with "postfix logrotate".
 .IP "\fBpostlog_service_name (postlog)\fR"
 The name of the \fBpostlogd\fR(8) service entry in master.cf.
 .SH "FILES"
index fa01f867ac3c4eec71432d02a69ec01baa9caff4..dd8ab8e446e2019d2c6e73dc9e3a13520a9efff3 100644 (file)
@@ -3754,11 +3754,33 @@ The name of an optional logfile that is written by the Postfix
 Specify "/dev/stdout" for logging to standard output. Stdout logging
 requires that Postfix is started with "postfix start\-fg".
 .PP
-Note: Some Postfix non\-daemon programs may still log information
+Note 1: The maillog_file parameter value must contain a prefix
+that is specified with the maillog_file_prefixes parameter.
+.PP
+Note 2: Some Postfix non\-daemon programs may still log information
 to \fBsyslogd\fR(8), before they have processed their configuration
 parameters and command\-line options.
 .PP
 This feature is available in Postfix 3.4 and later.
+.SH maillog_file_compressor (default: gzip)
+The program to run after rotating $maillog_file with "postfix
+logrotate". The command is run with the rotated file as its first
+argument.
+.PP
+This feature is available in Postfix 3.4 and later.
+.SH maillog_file_prefixes (default: /var, /dev/stdout)
+A list of allowed prefixes for a maillog_file value. This is a
+safety feature to contain the damage from a single configuration
+mistake. Specify one or more prefix strings, separated by comma or
+whitespace.
+.PP
+This feature is available in Postfix 3.4 and later.
+.SH maillog_file_rotate_suffix (default: %Y%M%d\-%H%M%S)
+The format of the suffix to append to $maillog_file while rotating
+the file with "postfix logrotate". See \fBstrftime\fR(3) for syntax. The
+default suffix, YYYYMMDD\-HHMMSS, allows logs to be rotated frequently.
+.PP
+This feature is available in Postfix 3.4 and later.
 .SH mailq_path (default: see "postconf \-d" output)
 Sendmail compatibility feature that specifies where the Postfix
 \fBmailq\fR(1) command is installed. This command can be used to
index 8cd48b2eae0a7cf0378e2b988d4ba685093b081b..31b0172c67a3005d36f0536cfe5c817c5e90d280 100755 (executable)
@@ -1119,6 +1119,9 @@ while (<>) {
 
     # Internal logging.
     s;\bmail[-</bB>]*\n*[ <bB>]*log_file\b;<a href="postconf.5.html#maillog_file">$&</a>;g;
+    s;\bmail[-</bB>]*\n*[ <bB>]*log_file_compressor\b;<a href="postconf.5.html#maillog_file_compressor">$&</a>;g;
+    s;\bmail[-</bB>]*\n*[ <bB>]*log_file_prefixes\b;<a href="postconf.5.html#maillog_file_prefixes">$&</a>;g;
+    s;\bmail[-</bB>]*\n*[ <bB>]*log_file_rotate_suffix\b;<a href="postconf.5.html#maillog_file_rotate_suffix">$&</a>;g;
     s;\bpostlog_service_name\b;<a href="postconf.5.html#postlog_service_name">$&</a>;g;
     s;\bpostlogd_watchdog_timeout\b;<a href="postconf.5.html#postlogd_watchdog_timeout">$&</a>;g;
 
index 5c53add8e951f54e8855063460aebe99c21f94bf..12978a8e8c83ee6ca2b31c7e74c1af9a67aca15c 100644 (file)
@@ -17534,7 +17534,10 @@ postlogd(8) service. A non-empty value disables logging to syslogd(8).
 Specify "/dev/stdout" for logging to standard output. Stdout logging
 requires that Postfix is started with "postfix start-fg".  </p>
 
-<p> Note: Some Postfix non-daemon programs may still log information
+<p> Note 1: The maillog_file parameter value must contain a prefix
+that is specified with the maillog_file_prefixes parameter. </p>
+
+<p> Note 2: Some Postfix non-daemon programs may still log information
 to syslogd(8), before they have processed their configuration
 parameters and command-line options. </p>
 
@@ -17561,3 +17564,29 @@ one-letter suffix that specifies the time unit).  Time units: s
 (seconds), m (minutes), h (hours), d (days), w (weeks).  </p>
 
 <p> This feature is available in Postfix 3.4 and later.  </p>
+
+%PARAM maillog_file_prefixes /var, /dev/stdout
+
+<p> A list of allowed prefixes for a maillog_file value. This is a
+safety feature to contain the damage from a single configuration
+mistake. Specify one or more prefix strings, separated by comma or
+whitespace. </p>
+
+<p> This feature is available in Postfix 3.4 and later. </p>
+
+%PARAM maillog_file_compressor gzip
+
+<p> The program to run after rotating $maillog_file with "postfix
+logrotate". The command is run with the rotated file as its first
+argument. </p>
+
+<p> This feature is available in Postfix 3.4 and later. </p>
+
+%PARAM maillog_file_rotate_suffix %Y%M%d-%H%M%S
+
+<p> The format of the suffix to append to $maillog_file while rotating
+the file with "postfix logrotate". See strftime(3) for syntax. The
+default suffix, YYYYMMDD-HHMMSS, allows logs to be rotated frequently.
+</p>
+
+<p> This feature is available in Postfix 3.4 and later. </p>
index 21caa0d975276c2fa88a5e0fc0fa1a5bc88942f7..512a82641f82a4972799b73f6574b7b4732b7139 100644 (file)
@@ -1910,6 +1910,7 @@ mail_version.o: ../../include/vbuf.h
 mail_version.o: ../../include/vstring.h
 mail_version.o: mail_version.c
 mail_version.o: mail_version.h
+maillog_client.o: ../../include/argv.h
 maillog_client.o: ../../include/attr.h
 maillog_client.o: ../../include/check_arg.h
 maillog_client.o: ../../include/htable.h
index a504cce053f04a11b82c35f19e53ac34575d138c..8953fe6a24598ed0435c0b1aa4b5c476eec3cbea 100644 (file)
 /*     int     warn_compat_break_mynetworks_style;
 /*
 /*     char    *var_maillog_file;
+/*     char    *var_maillog_file_pfxs;
+/*     char    *var_maillog_file_comp;
+/*     char    *var_maillog_file_stamp;
 /*     char    *var_postlog_service;
 /* DESCRIPTION
 /*     This module (actually the associated include file) defines
@@ -352,6 +355,9 @@ char   *var_drop_hdrs;
 bool    var_enable_orcpt;
 
 char   *var_maillog_file;
+char   *var_maillog_file_pfxs;
+char   *var_maillog_file_comp;
+char   *var_maillog_file_stamp;
 char   *var_postlog_service;
 
 const char null_format_string[1] = "";
@@ -677,6 +683,9 @@ void    mail_params_init()
        VAR_MULTI_GROUP, DEF_MULTI_GROUP, &var_multi_group, 0, 0,
        VAR_MULTI_NAME, DEF_MULTI_NAME, &var_multi_name, 0, 0,
        VAR_MAILLOG_FILE, DEF_MAILLOG_FILE, &var_maillog_file, 0, 0,
+       VAR_MAILLOG_FILE_PFXS, DEF_MAILLOG_FILE_PFXS, &var_maillog_file_pfxs, 1, 0,
+       VAR_MAILLOG_FILE_COMP, DEF_MAILLOG_FILE_COMP, &var_maillog_file_comp, 1, 0,
+       VAR_MAILLOG_FILE_STAMP, DEF_MAILLOG_FILE_STAMP, &var_maillog_file_stamp, 1, 0,
        VAR_POSTLOG_SERVICE, DEF_POSTLOG_SERVICE, &var_postlog_service, 1, 0,
        0,
     };
index 05b7fc283517c959aaa74a5ff0f0dbd429fffb3a..cac8002d5d97f179f49c70b841f362bd7ea798b9 100644 (file)
@@ -4180,6 +4180,18 @@ extern bool var_dns_ncache_ttl_fix;
 #define DEF_MAILLOG_FILE       ""
 extern char *var_maillog_file;
 
+#define VAR_MAILLOG_FILE_PFXS  "maillog_file_prefixes"
+#define DEF_MAILLOG_FILE_PFXS  "/var, /dev/stdout"
+extern char *var_maillog_file_pfxs;
+
+#define VAR_MAILLOG_FILE_COMP  "maillog_file_compressor"
+#define DEF_MAILLOG_FILE_COMP  "gzip"
+extern char *var_maillog_file_comp;
+
+#define VAR_MAILLOG_FILE_STAMP "maillog_file_rotate_suffix"
+#define DEF_MAILLOG_FILE_STAMP "%Y%M%d-%H%M%S"
+extern char *var_maillog_file_stamp;
+
 #define VAR_POSTLOG_SERVICE    "postlog_service_name"
 #define DEF_POSTLOG_SERVICE    MAIL_SERVICE_POSTLOG
 extern char *var_postlog_service;
index f4675fa9581501e8cb3baae97a55984eed47aeb8..5bbc4670676f59ef7b450fdc1cafd29af17a3cff 100644 (file)
@@ -20,7 +20,7 @@
   * Patches change both the patchlevel and the release date. Snapshots have no
   * patchlevel; they change the release date only.
   */
-#define MAIL_RELEASE_DATE      "20190129"
+#define MAIL_RELEASE_DATE      "20190201"
 #define MAIL_VERSION_NUMBER    "3.4"
 
 #ifdef SNAPSHOT
index ab8c915034c7ff89c03bd63ce690a7faa53ce6f2..36def640ddc8c78f288ff57b6a6a5907d9ca6304 100644 (file)
   * System library.
   */
 #include <sys_defs.h>
+#include <string.h>
 
  /*
   * Utility library.
   */
+#include <argv.h>
 #include <logwriter.h>
 #include <msg_logger.h>
 #include <msg_syslog.h>
@@ -205,6 +207,21 @@ void    maillog_client_init(const char *progname, int flags)
        char   *myhostname;
        char   *service_path;
 
+       if (var_maillog_file && *var_maillog_file) {
+           ARGV   *good_prefixes = argv_split(var_maillog_file_pfxs,
+                                              CHARS_COMMA_SP);
+           char **cpp;
+
+           for (cpp = good_prefixes->argv; /* see below */ ; cpp++) {
+               if (*cpp == 0)
+                   msg_fatal("%s value '%s' does not match any prefix in %s",
+                             VAR_MAILLOG_FILE, var_maillog_file,
+                             VAR_MAILLOG_FILE_PFXS);
+               if (strncmp(var_maillog_file, *cpp, strlen(*cpp)) == 0)
+                   break;
+           }
+           argv_free(good_prefixes);
+       }
        if (var_myhostname && *var_myhostname) {
            myhostname = var_myhostname;
        } else if ((myhostname = import_hostname) == 0) {
index 1758c411dad205f3f5f1cbc78497fc97f4b6b84e..f8b3de45048a95f9510dd24173976dd7db2a770e 100644 (file)
 /*     This feature is available in Postfix 2.1 and later.  With
 /*     Postfix 2.0 and earlier, use "\fB$config_directory/post-install
 /*     set-permissions\fR".
+/* .IP "\fBlogrotate\fR"
+/*     Rotate the logfile specified with $maillog_file, by appending
+/*     a time-stamp suffix that is formatted according to
+/*     $maillog_file_rotate_suffix, and by compressing the file
+/*     with the command specified with $maillog_file_compressor.
+/*     This will not rotate /dev/* files.
+/* .sp
+/*     This feature is available in Postfix 3.4 and later.
 /* .IP "\fBtls\fR \fIsubcommand\fR"
 /*     Enable opportunistic TLS in the Postfix SMTP client or
 /*     server, and manage Postfix SMTP server TLS private keys and
 /* .IP "\fBmaillog_file (empty)\fR"
 /*     The name of an optional logfile that is written by the Postfix
 /*     \fBpostlogd\fR(8) service.
+/* .IP "\fBmaillog_file_compressor (gzip)\fR"
+/*     The program to run after rotating $maillog_file with "postfix
+/*     logrotate".
+/* .IP "\fBmaillog_file_prefixes (/var, /dev/stdout)\fR"
+/*     A list of allowed prefixes for a maillog_file value.
+/* .IP "\fBmaillog_file_rotate_suffix (%Y%M%d-%H%M%S)\fR"
+/*     The format of the suffix to append to $maillog_file while rotating
+/*     the file with "postfix logrotate".
 /* .IP "\fBpostlog_service_name (postlog)\fR"
 /*     The name of the \fBpostlogd\fR(8) service entry in master.cf.
 /* FILES