diff --git a/gnu/dist/postfix/HISTORY b/gnu/dist/postfix/HISTORY index 26ef4be670ed..d4b00cf0f6a7 100644 --- a/gnu/dist/postfix/HISTORY +++ b/gnu/dist/postfix/HISTORY @@ -14377,3 +14377,56 @@ Apologies for any names omitted. not updated when the smtpd_client_port_logging configuration parameter was added. Code by Victor Duchovni. Files: smtpd/smtpd.c, smtpd/smtpd_peer.c. + +20080509 + + Bugfix: null-terminate CN comment string after sanitization. + File: smtpd/smtpd.c. + +20080603 + + Workaround: avoid "bad address pattern" errors with non-address + patterns in namadr_list_match() calls. File: util/match_ops.c. + +20080620 + + Bugfix (introduced 20080207): "cleanup -v" panic because + the new "SMTP reply" request flag did not have a printable + name. File: global/cleanup_strflags.c. + + Cleanup: using "Before-queue content filter", RFC3848 + information was not added to the headers. Carlos Velasco. + File smtpd/smtpd.c. + +20080717 + + Cleanup: a poorly-implemented integer overflow check for + TCP MSS calculation had the unexpected effect that people + broke Postfix on LP64 systems while attempting to silence + a compiler warning. File: util/vstream_tweak.c. + +20080725 + + Paranoia: defer delivery when a mailbox file is not owned + by the recipient. Requested by Sebastian Krahmer, SuSE. + Specify "strict_mailbox_ownership=no" to ignore ownership + discrepancies. Files: local/mailbox.c, virtual/mailbox.c. + +20080804 + + Bugfix: dangling pointer in vstring_sprintf_prepend(). + File: util/vstring.c. + +20080814 + + Security: some systems have changed their link() semantics, + and will hardlink a symlink, contrary to POSIX and XPG4. + Sebastian Krahmer, SuSE. File: util/safe_open.c. + + The solution introduces the following incompatible change: + when the target of mail delivery is a symlink, the parent + directory of that symlink must now be writable by root only + (in addition to the already existing requirement that the + symlink itself is owned by root). This change will break + legitimate configurations that deliver mail to a symbolic + link in a directory with less restrictive permissions. diff --git a/gnu/dist/postfix/auxiliary/name-addr-test/getaddrinfo.c b/gnu/dist/postfix/auxiliary/name-addr-test/getaddrinfo.c new file mode 100644 index 000000000000..df551f230ec3 --- /dev/null +++ b/gnu/dist/postfix/auxiliary/name-addr-test/getaddrinfo.c @@ -0,0 +1,64 @@ + /* + * getaddrinfo(3) (name->address lookup) tester. + * + * Compile with: + * + * cc -o getaddrinfo getaddrinfo.c (BSD, Linux) + * + * cc -o getaddrinfo getaddrinfo.c -lsocket -lnsl (SunOS 5.x) + * + * Run as: getaddrinfo hostname + * + * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands. + * + * Author: Wietse Venema, IBM T.J. Watson Research, USA. + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +int main(int argc, char **argv) +{ + char hostbuf[NI_MAXHOST]; /* XXX */ + struct addrinfo hints; + struct addrinfo *res0; + struct addrinfo *res; + const char *addr; + int err; + +#define NO_SERVICE ((char *) 0) + + if (argc != 2) { + fprintf(stderr, "usage: %s hostname\n", argv[0]); + exit(1); + } + memset((char *) &hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_flags = AI_CANONNAME; + hints.ai_socktype = SOCK_STREAM; + if ((err = getaddrinfo(argv[1], NO_SERVICE, &hints, &res0)) != 0) { + fprintf(stderr, "host %s not found\n", argv[1]); + exit(1); + } + printf("Hostname:\t%s\n", res0->ai_canonname); + printf("Addresses:\t"); + for (res = res0; res != 0; res = res->ai_next) { + addr = (res->ai_family == AF_INET ? + (char *) &((struct sockaddr_in *) res->ai_addr)->sin_addr : + (char *) &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr); + if (inet_ntop(res->ai_family, addr, hostbuf, sizeof(hostbuf)) == 0) { + perror("inet_ntop:"); + exit(1); + } + printf("%s ", hostbuf); + } + printf("\n"); + freeaddrinfo(res0); + exit(0); +} diff --git a/gnu/dist/postfix/auxiliary/name-addr-test/gethostbyaddr.c b/gnu/dist/postfix/auxiliary/name-addr-test/gethostbyaddr.c new file mode 100644 index 000000000000..e58db9efac09 --- /dev/null +++ b/gnu/dist/postfix/auxiliary/name-addr-test/gethostbyaddr.c @@ -0,0 +1,46 @@ + /* + * gethostbyaddr tester. compile with: + * + * cc -o gethostbyaddr gethostbyaddr.c (SunOS 4.x) + * + * cc -o gethostbyaddr gethostbyaddr.c -lnsl (SunOS 5.x) + * + * run as: gethostbyaddr address + * + * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands. + */ + +#include +#include +#include +#include +#include +#include + +main(argc, argv) +int argc; +char **argv; +{ + struct hostent *hp; + long addr; + + if (argc != 2) { + fprintf(stderr, "usage: %s i.p.addres\n", argv[0]); + exit(1); + } + addr = inet_addr(argv[1]); + if (hp = gethostbyaddr((char *) &addr, sizeof(addr), AF_INET)) { + printf("Hostname:\t%s\n", hp->h_name); + printf("Aliases:\t"); + while (hp->h_aliases[0]) + printf("%s ", *hp->h_aliases++); + printf("\n"); + printf("Addresses:\t"); + while (hp->h_addr_list[0]) + printf("%s ", inet_ntoa(*(struct in_addr *) * hp->h_addr_list++)); + printf("\n"); + exit(0); + } + fprintf(stderr, "host %s not found\n", argv[1]); + exit(1); +} diff --git a/gnu/dist/postfix/auxiliary/name-addr-test/gethostbyname.c b/gnu/dist/postfix/auxiliary/name-addr-test/gethostbyname.c new file mode 100644 index 000000000000..d8079dd73b20 --- /dev/null +++ b/gnu/dist/postfix/auxiliary/name-addr-test/gethostbyname.c @@ -0,0 +1,44 @@ + /* + * gethostbyname tester. compile with: + * + * cc -o gethostbyname gethostbyname.c (SunOS 4.x) + * + * cc -o gethostbyname gethostbyname.c -lnsl (SunOS 5.x) + * + * run as: gethostbyname hostname + * + * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands. + */ +#include +#include +#include +#include +#include +#include + +main(argc, argv) +int argc; +char **argv; +{ + struct hostent *hp; + + if (argc != 2) { + fprintf(stderr, "usage: %s hostname\n", argv[0]); + exit(1); + } + if (hp = gethostbyname(argv[1])) { + printf("Hostname:\t%s\n", hp->h_name); + printf("Aliases:\t"); + while (hp->h_aliases[0]) + printf("%s ", *hp->h_aliases++); + printf("\n"); + printf("Addresses:\t"); + while (hp->h_addr_list[0]) + printf("%s ", inet_ntoa(*(struct in_addr *) * hp->h_addr_list++)); + printf("\n"); + exit(0); + } else { + fprintf(stderr, "host %s not found\n", argv[1]); + exit(1); + } +} diff --git a/gnu/dist/postfix/auxiliary/name-addr-test/getnameinfo.c b/gnu/dist/postfix/auxiliary/name-addr-test/getnameinfo.c new file mode 100644 index 000000000000..a270a062e173 --- /dev/null +++ b/gnu/dist/postfix/auxiliary/name-addr-test/getnameinfo.c @@ -0,0 +1,79 @@ + /* + * getnameinfo(3) (address->name lookup) tester. + * + * Compile with: + * + * cc -o getnameinfo getnameinfo.c (BSD, Linux) + * + * cc -o getnameinfo getnameinfo.c -lsocket -lnsl (SunOS 5.x) + * + * Run as: getnameinfo address + * + * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands. + * + * Author: Wietse Venema, IBM T.J. Watson Research, USA. + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +int main(int argc, char **argv) +{ + char hostbuf[NI_MAXHOST]; /* XXX */ + struct addrinfo hints; + struct addrinfo *res0; + struct addrinfo *res; + const char *host; + const char *addr; + int err; + +#define NO_SERVICE ((char *) 0) + + if (argc != 2) { + fprintf(stderr, "usage: %s ipaddres\n", argv[0]); + exit(1); + } + + /* + * Convert address to internal form. + */ + host = argv[1]; + memset((char *) &hints, 0, sizeof(hints)); + hints.ai_family = (strchr(host, ':') ? AF_INET6 : AF_INET); + hints.ai_socktype = SOCK_STREAM; + hints.ai_flags |= AI_NUMERICHOST; + if ((err = getaddrinfo(host, NO_SERVICE, &hints, &res0)) != 0) { + fprintf(stderr, "getaddrinfo %s: %s\n", host, gai_strerror(err)); + exit(1); + } + + /* + * Convert host address to name. + */ + for (res = res0; res != 0; res = res->ai_next) { + err = getnameinfo(res->ai_addr, res->ai_addrlen, + hostbuf, sizeof(hostbuf), + NO_SERVICE, 0, NI_NAMEREQD); + if (err) { + fprintf(stderr, "getnameinfo %s: %s\n", host, gai_strerror(err)); + exit(1); + } + printf("Hostname:\t%s\n", hostbuf); + addr = (res->ai_family == AF_INET ? + (char *) &((struct sockaddr_in *) res->ai_addr)->sin_addr : + (char *) &((struct sockaddr_in6 *) res->ai_addr)->sin6_addr); + if (inet_ntop(res->ai_family, addr, hostbuf, sizeof(hostbuf)) == 0) { + perror("inet_ntop:"); + exit(1); + } + printf("Address:\t%s\n", hostbuf); + } + freeaddrinfo(res0); + exit(0); +} diff --git a/gnu/dist/postfix/html/local.8.html b/gnu/dist/postfix/html/local.8.html index 6a5ff6c171c6..e43fdb985101 100644 --- a/gnu/dist/postfix/html/local.8.html +++ b/gnu/dist/postfix/html/local.8.html @@ -398,60 +398,66 @@ LOCAL(8) LOCAL(8) attempt; do not update the Delivered-To: address while expanding aliases or .forward files. + Available in Postfix version 2.5.3 and later: + + strict_mailbox_ownership (yes) + Defer delivery when a mailbox file is not owned by + its recipient. + DELIVERY METHOD CONTROLS - The precedence of local(8) delivery methods from high to - low is: aliases, .forward files, mailbox_transport_maps, - mailbox_transport, mailbox_command_maps, mailbox_command, - home_mailbox, mail_spool_directory, fallback_trans- + The precedence of local(8) delivery methods from high to + low is: aliases, .forward files, mailbox_transport_maps, + mailbox_transport, mailbox_command_maps, mailbox_command, + home_mailbox, mail_spool_directory, fallback_trans- port_maps, fallback_transport, and luser_relay. alias_maps (see 'postconf -d' output) - The alias databases that are used for local(8) + The alias databases that are used for local(8) delivery. forward_path (see 'postconf -d' output) The local(8) delivery agent search list for finding - a .forward file with user-specified delivery meth- + a .forward file with user-specified delivery meth- ods. mailbox_transport_maps (empty) - Optional lookup tables with per-recipient message - delivery transports to use for local(8) mailbox - delivery, whether or not the recipients are found + Optional lookup tables with per-recipient message + delivery transports to use for local(8) mailbox + delivery, whether or not the recipients are found in the UNIX passwd database. mailbox_transport (empty) - Optional message delivery transport that the - local(8) delivery agent should use for mailbox - delivery to all local recipients, whether or not + Optional message delivery transport that the + local(8) delivery agent should use for mailbox + delivery to all local recipients, whether or not they are found in the UNIX passwd database. mailbox_command_maps (empty) - Optional lookup tables with per-recipient external + Optional lookup tables with per-recipient external commands to use for local(8) mailbox delivery. mailbox_command (empty) - Optional external command that the local(8) deliv- + Optional external command that the local(8) deliv- ery agent should use for mailbox delivery. home_mailbox (empty) - Optional pathname of a mailbox file relative to a + Optional pathname of a mailbox file relative to a local(8) user's home directory. mail_spool_directory (see 'postconf -d' output) - The directory where local(8) UNIX-style mailboxes + The directory where local(8) UNIX-style mailboxes are kept. fallback_transport_maps (empty) - Optional lookup tables with per-recipient message - delivery transports for recipients that the - local(8) delivery agent could not find in the + Optional lookup tables with per-recipient message + delivery transports for recipients that the + local(8) delivery agent could not find in the aliases(5) or UNIX password database. fallback_transport (empty) - Optional message delivery transport that the - local(8) delivery agent should use for names that - are not found in the aliases(5) or UNIX password + Optional message delivery transport that the + local(8) delivery agent should use for names that + are not found in the aliases(5) or UNIX password database. luser_relay (empty) @@ -461,7 +467,7 @@ LOCAL(8) LOCAL(8) Available in Postfix version 2.2 and later: command_execution_directory (empty) - The local(8) delivery agent working directory for + The local(8) delivery agent working directory for delivery to external command. MAILBOX LOCKING CONTROLS @@ -470,15 +476,15 @@ LOCAL(8) LOCAL(8) sive lock on a mailbox file or bounce(8) logfile. deliver_lock_delay (1s) - The time between attempts to acquire an exclusive + The time between attempts to acquire an exclusive lock on a mailbox file or bounce(8) logfile. stale_lock_time (500s) - The time after which a stale exclusive mailbox + The time after which a stale exclusive mailbox lockfile is removed. mailbox_delivery_lock (see 'postconf -d' output) - How to lock a UNIX-style local(8) mailbox before + How to lock a UNIX-style local(8) mailbox before attempting delivery. RESOURCE AND RATE CONTROLS @@ -486,17 +492,17 @@ LOCAL(8) LOCAL(8) Time limit for delivery to external commands. duplicate_filter_limit (1000) - The maximal number of addresses remembered by the - address duplicate filter for aliases(5) or vir- + The maximal number of addresses remembered by the + address duplicate filter for aliases(5) or vir- tual(5) alias expansion, or for showq(8) queue dis- plays. local_destination_concurrency_limit (2) - The maximal number of parallel deliveries via the + The maximal number of parallel deliveries via the local mail delivery transport to the same recipient - (when "local_destination_recipient_limit = 1") or - the maximal number of parallel deliveries to the - same local domain (when "local_destination_recipi- + (when "local_destination_recipient_limit = 1") or + the maximal number of parallel deliveries to the + same local domain (when "local_destination_recipi- ent_limit > 1"). local_destination_recipient_limit (1) @@ -509,33 +515,39 @@ LOCAL(8) LOCAL(8) SECURITY CONTROLS allow_mail_to_commands (alias, forward) - Restrict local(8) mail delivery to external com- + Restrict local(8) mail delivery to external com- mands. allow_mail_to_files (alias, forward) - Restrict local(8) mail delivery to external files. + Restrict local(8) mail delivery to external files. command_expansion_filter (see 'postconf -d' output) - Restrict the characters that the local(8) delivery - agent allows in $name expansions of $mailbox_com- - mand. + Restrict the characters that the local(8) delivery + agent allows in $name expansions of $mailbox_com- + mand and $command_execution_directory. default_privs (nobody) - The default rights used by the local(8) delivery + The default rights used by the local(8) delivery agent for delivery to external file or command. forward_expansion_filter (see 'postconf -d' output) - Restrict the characters that the local(8) delivery - agent allows in $name expansions of $forward_path. + Restrict the characters that the local(8) delivery + agent allows in $name expansions of $forward_path. Available in Postfix version 2.2 and later: execution_directory_expansion_filter (see 'postconf -d' output) - Restrict the characters that the local(8) delivery + Restrict the characters that the local(8) delivery agent allows in $name expansions of $command_execu- tion_directory. + Available in Postfix version 2.5.3 and later: + + strict_mailbox_ownership (yes) + Defer delivery when a mailbox file is not owned by + its recipient. + MISCELLANEOUS CONTROLS config_directory (see 'postconf -d' output) The default location of the Postfix main.cf and diff --git a/gnu/dist/postfix/html/virtual.8.html b/gnu/dist/postfix/html/virtual.8.html index 7d1e21bdbe57..8645550ae357 100644 --- a/gnu/dist/postfix/html/virtual.8.html +++ b/gnu/dist/postfix/html/virtual.8.html @@ -200,9 +200,15 @@ VIRTUAL(8) VIRTUAL(8) destination for final delivery to domains listed with $virtual_mailbox_domains. + Available in Postfix version 2.5.3 and later: + + strict_mailbox_ownership (yes) + Defer delivery when a mailbox file is not owned by + its recipient. + LOCKING CONTROLS virtual_mailbox_lock (see 'postconf -d' output) - How to lock a UNIX-style virtual(8) mailbox before + How to lock a UNIX-style virtual(8) mailbox before attempting delivery. deliver_lock_attempts (20) @@ -210,41 +216,41 @@ VIRTUAL(8) VIRTUAL(8) sive lock on a mailbox file or bounce(8) logfile. deliver_lock_delay (1s) - The time between attempts to acquire an exclusive + The time between attempts to acquire an exclusive lock on a mailbox file or bounce(8) logfile. stale_lock_time (500s) - The time after which a stale exclusive mailbox + The time after which a stale exclusive mailbox lockfile is removed. RESOURCE AND RATE CONTROLS virtual_destination_concurrency_limit ($default_destina- tion_concurrency_limit) - The maximal number of parallel deliveries to the - same destination via the virtual message delivery + The maximal number of parallel deliveries to the + same destination via the virtual message delivery transport. virtual_destination_recipient_limit ($default_destina- tion_recipient_limit) - The maximal number of recipients per delivery via + The maximal number of recipients per delivery via the virtual message delivery transport. virtual_mailbox_limit (51200000) - The maximal size in bytes of an individual mailbox + The maximal size in bytes of an individual mailbox or maildir file, or zero (no limit). MISCELLANEOUS CONTROLS config_directory (see 'postconf -d' output) - The default location of the Postfix main.cf and + The default location of the Postfix main.cf and master.cf configuration files. daemon_timeout (18000s) - How much time a Postfix daemon process may take to - handle a request before it is terminated by a + How much time a Postfix daemon process may take to + handle a request before it is terminated by a built-in watchdog timer. delay_logging_resolution_limit (2) - The maximal number of digits after the decimal + The maximal number of digits after the decimal point when logging sub-second delay values. ipc_timeout (3600s) @@ -252,33 +258,33 @@ VIRTUAL(8) VIRTUAL(8) over an internal communication channel. max_idle (100s) - The maximum amount of time that an idle Postfix - daemon process waits for an incoming connection + The maximum amount of time that an idle Postfix + daemon process waits for an incoming connection before terminating voluntarily. max_use (100) - The maximal number of incoming connections that a - Postfix daemon process will service before termi- + The maximal number of incoming connections that a + Postfix daemon process will service before termi- nating voluntarily. process_id (read-only) - The process ID of a Postfix command or daemon + The process ID of a Postfix command or daemon process. process_name (read-only) - The process name of a Postfix command or daemon + The process name of a Postfix command or daemon process. queue_directory (see 'postconf -d' output) - The location of the Postfix top-level queue direc- + The location of the Postfix top-level queue direc- tory. syslog_facility (mail) The syslog facility of Postfix logging. syslog_name (postfix) - The mail system name that is prepended to the - process name in syslog records, so that "smtpd" + The mail system name that is prepended to the + process name in syslog records, so that "smtpd" becomes, for example, "postfix/smtpd". SEE ALSO @@ -291,20 +297,20 @@ VIRTUAL(8) VIRTUAL(8) VIRTUAL_README, domain hosting howto LICENSE - The Secure Mailer license must be distributed with this + The Secure Mailer license must be distributed with this software. HISTORY - This delivery agent was originally based on the Postfix - local delivery agent. Modifications mainly consisted of - removing code that either was not applicable or that was - not safe in this context: aliases, ~user/.forward files, + This delivery agent was originally based on the Postfix + local delivery agent. Modifications mainly consisted of + removing code that either was not applicable or that was + not safe in this context: aliases, ~user/.forward files, delivery to "|command" or to /file/name. The Delivered-To: message header appears in the qmail sys- tem by Daniel Bernstein. - The maildir structure appears in the qmail system by + The maildir structure appears in the qmail system by Daniel Bernstein. AUTHOR(S) diff --git a/gnu/dist/postfix/man/man1/mailq.1 b/gnu/dist/postfix/man/man1/mailq.1 index 5d0c4b0a6944..b12bf1859e53 100644 --- a/gnu/dist/postfix/man/man1/mailq.1 +++ b/gnu/dist/postfix/man/man1/mailq.1 @@ -1,3 +1 @@ -.\" $NetBSD: mailq.1,v 1.1.1.2 2004/05/31 00:24:16 heas Exp $ -.\" .so man1/sendmail.1 diff --git a/gnu/dist/postfix/man/man1/newaliases.1 b/gnu/dist/postfix/man/man1/newaliases.1 index 68a66d618ad2..b12bf1859e53 100644 --- a/gnu/dist/postfix/man/man1/newaliases.1 +++ b/gnu/dist/postfix/man/man1/newaliases.1 @@ -1,3 +1 @@ -.\" $NetBSD: newaliases.1,v 1.1.1.2 2004/05/31 00:24:16 heas Exp $ -.\" .so man1/sendmail.1 diff --git a/gnu/dist/postfix/man/man1/postalias.1 b/gnu/dist/postfix/man/man1/postalias.1 index 2248964b68f4..390a74e2cb65 100644 --- a/gnu/dist/postfix/man/man1/postalias.1 +++ b/gnu/dist/postfix/man/man1/postalias.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postalias.1,v 1.1.1.10 2007/02/05 17:36:47 rpaulo Exp $ -.\" .TH POSTALIAS 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postcat.1 b/gnu/dist/postfix/man/man1/postcat.1 index 204f34db4058..4c40c6b4f6aa 100644 --- a/gnu/dist/postfix/man/man1/postcat.1 +++ b/gnu/dist/postfix/man/man1/postcat.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postcat.1,v 1.1.1.5 2005/08/18 21:03:46 rpaulo Exp $ -.\" .TH POSTCAT 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postconf.1 b/gnu/dist/postfix/man/man1/postconf.1 index 23fbe86afba6..c0fed1ae446c 100644 --- a/gnu/dist/postfix/man/man1/postconf.1 +++ b/gnu/dist/postfix/man/man1/postconf.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postconf.1,v 1.1.1.9 2007/08/02 08:04:46 heas Exp $ -.\" .TH POSTCONF 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postdrop.1 b/gnu/dist/postfix/man/man1/postdrop.1 index 6223160a227f..edab93ad1492 100644 --- a/gnu/dist/postfix/man/man1/postdrop.1 +++ b/gnu/dist/postfix/man/man1/postdrop.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postdrop.1,v 1.1.1.8 2006/07/19 01:16:44 rpaulo Exp $ -.\" .TH POSTDROP 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postfix.1 b/gnu/dist/postfix/man/man1/postfix.1 index 65fd25defe76..4d46606e9e73 100644 --- a/gnu/dist/postfix/man/man1/postfix.1 +++ b/gnu/dist/postfix/man/man1/postfix.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postfix.1,v 1.1.1.11 2008/06/22 14:00:59 christos Exp $ -.\" .TH POSTFIX 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postkick.1 b/gnu/dist/postfix/man/man1/postkick.1 index c8def7129026..c85314fe7b01 100644 --- a/gnu/dist/postfix/man/man1/postkick.1 +++ b/gnu/dist/postfix/man/man1/postkick.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postkick.1,v 1.1.1.5 2005/08/18 21:03:48 rpaulo Exp $ -.\" .TH POSTKICK 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postlock.1 b/gnu/dist/postfix/man/man1/postlock.1 index 576cfa71d039..18eacd3cf17b 100644 --- a/gnu/dist/postfix/man/man1/postlock.1 +++ b/gnu/dist/postfix/man/man1/postlock.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postlock.1,v 1.1.1.5 2005/08/18 21:03:48 rpaulo Exp $ -.\" .TH POSTLOCK 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postlog.1 b/gnu/dist/postfix/man/man1/postlog.1 index 57a9613bf2fe..ab067d386d5e 100644 --- a/gnu/dist/postfix/man/man1/postlog.1 +++ b/gnu/dist/postfix/man/man1/postlog.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postlog.1,v 1.1.1.6 2007/05/19 16:27:47 heas Exp $ -.\" .TH POSTLOG 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postmap.1 b/gnu/dist/postfix/man/man1/postmap.1 index 29e0bd6bfddb..cdc32313883e 100644 --- a/gnu/dist/postfix/man/man1/postmap.1 +++ b/gnu/dist/postfix/man/man1/postmap.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postmap.1,v 1.1.1.11 2007/05/19 16:27:48 heas Exp $ -.\" .TH POSTMAP 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postqueue.1 b/gnu/dist/postfix/man/man1/postqueue.1 index 925a2cf2f03e..a6f51534ca33 100644 --- a/gnu/dist/postfix/man/man1/postqueue.1 +++ b/gnu/dist/postfix/man/man1/postqueue.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postqueue.1,v 1.1.1.8 2007/05/19 16:27:48 heas Exp $ -.\" .TH POSTQUEUE 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/postsuper.1 b/gnu/dist/postfix/man/man1/postsuper.1 index 97d5aebad456..c38dc8f9d8df 100644 --- a/gnu/dist/postfix/man/man1/postsuper.1 +++ b/gnu/dist/postfix/man/man1/postsuper.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: postsuper.1,v 1.1.1.11 2008/06/22 14:00:59 christos Exp $ -.\" .TH POSTSUPER 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/qmqp-sink.1 b/gnu/dist/postfix/man/man1/qmqp-sink.1 index 60b7e35aaffb..f26c1c9c2c41 100644 --- a/gnu/dist/postfix/man/man1/qmqp-sink.1 +++ b/gnu/dist/postfix/man/man1/qmqp-sink.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: qmqp-sink.1,v 1.1.1.5 2007/05/19 16:27:48 heas Exp $ -.\" .TH QMQP-SINK 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/qmqp-source.1 b/gnu/dist/postfix/man/man1/qmqp-source.1 index 91e7334a2b2a..9cdfb476c10f 100644 --- a/gnu/dist/postfix/man/man1/qmqp-source.1 +++ b/gnu/dist/postfix/man/man1/qmqp-source.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: qmqp-source.1,v 1.1.1.6 2007/05/19 16:27:47 heas Exp $ -.\" .TH QMQP-SOURCE 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/qshape.1 b/gnu/dist/postfix/man/man1/qshape.1 index c2fbf4fae408..cd8b6350db4f 100644 --- a/gnu/dist/postfix/man/man1/qshape.1 +++ b/gnu/dist/postfix/man/man1/qshape.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: qshape.1,v 1.1.1.5 2007/05/19 16:27:48 heas Exp $ -.\" .TH QSHAPE 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/sendmail.1 b/gnu/dist/postfix/man/man1/sendmail.1 index ad63556c8433..c3873cd7ce9e 100644 --- a/gnu/dist/postfix/man/man1/sendmail.1 +++ b/gnu/dist/postfix/man/man1/sendmail.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: sendmail.1,v 1.1.1.12 2008/06/22 14:01:00 christos Exp $ -.\" .TH SENDMAIL 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/smtp-sink.1 b/gnu/dist/postfix/man/man1/smtp-sink.1 index c2de1dfe66d1..d040ed8f0c2b 100644 --- a/gnu/dist/postfix/man/man1/smtp-sink.1 +++ b/gnu/dist/postfix/man/man1/smtp-sink.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: smtp-sink.1,v 1.1.1.7 2008/06/22 14:01:00 christos Exp $ -.\" .TH SMTP-SINK 1 .ad .fi diff --git a/gnu/dist/postfix/man/man1/smtp-source.1 b/gnu/dist/postfix/man/man1/smtp-source.1 index 09f7e23a11f2..21b4e06cad93 100644 --- a/gnu/dist/postfix/man/man1/smtp-source.1 +++ b/gnu/dist/postfix/man/man1/smtp-source.1 @@ -1,5 +1,3 @@ -.\" $NetBSD: smtp-source.1,v 1.1.1.7 2008/06/22 14:00:58 christos Exp $ -.\" .TH SMTP-SOURCE 1 .ad .fi diff --git a/gnu/dist/postfix/man/man5/access.5 b/gnu/dist/postfix/man/man5/access.5 index 8fcbe4f13b70..e96f4ad3b6a0 100644 --- a/gnu/dist/postfix/man/man5/access.5 +++ b/gnu/dist/postfix/man/man5/access.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: access.5,v 1.1.1.16 2008/06/22 14:01:01 christos Exp $ -.\" .TH ACCESS 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/aliases.5 b/gnu/dist/postfix/man/man5/aliases.5 index 9389f4e32f0f..5ad9928f4b06 100644 --- a/gnu/dist/postfix/man/man5/aliases.5 +++ b/gnu/dist/postfix/man/man5/aliases.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: aliases.5,v 1.1.1.9 2007/05/19 16:27:48 heas Exp $ -.\" .TH ALIASES 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/body_checks.5 b/gnu/dist/postfix/man/man5/body_checks.5 index 0de12e03e765..d7c939e7e77b 100644 --- a/gnu/dist/postfix/man/man5/body_checks.5 +++ b/gnu/dist/postfix/man/man5/body_checks.5 @@ -1,3 +1 @@ -.\" $NetBSD: body_checks.5,v 1.1.1.2 2004/05/31 00:24:16 heas Exp $ -.\" .so man5/header_checks.5 diff --git a/gnu/dist/postfix/man/man5/bounce.5 b/gnu/dist/postfix/man/man5/bounce.5 index 77ed6b93d48d..2fddcac5e85f 100644 --- a/gnu/dist/postfix/man/man5/bounce.5 +++ b/gnu/dist/postfix/man/man5/bounce.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: bounce.5,v 1.1.1.5 2008/06/22 14:01:01 christos Exp $ -.\" .TH BOUNCE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/cidr_table.5 b/gnu/dist/postfix/man/man5/cidr_table.5 index 4d7b1985559d..f25ab45cd791 100644 --- a/gnu/dist/postfix/man/man5/cidr_table.5 +++ b/gnu/dist/postfix/man/man5/cidr_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: cidr_table.5,v 1.1.1.5 2008/06/22 14:01:01 christos Exp $ -.\" .TH CIDR_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/generic.5 b/gnu/dist/postfix/man/man5/generic.5 index bffc6b6113af..13b9dd0f0e5e 100644 --- a/gnu/dist/postfix/man/man5/generic.5 +++ b/gnu/dist/postfix/man/man5/generic.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: generic.5,v 1.1.1.3 2007/05/19 16:27:48 heas Exp $ -.\" .TH GENERIC 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/header_checks.5 b/gnu/dist/postfix/man/man5/header_checks.5 index ba2cc97f4dd7..1b2b11bec549 100644 --- a/gnu/dist/postfix/man/man5/header_checks.5 +++ b/gnu/dist/postfix/man/man5/header_checks.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: header_checks.5,v 1.1.1.8 2008/06/22 14:01:01 christos Exp $ -.\" .TH HEADER_CHECKS 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/ldap_table.5 b/gnu/dist/postfix/man/man5/ldap_table.5 index d07cd0cc64b3..043ab1b794f2 100644 --- a/gnu/dist/postfix/man/man5/ldap_table.5 +++ b/gnu/dist/postfix/man/man5/ldap_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: ldap_table.5,v 1.1.1.6 2008/06/22 14:01:02 christos Exp $ -.\" .TH LDAP_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/master.5 b/gnu/dist/postfix/man/man5/master.5 index eedb2178b6cd..4148063534e7 100644 --- a/gnu/dist/postfix/man/man5/master.5 +++ b/gnu/dist/postfix/man/man5/master.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: master.5,v 1.1.1.4 2008/06/22 14:01:02 christos Exp $ -.\" .TH MASTER 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/mysql_table.5 b/gnu/dist/postfix/man/man5/mysql_table.5 index fe48d30158d5..bde924affba8 100644 --- a/gnu/dist/postfix/man/man5/mysql_table.5 +++ b/gnu/dist/postfix/man/man5/mysql_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: mysql_table.5,v 1.1.1.5 2008/06/22 14:01:02 christos Exp $ -.\" .TH MYSQL_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/nisplus_table.5 b/gnu/dist/postfix/man/man5/nisplus_table.5 index a4d98d444b8e..d4dd670a1971 100644 --- a/gnu/dist/postfix/man/man5/nisplus_table.5 +++ b/gnu/dist/postfix/man/man5/nisplus_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: nisplus_table.5,v 1.1.1.2 2007/05/19 16:27:49 heas Exp $ -.\" .TH NISPLUS_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/pcre_table.5 b/gnu/dist/postfix/man/man5/pcre_table.5 index 698d616b9703..c3c008fb1d15 100644 --- a/gnu/dist/postfix/man/man5/pcre_table.5 +++ b/gnu/dist/postfix/man/man5/pcre_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: pcre_table.5,v 1.1.1.10 2007/05/19 16:27:49 heas Exp $ -.\" .TH PCRE_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/pgsql_table.5 b/gnu/dist/postfix/man/man5/pgsql_table.5 index 7c7bc5a6b04e..3ee3b7d80edc 100644 --- a/gnu/dist/postfix/man/man5/pgsql_table.5 +++ b/gnu/dist/postfix/man/man5/pgsql_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: pgsql_table.5,v 1.1.1.5 2008/06/22 14:01:02 christos Exp $ -.\" .TH PGSQL_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/regexp_table.5 b/gnu/dist/postfix/man/man5/regexp_table.5 index f3a42ecca3b1..d67d710a825a 100644 --- a/gnu/dist/postfix/man/man5/regexp_table.5 +++ b/gnu/dist/postfix/man/man5/regexp_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: regexp_table.5,v 1.1.1.13 2008/06/22 14:01:09 christos Exp $ -.\" .TH REGEXP_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/relocated.5 b/gnu/dist/postfix/man/man5/relocated.5 index 7ecef2092110..66798dd0522d 100644 --- a/gnu/dist/postfix/man/man5/relocated.5 +++ b/gnu/dist/postfix/man/man5/relocated.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: relocated.5,v 1.1.1.10 2007/05/19 16:27:51 heas Exp $ -.\" .TH RELOCATED 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/tcp_table.5 b/gnu/dist/postfix/man/man5/tcp_table.5 index 3135198dc34b..6eb90fedde0c 100644 --- a/gnu/dist/postfix/man/man5/tcp_table.5 +++ b/gnu/dist/postfix/man/man5/tcp_table.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: tcp_table.5,v 1.1.1.1 2006/07/19 01:16:48 rpaulo Exp $ -.\" .TH TCP_TABLE 5 .ad .fi diff --git a/gnu/dist/postfix/man/man5/transport.5 b/gnu/dist/postfix/man/man5/transport.5 index f4dfbe7d72a4..24a211808c78 100644 --- a/gnu/dist/postfix/man/man5/transport.5 +++ b/gnu/dist/postfix/man/man5/transport.5 @@ -1,5 +1,3 @@ -.\" $NetBSD: transport.5,v 1.1.1.13 2008/06/22 14:01:10 christos Exp $ -.\" .TH TRANSPORT 5 .ad .fi diff --git a/gnu/dist/postfix/man/man8/anvil.8 b/gnu/dist/postfix/man/man8/anvil.8 index 22199f61ac0a..c356106371cf 100644 --- a/gnu/dist/postfix/man/man8/anvil.8 +++ b/gnu/dist/postfix/man/man8/anvil.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: anvil.8,v 1.1.1.3 2007/05/19 16:27:51 heas Exp $ -.\" .TH ANVIL 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/bounce.8 b/gnu/dist/postfix/man/man8/bounce.8 index 7a1bfab767e1..dfaa53a46507 100644 --- a/gnu/dist/postfix/man/man8/bounce.8 +++ b/gnu/dist/postfix/man/man8/bounce.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: bounce.8,v 1.1.1.8 2007/05/19 16:27:51 heas Exp $ -.\" .TH BOUNCE 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/defer.8 b/gnu/dist/postfix/man/man8/defer.8 index 77c236ddc3cd..411dfa138447 100644 --- a/gnu/dist/postfix/man/man8/defer.8 +++ b/gnu/dist/postfix/man/man8/defer.8 @@ -1,3 +1 @@ -.\" $NetBSD: defer.8,v 1.1.1.2 2004/05/31 00:24:19 heas Exp $ -.\" .so man8/bounce.8 diff --git a/gnu/dist/postfix/man/man8/discard.8 b/gnu/dist/postfix/man/man8/discard.8 index 15007c7e319e..7a9cd7dae735 100644 --- a/gnu/dist/postfix/man/man8/discard.8 +++ b/gnu/dist/postfix/man/man8/discard.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: discard.8,v 1.1.1.3 2007/05/19 16:27:51 heas Exp $ -.\" .TH DISCARD 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/error.8 b/gnu/dist/postfix/man/man8/error.8 index 0e3f649e55a9..5fa8f73b6d44 100644 --- a/gnu/dist/postfix/man/man8/error.8 +++ b/gnu/dist/postfix/man/man8/error.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: error.8,v 1.1.1.8 2008/06/22 14:01:13 christos Exp $ -.\" .TH ERROR 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/flush.8 b/gnu/dist/postfix/man/man8/flush.8 index 7dac123f4f0c..91313b9f9bf9 100644 --- a/gnu/dist/postfix/man/man8/flush.8 +++ b/gnu/dist/postfix/man/man8/flush.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: flush.8,v 1.1.1.7 2007/05/19 16:27:51 heas Exp $ -.\" .TH FLUSH 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/oqmgr.8 b/gnu/dist/postfix/man/man8/oqmgr.8 index 3b47ebf107f6..0196a3abcbde 100644 --- a/gnu/dist/postfix/man/man8/oqmgr.8 +++ b/gnu/dist/postfix/man/man8/oqmgr.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: oqmgr.8,v 1.1.1.6 2008/06/22 14:01:14 christos Exp $ -.\" .TH OQMGR 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/pickup.8 b/gnu/dist/postfix/man/man8/pickup.8 index ef4917efb713..2c72040916ce 100644 --- a/gnu/dist/postfix/man/man8/pickup.8 +++ b/gnu/dist/postfix/man/man8/pickup.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: pickup.8,v 1.1.1.9 2007/05/19 16:27:52 heas Exp $ -.\" .TH PICKUP 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/pipe.8 b/gnu/dist/postfix/man/man8/pipe.8 index b51d0731e613..80042c83b1e4 100644 --- a/gnu/dist/postfix/man/man8/pipe.8 +++ b/gnu/dist/postfix/man/man8/pipe.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: pipe.8,v 1.1.1.11 2008/06/22 14:01:14 christos Exp $ -.\" .TH PIPE 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/proxymap.8 b/gnu/dist/postfix/man/man8/proxymap.8 index 98306dac886e..225dc3db43f8 100644 --- a/gnu/dist/postfix/man/man8/proxymap.8 +++ b/gnu/dist/postfix/man/man8/proxymap.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: proxymap.8,v 1.1.1.8 2008/06/22 14:01:15 christos Exp $ -.\" .TH PROXYMAP 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/qmgr.8 b/gnu/dist/postfix/man/man8/qmgr.8 index 054255ebeec4..610c4ee63d89 100644 --- a/gnu/dist/postfix/man/man8/qmgr.8 +++ b/gnu/dist/postfix/man/man8/qmgr.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: qmgr.8,v 1.1.1.10 2008/06/22 14:01:15 christos Exp $ -.\" .TH QMGR 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/qmqpd.8 b/gnu/dist/postfix/man/man8/qmqpd.8 index 021ce71d3f52..b9e0a231c48e 100644 --- a/gnu/dist/postfix/man/man8/qmqpd.8 +++ b/gnu/dist/postfix/man/man8/qmqpd.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: qmqpd.8,v 1.1.1.7 2008/06/22 14:01:15 christos Exp $ -.\" .TH QMQPD 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/scache.8 b/gnu/dist/postfix/man/man8/scache.8 index 7770314babd1..4b200166a398 100644 --- a/gnu/dist/postfix/man/man8/scache.8 +++ b/gnu/dist/postfix/man/man8/scache.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: scache.8,v 1.1.1.2 2007/05/19 16:27:52 heas Exp $ -.\" .TH SCACHE 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/showq.8 b/gnu/dist/postfix/man/man8/showq.8 index f604c5b65a63..46bbfa6f807f 100644 --- a/gnu/dist/postfix/man/man8/showq.8 +++ b/gnu/dist/postfix/man/man8/showq.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: showq.8,v 1.1.1.6 2007/05/19 16:27:52 heas Exp $ -.\" .TH SHOWQ 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/smtp.8 b/gnu/dist/postfix/man/man8/smtp.8 index a83147346a8a..830b7262547b 100644 --- a/gnu/dist/postfix/man/man8/smtp.8 +++ b/gnu/dist/postfix/man/man8/smtp.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: smtp.8,v 1.1.1.16 2008/06/22 14:01:16 christos Exp $ -.\" .TH SMTP 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/smtpd.8 b/gnu/dist/postfix/man/man8/smtpd.8 index 24e5016a1f37..0714d2d541b6 100644 --- a/gnu/dist/postfix/man/man8/smtpd.8 +++ b/gnu/dist/postfix/man/man8/smtpd.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: smtpd.8,v 1.1.1.16 2008/06/22 14:01:16 christos Exp $ -.\" .TH SMTPD 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/spawn.8 b/gnu/dist/postfix/man/man8/spawn.8 index 32f876756a4f..21418fc13ce3 100644 --- a/gnu/dist/postfix/man/man8/spawn.8 +++ b/gnu/dist/postfix/man/man8/spawn.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: spawn.8,v 1.1.1.7 2007/05/19 16:27:53 heas Exp $ -.\" .TH SPAWN 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/tlsmgr.8 b/gnu/dist/postfix/man/man8/tlsmgr.8 index 7c5b7a59cc80..665f8f99c911 100644 --- a/gnu/dist/postfix/man/man8/tlsmgr.8 +++ b/gnu/dist/postfix/man/man8/tlsmgr.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: tlsmgr.8,v 1.1.1.3 2008/06/22 14:01:16 christos Exp $ -.\" .TH TLSMGR 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/trace.8 b/gnu/dist/postfix/man/man8/trace.8 index ca3a27de6e7c..411dfa138447 100644 --- a/gnu/dist/postfix/man/man8/trace.8 +++ b/gnu/dist/postfix/man/man8/trace.8 @@ -1,3 +1 @@ -.\" $NetBSD: trace.8,v 1.1.1.2 2004/05/31 00:24:20 heas Exp $ -.\" .so man8/bounce.8 diff --git a/gnu/dist/postfix/man/man8/trivial-rewrite.8 b/gnu/dist/postfix/man/man8/trivial-rewrite.8 index 5b1d66658b09..3885570ecd47 100644 --- a/gnu/dist/postfix/man/man8/trivial-rewrite.8 +++ b/gnu/dist/postfix/man/man8/trivial-rewrite.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: trivial-rewrite.8,v 1.1.1.13 2008/06/22 14:01:11 christos Exp $ -.\" .TH TRIVIAL-REWRITE 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/verify.8 b/gnu/dist/postfix/man/man8/verify.8 index 3fafc051105b..fa8c05ec9d0b 100644 --- a/gnu/dist/postfix/man/man8/verify.8 +++ b/gnu/dist/postfix/man/man8/verify.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: verify.8,v 1.1.1.4 2008/06/22 14:01:16 christos Exp $ -.\" .TH VERIFY 8 .ad .fi diff --git a/gnu/dist/postfix/man/man8/virtual.8 b/gnu/dist/postfix/man/man8/virtual.8 index 72b694bbb0ae..22e41b511e66 100644 --- a/gnu/dist/postfix/man/man8/virtual.8 +++ b/gnu/dist/postfix/man/man8/virtual.8 @@ -1,5 +1,3 @@ -.\" $NetBSD: virtual.8,v 1.1.1.9 2007/05/19 16:27:53 heas Exp $ -.\" .TH VIRTUAL 8 .ad .fi @@ -215,6 +213,10 @@ mail is delivered via the $virtual_transport mail delivery transport. .IP "\fBvirtual_transport (virtual)\fR" The default mail delivery transport and next-hop destination for final delivery to domains listed with $virtual_mailbox_domains. +.PP +Available in Postfix version 2.5.3 and later: +.IP "\fBstrict_mailbox_ownership (yes)\fR" +Defer delivery when a mailbox file is not owned by its recipient. .SH "LOCKING CONTROLS" .na .nf diff --git a/gnu/dist/postfix/mantools/postlink b/gnu/dist/postfix/mantools/postlink index 07c43c01f76f..be98d67e78d4 100755 --- a/gnu/dist/postfix/mantools/postlink +++ b/gnu/dist/postfix/mantools/postlink @@ -517,6 +517,7 @@ while (<>) { s;\bstrict_8bitmime\b;$&;g; s;\bstrict_8bitmime_body\b;$&;g; s;\bstrict_mime_encoding_domain\b;$&;g; + s;\bstrict_mailbox_ownership\b;$&;g; s;\bstrict_rfc821_envelopes\b;$&;g; s;\bsun_mailtool_compatibility\b;$&;g; s;\bswap_bangpath\b;$&;g; diff --git a/gnu/dist/postfix/src/anvil/.printfck b/gnu/dist/postfix/src/anvil/.printfck new file mode 100644 index 000000000000..66016ed453ca --- /dev/null +++ b/gnu/dist/postfix/src/anvil/.printfck @@ -0,0 +1,25 @@ +been_here_xt 2 0 +bounce_append 5 0 +cleanup_out_format 1 0 +defer_append 5 0 +mail_command 1 0 +mail_print 1 0 +msg_error 0 0 +msg_fatal 0 0 +msg_info 0 0 +msg_panic 0 0 +msg_warn 0 0 +opened 4 0 +post_mail_fprintf 1 0 +qmgr_message_bounce 2 0 +rec_fprintf 2 0 +sent 4 0 +smtp_cmd 1 0 +smtp_mesg_fail 2 0 +smtp_printf 1 0 +smtp_rcpt_fail 3 0 +smtp_site_fail 2 0 +udp_syslog 1 0 +vstream_fprintf 1 0 +vstream_printf 0 0 +vstring_sprintf 1 0 diff --git a/gnu/dist/postfix/src/anvil/anvil.c b/gnu/dist/postfix/src/anvil/anvil.c index 53359ada488c..ac45cf30574a 100644 --- a/gnu/dist/postfix/src/anvil/anvil.c +++ b/gnu/dist/postfix/src/anvil/anvil.c @@ -1,5 +1,3 @@ -/* $NetBSD: anvil.c,v 1.1.1.5 2008/06/22 14:02:02 christos Exp $ */ - /*++ /* NAME /* anvil 8 diff --git a/gnu/dist/postfix/src/bounce/bounce.c b/gnu/dist/postfix/src/bounce/bounce.c index 3009ee8153d3..ae62d21db166 100644 --- a/gnu/dist/postfix/src/bounce/bounce.c +++ b/gnu/dist/postfix/src/bounce/bounce.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce.c,v 1.1.1.9 2008/06/22 14:02:02 christos Exp $ */ - /*++ /* NAME /* bounce 8 diff --git a/gnu/dist/postfix/src/bounce/bounce_append_service.c b/gnu/dist/postfix/src/bounce/bounce_append_service.c index aca2436cd767..582bb1977bcc 100644 --- a/gnu/dist/postfix/src/bounce/bounce_append_service.c +++ b/gnu/dist/postfix/src/bounce/bounce_append_service.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_append_service.c,v 1.1.1.5 2006/07/19 01:17:17 rpaulo Exp $ */ - /*++ /* NAME /* bounce_append_service 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_cleanup.c b/gnu/dist/postfix/src/bounce/bounce_cleanup.c index bc6d01a340eb..9fb900bb0abc 100644 --- a/gnu/dist/postfix/src/bounce/bounce_cleanup.c +++ b/gnu/dist/postfix/src/bounce/bounce_cleanup.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_cleanup.c,v 1.1.1.4 2006/12/21 02:31:23 rpaulo Exp $ */ - /*++ /* NAME /* bounce_cleanup 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_notify_service.c b/gnu/dist/postfix/src/bounce/bounce_notify_service.c index e5904a03e84a..2f9fdb81b212 100644 --- a/gnu/dist/postfix/src/bounce/bounce_notify_service.c +++ b/gnu/dist/postfix/src/bounce/bounce_notify_service.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_notify_service.c,v 1.1.1.6 2006/07/19 01:17:17 rpaulo Exp $ */ - /*++ /* NAME /* bounce_notify_service 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_notify_util.c b/gnu/dist/postfix/src/bounce/bounce_notify_util.c index 2e3f571e1cb4..44a91ab55b30 100644 --- a/gnu/dist/postfix/src/bounce/bounce_notify_util.c +++ b/gnu/dist/postfix/src/bounce/bounce_notify_util.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_notify_util.c,v 1.1.1.10 2006/07/19 01:17:17 rpaulo Exp $ */ - /*++ /* NAME /* bounce_notify_util 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_notify_verp.c b/gnu/dist/postfix/src/bounce/bounce_notify_verp.c index 52d48b75f662..dbc5e5613898 100644 --- a/gnu/dist/postfix/src/bounce/bounce_notify_verp.c +++ b/gnu/dist/postfix/src/bounce/bounce_notify_verp.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_notify_verp.c,v 1.1.1.5 2006/07/19 01:17:17 rpaulo Exp $ */ - /*++ /* NAME /* bounce_notify_verp 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_one_service.c b/gnu/dist/postfix/src/bounce/bounce_one_service.c index 323f2d135c4f..5373e74e1a46 100644 --- a/gnu/dist/postfix/src/bounce/bounce_one_service.c +++ b/gnu/dist/postfix/src/bounce/bounce_one_service.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_one_service.c,v 1.1.1.4 2006/07/19 01:17:17 rpaulo Exp $ */ - /*++ /* NAME /* bounce_one_service 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_service.h b/gnu/dist/postfix/src/bounce/bounce_service.h index 125dadb045a2..0a9bc4d0225d 100644 --- a/gnu/dist/postfix/src/bounce/bounce_service.h +++ b/gnu/dist/postfix/src/bounce/bounce_service.h @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_service.h,v 1.1.1.6 2006/07/19 01:17:17 rpaulo Exp $ */ - /*++ /* NAME /* bounce_service 3h diff --git a/gnu/dist/postfix/src/bounce/bounce_template.c b/gnu/dist/postfix/src/bounce/bounce_template.c index 7bb2a6565cf2..ed67c81e5f6e 100644 --- a/gnu/dist/postfix/src/bounce/bounce_template.c +++ b/gnu/dist/postfix/src/bounce/bounce_template.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_template.c,v 1.1.1.2 2008/06/22 14:02:04 christos Exp $ */ - /*++ /* NAME /* bounce_template 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_template.h b/gnu/dist/postfix/src/bounce/bounce_template.h index fd462e3a201e..fe6c65524a94 100644 --- a/gnu/dist/postfix/src/bounce/bounce_template.h +++ b/gnu/dist/postfix/src/bounce/bounce_template.h @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_template.h,v 1.1.1.1 2006/07/19 01:17:18 rpaulo Exp $ */ - #ifndef _BOUNCE_TEMPLATE_H_INCLUDED_ #define _BOUNCE_TEMPLATE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/bounce/bounce_templates.c b/gnu/dist/postfix/src/bounce/bounce_templates.c index 23ccc60deb9d..cdea765d22ba 100644 --- a/gnu/dist/postfix/src/bounce/bounce_templates.c +++ b/gnu/dist/postfix/src/bounce/bounce_templates.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_templates.c,v 1.1.1.3 2006/12/21 02:31:26 rpaulo Exp $ */ - /*++ /* NAME /* bounce_templates 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_trace_service.c b/gnu/dist/postfix/src/bounce/bounce_trace_service.c index 4efd9f388b3d..78d1b9362b26 100644 --- a/gnu/dist/postfix/src/bounce/bounce_trace_service.c +++ b/gnu/dist/postfix/src/bounce/bounce_trace_service.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_trace_service.c,v 1.1.1.3 2006/07/19 01:17:18 rpaulo Exp $ */ - /*++ /* NAME /* bounce_trace_service 3 diff --git a/gnu/dist/postfix/src/bounce/bounce_warn_service.c b/gnu/dist/postfix/src/bounce/bounce_warn_service.c index 9742e73c39e1..cb19579a101d 100644 --- a/gnu/dist/postfix/src/bounce/bounce_warn_service.c +++ b/gnu/dist/postfix/src/bounce/bounce_warn_service.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_warn_service.c,v 1.1.1.3 2006/07/19 01:17:18 rpaulo Exp $ */ - /*++ /* NAME /* bounce_warn_service 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_addr.c b/gnu/dist/postfix/src/cleanup/cleanup_addr.c index 6f5b6e553ef2..49123a90f951 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_addr.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_addr.c,v 1.1.1.4 2006/07/19 01:17:18 rpaulo Exp $ */ - /*++ /* NAME /* cleanup_addr 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_api.c b/gnu/dist/postfix/src/cleanup/cleanup_api.c index c52c2135c55e..ffcd93f80ea6 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_api.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_api.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_api.c,v 1.1.1.9 2007/05/19 16:28:05 heas Exp $ */ - /*++ /* NAME /* cleanup_api 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_body_edit.c b/gnu/dist/postfix/src/cleanup/cleanup_body_edit.c index 13efbb6294e2..5219dcc98cbe 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_body_edit.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_body_edit.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_body_edit.c,v 1.1.1.1 2007/05/19 16:28:07 heas Exp $ */ - /*++ /* NAME /* cleanup_body_edit 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_bounce.c b/gnu/dist/postfix/src/cleanup/cleanup_bounce.c index baa223df9f6b..e5a9cf92190a 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_bounce.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_bounce.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_bounce.c,v 1.1.1.4 2008/06/22 14:02:07 christos Exp $ */ - /*++ /* NAME /* cleanup_bounce 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_extracted.c b/gnu/dist/postfix/src/cleanup/cleanup_extracted.c index ab2312e70815..d47c0fe6aecc 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_extracted.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_extracted.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_extracted.c,v 1.1.1.10 2007/05/19 16:28:06 heas Exp $ */ - /*++ /* NAME /* cleanup_extracted 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_final.c b/gnu/dist/postfix/src/cleanup/cleanup_final.c index f1c079c8e931..fc482c5d0a30 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_final.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_final.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_final.c,v 1.1.1.1 2007/05/19 16:28:07 heas Exp $ */ - /*++ /* NAME /* cleanup_final 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_map11.c b/gnu/dist/postfix/src/cleanup/cleanup_map11.c index a3a33f81504c..7673667a8aa0 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_map11.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_map11.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_map11.c,v 1.1.1.3 2005/08/18 21:05:54 rpaulo Exp $ */ - /*++ /* NAME /* cleanup_map11 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_map1n.c b/gnu/dist/postfix/src/cleanup/cleanup_map1n.c index df1d374ef7f6..e69ec190f082 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_map1n.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_map1n.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_map1n.c,v 1.1.1.6 2004/05/31 00:24:27 heas Exp $ */ - /*++ /* NAME /* cleanup_map1n 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_masquerade.c b/gnu/dist/postfix/src/cleanup/cleanup_masquerade.c index b73fc52ed02c..0a4fededb39e 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_masquerade.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_masquerade.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_masquerade.c,v 1.1.1.6 2006/07/19 01:17:18 rpaulo Exp $ */ - /*++ /* NAME /* cleanup_masquerade 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_message.c b/gnu/dist/postfix/src/cleanup/cleanup_message.c index 1ee02f33eddc..3abb2519a068 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_message.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_message.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_message.c,v 1.1.1.16 2008/06/22 14:02:08 christos Exp $ */ - /*++ /* NAME /* cleanup_message 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_milter.c b/gnu/dist/postfix/src/cleanup/cleanup_milter.c index efc806a500fe..c9423c73e0c6 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_milter.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_milter.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_milter.c,v 1.1.1.9 2008/06/22 14:02:10 christos Exp $ */ - /*++ /* NAME /* cleanup_milter 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_out.c b/gnu/dist/postfix/src/cleanup/cleanup_out.c index df5cd6758ef2..90420807186a 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_out.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_out.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_out.c,v 1.1.1.7 2007/05/19 16:28:07 heas Exp $ */ - /*++ /* NAME /* cleanup_out 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_out_recipient.c b/gnu/dist/postfix/src/cleanup/cleanup_out_recipient.c index 3adc4b07610e..25ffb90526ca 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_out_recipient.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_out_recipient.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_out_recipient.c,v 1.1.1.8 2007/08/02 08:05:05 heas Exp $ */ - /*++ /* NAME /* cleanup_out_recipient 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_region.c b/gnu/dist/postfix/src/cleanup/cleanup_region.c index 87fb82ba12fe..78479d47bb7d 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_region.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_region.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_region.c,v 1.1.1.1 2007/05/19 16:28:07 heas Exp $ */ - /*++ /* NAME /* cleanup_region 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_rewrite.c b/gnu/dist/postfix/src/cleanup/cleanup_rewrite.c index 1e5b59678b92..3c81e7bed3d0 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_rewrite.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_rewrite.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_rewrite.c,v 1.1.1.3 2005/08/18 21:05:56 rpaulo Exp $ */ - /*++ /* NAME /* cleanup_rewrite 3 diff --git a/gnu/dist/postfix/src/cleanup/cleanup_state.c b/gnu/dist/postfix/src/cleanup/cleanup_state.c index 440db8d7e671..ea8b13b1199f 100644 --- a/gnu/dist/postfix/src/cleanup/cleanup_state.c +++ b/gnu/dist/postfix/src/cleanup/cleanup_state.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_state.c,v 1.1.1.12 2008/06/22 14:02:11 christos Exp $ */ - /*++ /* NAME /* cleanup_state 3 diff --git a/gnu/dist/postfix/src/discard/.printfck b/gnu/dist/postfix/src/discard/.printfck new file mode 100644 index 000000000000..66016ed453ca --- /dev/null +++ b/gnu/dist/postfix/src/discard/.printfck @@ -0,0 +1,25 @@ +been_here_xt 2 0 +bounce_append 5 0 +cleanup_out_format 1 0 +defer_append 5 0 +mail_command 1 0 +mail_print 1 0 +msg_error 0 0 +msg_fatal 0 0 +msg_info 0 0 +msg_panic 0 0 +msg_warn 0 0 +opened 4 0 +post_mail_fprintf 1 0 +qmgr_message_bounce 2 0 +rec_fprintf 2 0 +sent 4 0 +smtp_cmd 1 0 +smtp_mesg_fail 2 0 +smtp_printf 1 0 +smtp_rcpt_fail 3 0 +smtp_site_fail 2 0 +udp_syslog 1 0 +vstream_fprintf 1 0 +vstream_printf 0 0 +vstring_sprintf 1 0 diff --git a/gnu/dist/postfix/src/discard/discard.c b/gnu/dist/postfix/src/discard/discard.c index a840023a4835..c0e5e6debac0 100644 --- a/gnu/dist/postfix/src/discard/discard.c +++ b/gnu/dist/postfix/src/discard/discard.c @@ -1,5 +1,3 @@ -/* $NetBSD: discard.c,v 1.1.1.4 2007/08/02 08:05:06 heas Exp $ */ - /*++ /* NAME /* discard 8 diff --git a/gnu/dist/postfix/src/dns/dns.h b/gnu/dist/postfix/src/dns/dns.h index dc5df1ec1af2..70562383125a 100644 --- a/gnu/dist/postfix/src/dns/dns.h +++ b/gnu/dist/postfix/src/dns/dns.h @@ -1,5 +1,3 @@ -/* $NetBSD: dns.h,v 1.1.1.7 2006/07/19 01:17:20 rpaulo Exp $ */ - #ifndef _DNS_H_INCLUDED_ #define _DNS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/dns/dns_rr.c b/gnu/dist/postfix/src/dns/dns_rr.c index 3fc7dc6199aa..e2027ba472b0 100644 --- a/gnu/dist/postfix/src/dns/dns_rr.c +++ b/gnu/dist/postfix/src/dns/dns_rr.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_rr.c,v 1.1.1.6 2006/07/19 01:17:20 rpaulo Exp $ */ - /*++ /* NAME /* dns_rr 3 diff --git a/gnu/dist/postfix/src/dns/dns_rr_eq_sa.c b/gnu/dist/postfix/src/dns/dns_rr_eq_sa.c index bd2ca8479996..baecab7908f3 100644 --- a/gnu/dist/postfix/src/dns/dns_rr_eq_sa.c +++ b/gnu/dist/postfix/src/dns/dns_rr_eq_sa.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_rr_eq_sa.c,v 1.1.1.2 2006/07/19 01:17:20 rpaulo Exp $ */ - /*++ /* NAME /* dns_rr_eq_sa 3 diff --git a/gnu/dist/postfix/src/dns/dns_rr_to_pa.c b/gnu/dist/postfix/src/dns/dns_rr_to_pa.c index b07b448c0b35..bfd93a031303 100644 --- a/gnu/dist/postfix/src/dns/dns_rr_to_pa.c +++ b/gnu/dist/postfix/src/dns/dns_rr_to_pa.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_rr_to_pa.c,v 1.1.1.1 2005/08/18 21:05:59 rpaulo Exp $ */ - /*++ /* NAME /* dns_rr_to_pa 3 diff --git a/gnu/dist/postfix/src/dns/dns_rr_to_sa.c b/gnu/dist/postfix/src/dns/dns_rr_to_sa.c index 76a66326509c..0ebe087a070e 100644 --- a/gnu/dist/postfix/src/dns/dns_rr_to_sa.c +++ b/gnu/dist/postfix/src/dns/dns_rr_to_sa.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_rr_to_sa.c,v 1.1.1.2 2006/07/19 01:17:20 rpaulo Exp $ */ - /*++ /* NAME /* dns_rr_to_sa 3 diff --git a/gnu/dist/postfix/src/dns/dns_sa_to_rr.c b/gnu/dist/postfix/src/dns/dns_sa_to_rr.c index 17ab56521d58..d8a8dc94cbce 100644 --- a/gnu/dist/postfix/src/dns/dns_sa_to_rr.c +++ b/gnu/dist/postfix/src/dns/dns_sa_to_rr.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_sa_to_rr.c,v 1.1.1.2 2006/02/25 22:08:24 rpaulo Exp $ */ - /*++ /* NAME /* dns_sa_to_rr 3 diff --git a/gnu/dist/postfix/src/dns/dns_strerror.c b/gnu/dist/postfix/src/dns/dns_strerror.c index a87f7d4a40bf..9e56d3b868bd 100644 --- a/gnu/dist/postfix/src/dns/dns_strerror.c +++ b/gnu/dist/postfix/src/dns/dns_strerror.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_strerror.c,v 1.1.1.2 2004/05/31 00:24:27 heas Exp $ */ - /*++ /* NAME /* dns_strerror 3 diff --git a/gnu/dist/postfix/src/dns/dns_strtype.c b/gnu/dist/postfix/src/dns/dns_strtype.c index 070c7a3c30ef..5be7113531a5 100644 --- a/gnu/dist/postfix/src/dns/dns_strtype.c +++ b/gnu/dist/postfix/src/dns/dns_strtype.c @@ -1,5 +1,3 @@ -/* $NetBSD: dns_strtype.c,v 1.1.1.2 2004/05/31 00:24:28 heas Exp $ */ - /*++ /* NAME /* dns_strtype 3 diff --git a/gnu/dist/postfix/src/dns/test_dns_lookup.c b/gnu/dist/postfix/src/dns/test_dns_lookup.c index 2f95893730d6..ac61287ace64 100644 --- a/gnu/dist/postfix/src/dns/test_dns_lookup.c +++ b/gnu/dist/postfix/src/dns/test_dns_lookup.c @@ -1,5 +1,3 @@ -/* $NetBSD: test_dns_lookup.c,v 1.1.1.5 2006/07/19 01:17:20 rpaulo Exp $ */ - /*++ /* NAME /* test_dns_lookup 1 diff --git a/gnu/dist/postfix/src/error/error.c b/gnu/dist/postfix/src/error/error.c index 861a1b792cc9..6ee9e7714191 100644 --- a/gnu/dist/postfix/src/error/error.c +++ b/gnu/dist/postfix/src/error/error.c @@ -1,5 +1,3 @@ -/* $NetBSD: error.c,v 1.1.1.9 2008/06/22 14:02:12 christos Exp $ */ - /*++ /* NAME /* error 8 diff --git a/gnu/dist/postfix/src/flush/flush.c b/gnu/dist/postfix/src/flush/flush.c index b71f5471cc91..2658819cdbad 100644 --- a/gnu/dist/postfix/src/flush/flush.c +++ b/gnu/dist/postfix/src/flush/flush.c @@ -1,5 +1,3 @@ -/* $NetBSD: flush.c,v 1.1.1.11 2008/06/22 14:02:13 christos Exp $ */ - /*++ /* NAME /* flush 8 diff --git a/gnu/dist/postfix/src/fsstone/fsstone.c b/gnu/dist/postfix/src/fsstone/fsstone.c index 8665fb0b511c..02674123162a 100644 --- a/gnu/dist/postfix/src/fsstone/fsstone.c +++ b/gnu/dist/postfix/src/fsstone/fsstone.c @@ -1,5 +1,3 @@ -/* $NetBSD: fsstone.c,v 1.1.1.3 2007/05/19 16:28:08 heas Exp $ */ - /*++ /* NAME /* fsstone 1 diff --git a/gnu/dist/postfix/src/global/abounce.c b/gnu/dist/postfix/src/global/abounce.c index 2f4d43c844c7..8c31694265ae 100644 --- a/gnu/dist/postfix/src/global/abounce.c +++ b/gnu/dist/postfix/src/global/abounce.c @@ -1,5 +1,3 @@ -/* $NetBSD: abounce.c,v 1.1.1.7 2008/06/22 14:02:14 christos Exp $ */ - /*++ /* NAME /* abounce 3 diff --git a/gnu/dist/postfix/src/global/abounce.h b/gnu/dist/postfix/src/global/abounce.h index b29c9841da23..521499cf38e0 100644 --- a/gnu/dist/postfix/src/global/abounce.h +++ b/gnu/dist/postfix/src/global/abounce.h @@ -1,5 +1,3 @@ -/* $NetBSD: abounce.h,v 1.1.1.5 2006/07/19 01:17:21 rpaulo Exp $ */ - #ifndef _ABOUNCE_H_INCLUDED_ #define _ABOUNCE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/anvil_clnt.c b/gnu/dist/postfix/src/global/anvil_clnt.c index eea170c6e459..02ecac2f9c9a 100644 --- a/gnu/dist/postfix/src/global/anvil_clnt.c +++ b/gnu/dist/postfix/src/global/anvil_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: anvil_clnt.c,v 1.1.1.2 2006/07/19 01:17:21 rpaulo Exp $ */ - /*++ /* NAME /* anvil_clnt 3 diff --git a/gnu/dist/postfix/src/global/anvil_clnt.h b/gnu/dist/postfix/src/global/anvil_clnt.h index c84374a5b391..0e48a42dd789 100644 --- a/gnu/dist/postfix/src/global/anvil_clnt.h +++ b/gnu/dist/postfix/src/global/anvil_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: anvil_clnt.h,v 1.1.1.2 2006/07/19 01:17:21 rpaulo Exp $ */ - #ifndef _ANVIL_CLNT_H_INCLUDED_ #define _ANVIL_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/been_here.c b/gnu/dist/postfix/src/global/been_here.c index 9949c92296e6..b460bf80ff00 100644 --- a/gnu/dist/postfix/src/global/been_here.c +++ b/gnu/dist/postfix/src/global/been_here.c @@ -1,5 +1,3 @@ -/* $NetBSD: been_here.c,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - /*++ /* NAME /* been_here 3 diff --git a/gnu/dist/postfix/src/global/been_here.h b/gnu/dist/postfix/src/global/been_here.h index e433238189ca..855001d61184 100644 --- a/gnu/dist/postfix/src/global/been_here.h +++ b/gnu/dist/postfix/src/global/been_here.h @@ -1,5 +1,3 @@ -/* $NetBSD: been_here.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _BEEN_HERE_H_INCLUDED_ #define _BEEN_HERE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/bounce.c b/gnu/dist/postfix/src/global/bounce.c index 0413ef6be5f8..d260be766b86 100644 --- a/gnu/dist/postfix/src/global/bounce.c +++ b/gnu/dist/postfix/src/global/bounce.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce.c,v 1.1.1.9 2008/06/22 14:02:15 christos Exp $ */ - /*++ /* NAME /* bounce 3 diff --git a/gnu/dist/postfix/src/global/bounce.h b/gnu/dist/postfix/src/global/bounce.h index da472c6ff895..31f7398d2464 100644 --- a/gnu/dist/postfix/src/global/bounce.h +++ b/gnu/dist/postfix/src/global/bounce.h @@ -1,5 +1,3 @@ -/* $NetBSD: bounce.h,v 1.1.1.6 2006/07/19 01:17:21 rpaulo Exp $ */ - #ifndef _BOUNCE_H_INCLUDED_ #define _BOUNCE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/bounce_log.c b/gnu/dist/postfix/src/global/bounce_log.c index 30acaa413b28..d93198609ee9 100644 --- a/gnu/dist/postfix/src/global/bounce_log.c +++ b/gnu/dist/postfix/src/global/bounce_log.c @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_log.c,v 1.1.1.6 2006/07/19 01:17:21 rpaulo Exp $ */ - /*++ /* NAME /* bounce_log 3 diff --git a/gnu/dist/postfix/src/global/bounce_log.h b/gnu/dist/postfix/src/global/bounce_log.h index 3a00c6d9e6b8..03b78b2c4638 100644 --- a/gnu/dist/postfix/src/global/bounce_log.h +++ b/gnu/dist/postfix/src/global/bounce_log.h @@ -1,5 +1,3 @@ -/* $NetBSD: bounce_log.h,v 1.1.1.6 2006/07/19 01:17:21 rpaulo Exp $ */ - #ifndef _BOUNCE_LOG_H_INCLUDED_ #define _BOUNCE_LOG_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/canon_addr.c b/gnu/dist/postfix/src/global/canon_addr.c index dfbcefb44ad3..912ae1dc0c6d 100644 --- a/gnu/dist/postfix/src/global/canon_addr.c +++ b/gnu/dist/postfix/src/global/canon_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: canon_addr.c,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - /*++ /* NAME /* canon_addr 3 diff --git a/gnu/dist/postfix/src/global/canon_addr.h b/gnu/dist/postfix/src/global/canon_addr.h index 8ac63072e309..63b7e29394e7 100644 --- a/gnu/dist/postfix/src/global/canon_addr.h +++ b/gnu/dist/postfix/src/global/canon_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: canon_addr.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _CANON_ADDR_H_INCLUDED_ #define _CANON_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/cfg_parser.c b/gnu/dist/postfix/src/global/cfg_parser.c index 0085751f79dc..525294889f42 100644 --- a/gnu/dist/postfix/src/global/cfg_parser.c +++ b/gnu/dist/postfix/src/global/cfg_parser.c @@ -1,5 +1,3 @@ -/* $NetBSD: cfg_parser.c,v 1.1.1.3 2006/07/19 01:17:21 rpaulo Exp $ */ - /*++ /* NAME /* cfg_parser 3 diff --git a/gnu/dist/postfix/src/global/cfg_parser.h b/gnu/dist/postfix/src/global/cfg_parser.h index 8273c3be1e10..40544a24a7ef 100644 --- a/gnu/dist/postfix/src/global/cfg_parser.h +++ b/gnu/dist/postfix/src/global/cfg_parser.h @@ -1,5 +1,3 @@ -/* $NetBSD: cfg_parser.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _CFG_PARSER_H_INCLUDED_ #define _CFG_PARSER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/cleanup_strerror.c b/gnu/dist/postfix/src/global/cleanup_strerror.c index ded03ab7a3e9..ce0bb40d05c1 100644 --- a/gnu/dist/postfix/src/global/cleanup_strerror.c +++ b/gnu/dist/postfix/src/global/cleanup_strerror.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_strerror.c,v 1.1.1.5 2008/06/22 14:02:13 christos Exp $ */ - /*++ /* NAME /* cleanup_strerror 3 diff --git a/gnu/dist/postfix/src/global/cleanup_strflags.c b/gnu/dist/postfix/src/global/cleanup_strflags.c index 786950c8d70d..d2a687c83327 100644 --- a/gnu/dist/postfix/src/global/cleanup_strflags.c +++ b/gnu/dist/postfix/src/global/cleanup_strflags.c @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_strflags.c,v 1.1.1.3 2006/07/19 01:17:21 rpaulo Exp $ */ - /*++ /* NAME /* cleanup_strflags 3 @@ -54,6 +52,7 @@ static struct cleanup_flag_map cleanup_flag_map[] = { CLEANUP_FLAG_BCC_OK, "enable_automatic_bcc", CLEANUP_FLAG_MAP_OK, "enable_address_mapping", CLEANUP_FLAG_MILTER, "enable_milters", + CLEANUP_FLAG_SMTP_REPLY, "enable_smtp_reply", }; /* cleanup_strflags - map flags code to printable string */ diff --git a/gnu/dist/postfix/src/global/cleanup_user.h b/gnu/dist/postfix/src/global/cleanup_user.h index df4498919cff..e44f105ab550 100644 --- a/gnu/dist/postfix/src/global/cleanup_user.h +++ b/gnu/dist/postfix/src/global/cleanup_user.h @@ -1,5 +1,3 @@ -/* $NetBSD: cleanup_user.h,v 1.1.1.7 2008/06/22 14:02:16 christos Exp $ */ - #ifndef _CLEANUP_USER_H_INCLUDED_ #define _CLEANUP_USER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/clnt_stream.c b/gnu/dist/postfix/src/global/clnt_stream.c index d0610733a87a..5211f75a9696 100644 --- a/gnu/dist/postfix/src/global/clnt_stream.c +++ b/gnu/dist/postfix/src/global/clnt_stream.c @@ -1,5 +1,3 @@ -/* $NetBSD: clnt_stream.c,v 1.1.1.3 2004/05/31 00:24:29 heas Exp $ */ - /*++ /* NAME /* clnt_stream 3 diff --git a/gnu/dist/postfix/src/global/clnt_stream.h b/gnu/dist/postfix/src/global/clnt_stream.h index abc01fa56367..0d3ee4775882 100644 --- a/gnu/dist/postfix/src/global/clnt_stream.h +++ b/gnu/dist/postfix/src/global/clnt_stream.h @@ -1,5 +1,3 @@ -/* $NetBSD: clnt_stream.h,v 1.1.1.3 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _CLNT_STREAM_H_INCLUDED_ #define _CLNT_STREAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/config.h b/gnu/dist/postfix/src/global/config.h index bf8d1303aa51..d03a6527ef0b 100644 --- a/gnu/dist/postfix/src/global/config.h +++ b/gnu/dist/postfix/src/global/config.h @@ -1,5 +1,3 @@ -/* $NetBSD: config.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _CONFIG_H_INCLUDED_ #define _CONFIG_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/conv_time.c b/gnu/dist/postfix/src/global/conv_time.c index 66c4907d114b..cbd8050e392b 100644 --- a/gnu/dist/postfix/src/global/conv_time.c +++ b/gnu/dist/postfix/src/global/conv_time.c @@ -1,5 +1,3 @@ -/* $NetBSD: conv_time.c,v 1.1.1.1 2006/07/19 01:17:22 rpaulo Exp $ */ - /*++ /* NAME /* conv_time 3 diff --git a/gnu/dist/postfix/src/global/conv_time.h b/gnu/dist/postfix/src/global/conv_time.h index 85a1ec8b314a..565ce3c78f63 100644 --- a/gnu/dist/postfix/src/global/conv_time.h +++ b/gnu/dist/postfix/src/global/conv_time.h @@ -1,5 +1,3 @@ -/* $NetBSD: conv_time.h,v 1.1.1.1 2006/07/19 01:17:22 rpaulo Exp $ */ - #ifndef _CONV_TIME_INCLUDED_ #define _CONV_TIME_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/data_redirect.c b/gnu/dist/postfix/src/global/data_redirect.c index f8f4ad45d9dc..77a28e209fe8 100644 --- a/gnu/dist/postfix/src/global/data_redirect.c +++ b/gnu/dist/postfix/src/global/data_redirect.c @@ -1,5 +1,3 @@ -/* $NetBSD: data_redirect.c,v 1.1.1.1 2008/06/22 14:02:17 christos Exp $ */ - /*++ /* NAME /* data_redirect 3 diff --git a/gnu/dist/postfix/src/global/data_redirect.h b/gnu/dist/postfix/src/global/data_redirect.h index 7ff5875bef86..28b431e90e01 100644 --- a/gnu/dist/postfix/src/global/data_redirect.h +++ b/gnu/dist/postfix/src/global/data_redirect.h @@ -1,5 +1,3 @@ -/* $NetBSD: data_redirect.h,v 1.1.1.1 2008/06/22 14:02:17 christos Exp $ */ - #ifndef _DATA_REDIRECT_H_INCLUDED_ #define _DATA_REDIRECT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/db_common.c b/gnu/dist/postfix/src/global/db_common.c index f3666e38c496..92223b056f5a 100644 --- a/gnu/dist/postfix/src/global/db_common.c +++ b/gnu/dist/postfix/src/global/db_common.c @@ -1,5 +1,3 @@ -/* $NetBSD: db_common.c,v 1.1.1.3 2008/06/22 14:02:17 christos Exp $ */ - /*++ /* NAME /* db_common 3 diff --git a/gnu/dist/postfix/src/global/db_common.h b/gnu/dist/postfix/src/global/db_common.h index 2b149957198c..ce7adc1e134a 100644 --- a/gnu/dist/postfix/src/global/db_common.h +++ b/gnu/dist/postfix/src/global/db_common.h @@ -1,5 +1,3 @@ -/* $NetBSD: db_common.h,v 1.1.1.2 2006/07/19 01:17:22 rpaulo Exp $ */ - #ifndef _DB_COMMON_H_INCLUDED_ #define _DB_COMMON_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/debug_peer.c b/gnu/dist/postfix/src/global/debug_peer.c index 0bef31a90e62..97b42bd4e6e6 100644 --- a/gnu/dist/postfix/src/global/debug_peer.c +++ b/gnu/dist/postfix/src/global/debug_peer.c @@ -1,5 +1,3 @@ -/* $NetBSD: debug_peer.c,v 1.1.1.4 2006/07/19 01:17:22 rpaulo Exp $ */ - /*++ /* NAME /* debug_peer 3 diff --git a/gnu/dist/postfix/src/global/debug_peer.h b/gnu/dist/postfix/src/global/debug_peer.h index 65e56239cbab..925e503299cd 100644 --- a/gnu/dist/postfix/src/global/debug_peer.h +++ b/gnu/dist/postfix/src/global/debug_peer.h @@ -1,5 +1,3 @@ -/* $NetBSD: debug_peer.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _DEBUG_PEER_H_INCLUDED_ #define _DEBUG_PEER_H_INCLUDED_ /*++ diff --git a/gnu/dist/postfix/src/global/debug_process.c b/gnu/dist/postfix/src/global/debug_process.c index ba7dfa64531c..504cbd10960b 100644 --- a/gnu/dist/postfix/src/global/debug_process.c +++ b/gnu/dist/postfix/src/global/debug_process.c @@ -1,5 +1,3 @@ -/* $NetBSD: debug_process.c,v 1.1.1.3 2005/08/18 21:06:09 rpaulo Exp $ */ - /*++ /* NAME /* debug_process 3 diff --git a/gnu/dist/postfix/src/global/debug_process.h b/gnu/dist/postfix/src/global/debug_process.h index f22066ae6fac..04272ab5bdc3 100644 --- a/gnu/dist/postfix/src/global/debug_process.h +++ b/gnu/dist/postfix/src/global/debug_process.h @@ -1,5 +1,3 @@ -/* $NetBSD: debug_process.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _DEBUG_PROCESS_H_INCLUDED_ #define _DEBUG_PROCESS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/defer.c b/gnu/dist/postfix/src/global/defer.c index 6822aa7103b6..a2b44a3e46f6 100644 --- a/gnu/dist/postfix/src/global/defer.c +++ b/gnu/dist/postfix/src/global/defer.c @@ -1,5 +1,3 @@ -/* $NetBSD: defer.c,v 1.1.1.8 2008/06/22 14:02:17 christos Exp $ */ - /*++ /* NAME /* defer 3 diff --git a/gnu/dist/postfix/src/global/defer.h b/gnu/dist/postfix/src/global/defer.h index 799f2abbec17..ba9be7d698d0 100644 --- a/gnu/dist/postfix/src/global/defer.h +++ b/gnu/dist/postfix/src/global/defer.h @@ -1,5 +1,3 @@ -/* $NetBSD: defer.h,v 1.1.1.5 2006/07/19 01:17:22 rpaulo Exp $ */ - #ifndef _DEFER_H_INCLUDED_ #define _DEFER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/deliver_completed.c b/gnu/dist/postfix/src/global/deliver_completed.c index 024d3baa2805..6fe3888923cc 100644 --- a/gnu/dist/postfix/src/global/deliver_completed.c +++ b/gnu/dist/postfix/src/global/deliver_completed.c @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_completed.c,v 1.1.1.3 2006/07/19 01:17:21 rpaulo Exp $ */ - /*++ /* NAME /* deliver_completed 3 diff --git a/gnu/dist/postfix/src/global/deliver_completed.h b/gnu/dist/postfix/src/global/deliver_completed.h index 43a0d09a9e16..cb0b1df5d570 100644 --- a/gnu/dist/postfix/src/global/deliver_completed.h +++ b/gnu/dist/postfix/src/global/deliver_completed.h @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_completed.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _DELIVER_COMPLETED_H_INCLUDED_ #define _DELIVER_COMPLETED_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/deliver_flock.c b/gnu/dist/postfix/src/global/deliver_flock.c index dfa0799bbfa0..35a6bcb33d22 100644 --- a/gnu/dist/postfix/src/global/deliver_flock.c +++ b/gnu/dist/postfix/src/global/deliver_flock.c @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_flock.c,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - /*++ /* NAME /* deliver_flock 3 diff --git a/gnu/dist/postfix/src/global/deliver_flock.h b/gnu/dist/postfix/src/global/deliver_flock.h index 08cf3e27adbf..f167725bdd7b 100644 --- a/gnu/dist/postfix/src/global/deliver_flock.h +++ b/gnu/dist/postfix/src/global/deliver_flock.h @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_flock.h,v 1.1.1.2 2004/05/31 00:24:29 heas Exp $ */ - #ifndef _DELIVER_FLOCK_H_INCLUDED_ #define _DELIVER_FLOCK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/deliver_pass.c b/gnu/dist/postfix/src/global/deliver_pass.c index 3058972d5e6d..5799597aaae8 100644 --- a/gnu/dist/postfix/src/global/deliver_pass.c +++ b/gnu/dist/postfix/src/global/deliver_pass.c @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_pass.c,v 1.1.1.9 2008/06/22 14:02:17 christos Exp $ */ - /*++ /* NAME /* deliver_pass 3 diff --git a/gnu/dist/postfix/src/global/deliver_pass.h b/gnu/dist/postfix/src/global/deliver_pass.h index 1c5d02199dee..de4f6c5cddbf 100644 --- a/gnu/dist/postfix/src/global/deliver_pass.h +++ b/gnu/dist/postfix/src/global/deliver_pass.h @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_pass.h,v 1.1.1.4 2006/07/19 01:17:22 rpaulo Exp $ */ - #ifndef _DELIVER_PASS_H_INCLUDED_ #define _DELIVER_PASS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/deliver_request.c b/gnu/dist/postfix/src/global/deliver_request.c index 9dda6506fa52..7ee6dbabbda0 100644 --- a/gnu/dist/postfix/src/global/deliver_request.c +++ b/gnu/dist/postfix/src/global/deliver_request.c @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_request.c,v 1.1.1.8 2008/06/22 14:02:18 christos Exp $ */ - /*++ /* NAME /* deliver_request 3 diff --git a/gnu/dist/postfix/src/global/deliver_request.h b/gnu/dist/postfix/src/global/deliver_request.h index b2626c5fd7a5..2c74c00f74f4 100644 --- a/gnu/dist/postfix/src/global/deliver_request.h +++ b/gnu/dist/postfix/src/global/deliver_request.h @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_request.h,v 1.1.1.8 2008/06/22 14:02:18 christos Exp $ */ - #ifndef _DELIVER_REQUEST_H_INCLUDED_ #define _DELIVER_REQUEST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/delivered_hdr.c b/gnu/dist/postfix/src/global/delivered_hdr.c index bd1a01d265bf..2bbd2f6d1e19 100644 --- a/gnu/dist/postfix/src/global/delivered_hdr.c +++ b/gnu/dist/postfix/src/global/delivered_hdr.c @@ -1,5 +1,3 @@ -/* $NetBSD: delivered_hdr.c,v 1.1.1.1 2008/06/22 14:02:18 christos Exp $ */ - /*++ /* NAME /* delivered_hdr 3 diff --git a/gnu/dist/postfix/src/global/delivered_hdr.h b/gnu/dist/postfix/src/global/delivered_hdr.h index 29bf0e15dd45..24e0ceb15aef 100644 --- a/gnu/dist/postfix/src/global/delivered_hdr.h +++ b/gnu/dist/postfix/src/global/delivered_hdr.h @@ -1,5 +1,3 @@ -/* $NetBSD: delivered_hdr.h,v 1.1.1.1 2008/06/22 14:02:18 christos Exp $ */ - #ifndef _DELIVERED_HDR_H_INCLUDED_ #define _DELIVERED_HDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dict_ldap.c b/gnu/dist/postfix/src/global/dict_ldap.c index 74c6ecd7df13..4877e863d458 100644 --- a/gnu/dist/postfix/src/global/dict_ldap.c +++ b/gnu/dist/postfix/src/global/dict_ldap.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_ldap.c,v 1.1.1.6 2008/06/22 14:02:19 christos Exp $ */ - /*++ /* NAME /* dict_ldap 3 diff --git a/gnu/dist/postfix/src/global/dict_ldap.h b/gnu/dist/postfix/src/global/dict_ldap.h index 67a585d8819f..902896351c61 100644 --- a/gnu/dist/postfix/src/global/dict_ldap.h +++ b/gnu/dist/postfix/src/global/dict_ldap.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_ldap.h,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _DICT_LDAP_H_INCLUDED_ #define _DICT_LDAP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dict_mysql.c b/gnu/dist/postfix/src/global/dict_mysql.c index 341d6ea1af94..92db68d13ca7 100644 --- a/gnu/dist/postfix/src/global/dict_mysql.c +++ b/gnu/dist/postfix/src/global/dict_mysql.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_mysql.c,v 1.1.1.6 2007/05/19 16:28:10 heas Exp $ */ - /*++ /* NAME /* dict_mysql 3 diff --git a/gnu/dist/postfix/src/global/dict_mysql.h b/gnu/dist/postfix/src/global/dict_mysql.h index 6600fd8076d0..7fe559bd53ce 100644 --- a/gnu/dist/postfix/src/global/dict_mysql.h +++ b/gnu/dist/postfix/src/global/dict_mysql.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_mysql.h,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _DICT_MYSQL_H_INCLUDED_ #define _DICT_MYSQL_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dict_pgsql.c b/gnu/dist/postfix/src/global/dict_pgsql.c index 7eb9ff58f1ca..bedc568e37a1 100644 --- a/gnu/dist/postfix/src/global/dict_pgsql.c +++ b/gnu/dist/postfix/src/global/dict_pgsql.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_pgsql.c,v 1.1.1.6 2007/05/19 16:28:11 heas Exp $ */ - /*++ /* NAME /* dict_pgsql 3 diff --git a/gnu/dist/postfix/src/global/dict_pgsql.h b/gnu/dist/postfix/src/global/dict_pgsql.h index 24d93d36c135..f597a278286a 100644 --- a/gnu/dist/postfix/src/global/dict_pgsql.h +++ b/gnu/dist/postfix/src/global/dict_pgsql.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_pgsql.h,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _DICT_PGSQL_INCLUDED_ #define _DICT_PGSQL_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dict_proxy.c b/gnu/dist/postfix/src/global/dict_proxy.c index daaf46127be4..8005c8d366e1 100644 --- a/gnu/dist/postfix/src/global/dict_proxy.c +++ b/gnu/dist/postfix/src/global/dict_proxy.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_proxy.c,v 1.1.1.8 2008/06/22 14:02:22 christos Exp $ */ - /*++ /* NAME /* dict_proxy 3 diff --git a/gnu/dist/postfix/src/global/dict_proxy.h b/gnu/dist/postfix/src/global/dict_proxy.h index 9d02882e4f8d..6d55842d4f60 100644 --- a/gnu/dist/postfix/src/global/dict_proxy.h +++ b/gnu/dist/postfix/src/global/dict_proxy.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_proxy.h,v 1.1.1.3 2008/06/22 14:02:22 christos Exp $ */ - #ifndef _DICT_PROXY_H_INCLUDED_ #define _DICT_PROXY_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/domain_list.c b/gnu/dist/postfix/src/global/domain_list.c index 0c32980ad4e6..9535ac223f4f 100644 --- a/gnu/dist/postfix/src/global/domain_list.c +++ b/gnu/dist/postfix/src/global/domain_list.c @@ -1,5 +1,3 @@ -/* $NetBSD: domain_list.c,v 1.1.1.6 2007/05/19 16:28:11 heas Exp $ */ - /*++ /* NAME /* domain_list 3 diff --git a/gnu/dist/postfix/src/global/domain_list.h b/gnu/dist/postfix/src/global/domain_list.h index a79650652226..23f60c78950a 100644 --- a/gnu/dist/postfix/src/global/domain_list.h +++ b/gnu/dist/postfix/src/global/domain_list.h @@ -1,5 +1,3 @@ -/* $NetBSD: domain_list.h,v 1.1.1.3 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _DOMAIN_LIST_H_INCLUDED_ #define _DOMAIN_LIST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dot_lockfile.c b/gnu/dist/postfix/src/global/dot_lockfile.c index ab9301b9e3cf..94681bf00b7d 100644 --- a/gnu/dist/postfix/src/global/dot_lockfile.c +++ b/gnu/dist/postfix/src/global/dot_lockfile.c @@ -1,5 +1,3 @@ -/* $NetBSD: dot_lockfile.c,v 1.1.1.3 2004/05/31 00:24:30 heas Exp $ */ - /*++ /* NAME /* dot_lockfile 3 diff --git a/gnu/dist/postfix/src/global/dot_lockfile.h b/gnu/dist/postfix/src/global/dot_lockfile.h index 0e549a335ada..1c04510415f4 100644 --- a/gnu/dist/postfix/src/global/dot_lockfile.h +++ b/gnu/dist/postfix/src/global/dot_lockfile.h @@ -1,5 +1,3 @@ -/* $NetBSD: dot_lockfile.h,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _DOT_LOCKFILE_H_INCLUDED_ #define _DOT_LOCKFILE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dot_lockfile_as.c b/gnu/dist/postfix/src/global/dot_lockfile_as.c index 5f6e86153ef8..7ee84d9e5e3a 100644 --- a/gnu/dist/postfix/src/global/dot_lockfile_as.c +++ b/gnu/dist/postfix/src/global/dot_lockfile_as.c @@ -1,5 +1,3 @@ -/* $NetBSD: dot_lockfile_as.c,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - /*++ /* NAME /* dot_lockfile_as 3 diff --git a/gnu/dist/postfix/src/global/dot_lockfile_as.h b/gnu/dist/postfix/src/global/dot_lockfile_as.h index 6d939e1f3d67..539a70a4fe50 100644 --- a/gnu/dist/postfix/src/global/dot_lockfile_as.h +++ b/gnu/dist/postfix/src/global/dot_lockfile_as.h @@ -1,5 +1,3 @@ -/* $NetBSD: dot_lockfile_as.h,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _DOT_LOCKFILE_AS_H_INCLUDED_ #define _DOT_LOCKFILE_AS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dsb_scan.c b/gnu/dist/postfix/src/global/dsb_scan.c index abc629db4d3d..8331022c5235 100644 --- a/gnu/dist/postfix/src/global/dsb_scan.c +++ b/gnu/dist/postfix/src/global/dsb_scan.c @@ -1,5 +1,3 @@ -/* $NetBSD: dsb_scan.c,v 1.1.1.2 2008/06/22 14:02:22 christos Exp $ */ - /*++ /* NAME /* dsb_scan diff --git a/gnu/dist/postfix/src/global/dsb_scan.h b/gnu/dist/postfix/src/global/dsb_scan.h index 2049c9a02f76..397f86bc34ac 100644 --- a/gnu/dist/postfix/src/global/dsb_scan.h +++ b/gnu/dist/postfix/src/global/dsb_scan.h @@ -1,5 +1,3 @@ -/* $NetBSD: dsb_scan.h,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _DSB_SCAN_H_INCLUDED_ #define _DSB_SCAN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dsn.c b/gnu/dist/postfix/src/global/dsn.c index 7253e8a9beed..aa78c3b9c57e 100644 --- a/gnu/dist/postfix/src/global/dsn.c +++ b/gnu/dist/postfix/src/global/dsn.c @@ -1,5 +1,3 @@ -/* $NetBSD: dsn.c,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - /*++ /* NAME /* dsn diff --git a/gnu/dist/postfix/src/global/dsn.h b/gnu/dist/postfix/src/global/dsn.h index d8123f8f7421..bf49dcb166c5 100644 --- a/gnu/dist/postfix/src/global/dsn.h +++ b/gnu/dist/postfix/src/global/dsn.h @@ -1,5 +1,3 @@ -/* $NetBSD: dsn.h,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _DSN_H_INCLUDED_ #define _DSN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dsn_buf.c b/gnu/dist/postfix/src/global/dsn_buf.c index f118492bac95..c3c3a7e309c8 100644 --- a/gnu/dist/postfix/src/global/dsn_buf.c +++ b/gnu/dist/postfix/src/global/dsn_buf.c @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_buf.c,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - /*++ /* NAME /* dsn_buf 3 diff --git a/gnu/dist/postfix/src/global/dsn_buf.h b/gnu/dist/postfix/src/global/dsn_buf.h index d807f9fde753..2871bdb2c2fc 100644 --- a/gnu/dist/postfix/src/global/dsn_buf.h +++ b/gnu/dist/postfix/src/global/dsn_buf.h @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_buf.h,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _DSN_BUF_H_INCLUDED_ #define _DSN_BUF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dsn_mask.c b/gnu/dist/postfix/src/global/dsn_mask.c index 08995c90a48c..3c183aa4af50 100644 --- a/gnu/dist/postfix/src/global/dsn_mask.c +++ b/gnu/dist/postfix/src/global/dsn_mask.c @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_mask.c,v 1.1.1.2 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* dsn_mask 3 diff --git a/gnu/dist/postfix/src/global/dsn_mask.h b/gnu/dist/postfix/src/global/dsn_mask.h index 320062328812..ddf3dccd67bc 100644 --- a/gnu/dist/postfix/src/global/dsn_mask.h +++ b/gnu/dist/postfix/src/global/dsn_mask.h @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_mask.h,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _DSN_MASK_H_INCLUDED_ #define _DSN_MASK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dsn_print.c b/gnu/dist/postfix/src/global/dsn_print.c index c3480afa2630..58f06a34c772 100644 --- a/gnu/dist/postfix/src/global/dsn_print.c +++ b/gnu/dist/postfix/src/global/dsn_print.c @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_print.c,v 1.1.1.2 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* dsn_print diff --git a/gnu/dist/postfix/src/global/dsn_print.h b/gnu/dist/postfix/src/global/dsn_print.h index bf2f4c254f1a..4b2c9fa84d45 100644 --- a/gnu/dist/postfix/src/global/dsn_print.h +++ b/gnu/dist/postfix/src/global/dsn_print.h @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_print.h,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _DSN_PRINT_H_INCLUDED_ #define _DSN_PRINT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/dsn_util.c b/gnu/dist/postfix/src/global/dsn_util.c index a4f36f0b46a3..52b997a33205 100644 --- a/gnu/dist/postfix/src/global/dsn_util.c +++ b/gnu/dist/postfix/src/global/dsn_util.c @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_util.c,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - /*++ /* NAME /* dsn_util 3 diff --git a/gnu/dist/postfix/src/global/dsn_util.h b/gnu/dist/postfix/src/global/dsn_util.h index a222c1032cde..8657a3e50732 100644 --- a/gnu/dist/postfix/src/global/dsn_util.h +++ b/gnu/dist/postfix/src/global/dsn_util.h @@ -1,5 +1,3 @@ -/* $NetBSD: dsn_util.h,v 1.1.1.1 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _DSN_UTIL_H_INCLUDED_ #define _DSN_UTIL_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/ehlo_mask.c b/gnu/dist/postfix/src/global/ehlo_mask.c index 7d34a7383aaa..d7501934b892 100644 --- a/gnu/dist/postfix/src/global/ehlo_mask.c +++ b/gnu/dist/postfix/src/global/ehlo_mask.c @@ -1,5 +1,3 @@ -/* $NetBSD: ehlo_mask.c,v 1.1.1.3 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* ehlo_mask 3 diff --git a/gnu/dist/postfix/src/global/ehlo_mask.h b/gnu/dist/postfix/src/global/ehlo_mask.h index 2a062388414c..62256f1127b9 100644 --- a/gnu/dist/postfix/src/global/ehlo_mask.h +++ b/gnu/dist/postfix/src/global/ehlo_mask.h @@ -1,5 +1,3 @@ -/* $NetBSD: ehlo_mask.h,v 1.1.1.2 2006/07/19 01:17:23 rpaulo Exp $ */ - #ifndef _EHLO_MASK_H_INCLUDED_ #define _EHLO_MASK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/ext_prop.c b/gnu/dist/postfix/src/global/ext_prop.c index 2fc70b91364c..29bce7bddf9f 100644 --- a/gnu/dist/postfix/src/global/ext_prop.c +++ b/gnu/dist/postfix/src/global/ext_prop.c @@ -1,5 +1,3 @@ -/* $NetBSD: ext_prop.c,v 1.1.1.6 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* ext_prop 3 diff --git a/gnu/dist/postfix/src/global/ext_prop.h b/gnu/dist/postfix/src/global/ext_prop.h index 32036e5282b6..01f0ea088a5a 100644 --- a/gnu/dist/postfix/src/global/ext_prop.h +++ b/gnu/dist/postfix/src/global/ext_prop.h @@ -1,5 +1,3 @@ -/* $NetBSD: ext_prop.h,v 1.1.1.4 2005/08/18 21:06:18 rpaulo Exp $ */ - #ifndef _EXT_PROP_INCLUDED_ #define _EXT_PROP_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/file_id.c b/gnu/dist/postfix/src/global/file_id.c index ee5becadfa1e..e130087db246 100644 --- a/gnu/dist/postfix/src/global/file_id.c +++ b/gnu/dist/postfix/src/global/file_id.c @@ -1,5 +1,3 @@ -/* $NetBSD: file_id.c,v 1.1.1.3 2004/05/31 00:24:30 heas Exp $ */ - /*++ /* NAME /* file_id 3 diff --git a/gnu/dist/postfix/src/global/file_id.h b/gnu/dist/postfix/src/global/file_id.h index 084a7a8167ab..c954e36bcf97 100644 --- a/gnu/dist/postfix/src/global/file_id.h +++ b/gnu/dist/postfix/src/global/file_id.h @@ -1,5 +1,3 @@ -/* $NetBSD: file_id.h,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - #ifndef _FILE_ID_H_INCLUDED_ #define _FILE_ID_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/flush_clnt.c b/gnu/dist/postfix/src/global/flush_clnt.c index ab636eb62094..043754f9b566 100644 --- a/gnu/dist/postfix/src/global/flush_clnt.c +++ b/gnu/dist/postfix/src/global/flush_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: flush_clnt.c,v 1.1.1.7 2007/05/19 16:28:12 heas Exp $ */ - /*++ /* NAME /* flush_clnt 3 diff --git a/gnu/dist/postfix/src/global/flush_clnt.h b/gnu/dist/postfix/src/global/flush_clnt.h index 08137e9d0418..6b891b21639d 100644 --- a/gnu/dist/postfix/src/global/flush_clnt.h +++ b/gnu/dist/postfix/src/global/flush_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: flush_clnt.h,v 1.1.1.5 2007/05/19 16:28:12 heas Exp $ */ - #ifndef _FLUSH_CLNT_H_INCLUDED_ #define _FLUSH_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/fold_addr.c b/gnu/dist/postfix/src/global/fold_addr.c index ff94beb880e3..99263dca064c 100644 --- a/gnu/dist/postfix/src/global/fold_addr.c +++ b/gnu/dist/postfix/src/global/fold_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: fold_addr.c,v 1.1.1.1 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* fold_addr 3 diff --git a/gnu/dist/postfix/src/global/fold_addr.h b/gnu/dist/postfix/src/global/fold_addr.h index 27261a8654e8..557e830b1602 100644 --- a/gnu/dist/postfix/src/global/fold_addr.h +++ b/gnu/dist/postfix/src/global/fold_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: fold_addr.h,v 1.1.1.1 2008/06/22 14:02:23 christos Exp $ */ - #ifndef _FOLD_ADDR_H_INCLUDED_ #define _FOLD_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/header_body_checks.c b/gnu/dist/postfix/src/global/header_body_checks.c index fe5bcb132ea2..b5f2aa12b8b1 100644 --- a/gnu/dist/postfix/src/global/header_body_checks.c +++ b/gnu/dist/postfix/src/global/header_body_checks.c @@ -1,5 +1,3 @@ -/* $NetBSD: header_body_checks.c,v 1.1.1.1 2008/06/22 14:02:16 christos Exp $ */ - /*++ /* NAME /* header_body_checks 3 diff --git a/gnu/dist/postfix/src/global/header_body_checks.h b/gnu/dist/postfix/src/global/header_body_checks.h index f8f0a9832070..f397ae2a75ef 100644 --- a/gnu/dist/postfix/src/global/header_body_checks.h +++ b/gnu/dist/postfix/src/global/header_body_checks.h @@ -1,5 +1,3 @@ -/* $NetBSD: header_body_checks.h,v 1.1.1.1 2008/06/22 14:02:23 christos Exp $ */ - #ifndef _HBC_H_INCLUDED_ #define _HBC_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/header_opts.c b/gnu/dist/postfix/src/global/header_opts.c index 1bae29360ce1..0461502ff9fd 100644 --- a/gnu/dist/postfix/src/global/header_opts.c +++ b/gnu/dist/postfix/src/global/header_opts.c @@ -1,5 +1,3 @@ -/* $NetBSD: header_opts.c,v 1.1.1.5 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* header_opts 3 diff --git a/gnu/dist/postfix/src/global/header_opts.h b/gnu/dist/postfix/src/global/header_opts.h index 65b7b15bd179..a0f26510ac66 100644 --- a/gnu/dist/postfix/src/global/header_opts.h +++ b/gnu/dist/postfix/src/global/header_opts.h @@ -1,5 +1,3 @@ -/* $NetBSD: header_opts.h,v 1.1.1.5 2008/06/22 14:02:24 christos Exp $ */ - #ifndef _HEADER_OPTS_H_INCLUDED_ #define _HEADER_OPTS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/header_token.c b/gnu/dist/postfix/src/global/header_token.c index d45f474aebff..337512574918 100644 --- a/gnu/dist/postfix/src/global/header_token.c +++ b/gnu/dist/postfix/src/global/header_token.c @@ -1,5 +1,3 @@ -/* $NetBSD: header_token.c,v 1.1.1.4 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* header_token 3 diff --git a/gnu/dist/postfix/src/global/header_token.h b/gnu/dist/postfix/src/global/header_token.h index 1b7cf6e4744c..7154ef7e5652 100644 --- a/gnu/dist/postfix/src/global/header_token.h +++ b/gnu/dist/postfix/src/global/header_token.h @@ -1,5 +1,3 @@ -/* $NetBSD: header_token.h,v 1.1.1.3 2006/07/19 01:17:24 rpaulo Exp $ */ - #ifndef _HEADER_TOKEN_H_INCLUDED_ #define _HEADER_TOKEN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/input_transp.c b/gnu/dist/postfix/src/global/input_transp.c index 1c82d7e815fe..ca3af3409237 100644 --- a/gnu/dist/postfix/src/global/input_transp.c +++ b/gnu/dist/postfix/src/global/input_transp.c @@ -1,5 +1,3 @@ -/* $NetBSD: input_transp.c,v 1.1.1.6 2008/06/22 14:02:24 christos Exp $ */ - /*++ /* NAME /* input_transp 3 diff --git a/gnu/dist/postfix/src/global/input_transp.h b/gnu/dist/postfix/src/global/input_transp.h index 479ad05feef3..c98c83680755 100644 --- a/gnu/dist/postfix/src/global/input_transp.h +++ b/gnu/dist/postfix/src/global/input_transp.h @@ -1,5 +1,3 @@ -/* $NetBSD: input_transp.h,v 1.1.1.4 2006/07/19 01:17:24 rpaulo Exp $ */ - #ifndef _INPUT_TRANSP_INCLUDED_ #define _INPUT_TRANSP_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/int_filt.c b/gnu/dist/postfix/src/global/int_filt.c index 924b930ee7e6..528824170a8d 100644 --- a/gnu/dist/postfix/src/global/int_filt.c +++ b/gnu/dist/postfix/src/global/int_filt.c @@ -1,5 +1,3 @@ -/* $NetBSD: int_filt.c,v 1.1.1.2 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* int_filt 3 diff --git a/gnu/dist/postfix/src/global/int_filt.h b/gnu/dist/postfix/src/global/int_filt.h index b04f95f5dee7..932fe3c3b771 100644 --- a/gnu/dist/postfix/src/global/int_filt.h +++ b/gnu/dist/postfix/src/global/int_filt.h @@ -1,5 +1,3 @@ -/* $NetBSD: int_filt.h,v 1.1.1.1 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _INT_FILT_INCLUDED_ #define _INT_FILT_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/is_header.c b/gnu/dist/postfix/src/global/is_header.c index e4973a7b7be8..891e1372e37e 100644 --- a/gnu/dist/postfix/src/global/is_header.c +++ b/gnu/dist/postfix/src/global/is_header.c @@ -1,5 +1,3 @@ -/* $NetBSD: is_header.c,v 1.1.1.5 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* is_header 3 diff --git a/gnu/dist/postfix/src/global/is_header.h b/gnu/dist/postfix/src/global/is_header.h index eaec4c36d561..e42957fc360e 100644 --- a/gnu/dist/postfix/src/global/is_header.h +++ b/gnu/dist/postfix/src/global/is_header.h @@ -1,5 +1,3 @@ -/* $NetBSD: is_header.h,v 1.1.1.3 2006/07/19 01:17:24 rpaulo Exp $ */ - #ifndef _IS_HEADER_H_INCLUDED_ #define _IS_HEADER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/lex_822.h b/gnu/dist/postfix/src/global/lex_822.h index b41c0da22a9c..f462b9825b34 100644 --- a/gnu/dist/postfix/src/global/lex_822.h +++ b/gnu/dist/postfix/src/global/lex_822.h @@ -1,5 +1,3 @@ -/* $NetBSD: lex_822.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _LEX_822_H_INCLUDED_ #define _LEX_822_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/log_adhoc.c b/gnu/dist/postfix/src/global/log_adhoc.c index 35147c573207..43b3f01fd12f 100644 --- a/gnu/dist/postfix/src/global/log_adhoc.c +++ b/gnu/dist/postfix/src/global/log_adhoc.c @@ -1,5 +1,3 @@ -/* $NetBSD: log_adhoc.c,v 1.1.1.3 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* log_adhoc 3 diff --git a/gnu/dist/postfix/src/global/log_adhoc.h b/gnu/dist/postfix/src/global/log_adhoc.h index c8c2cb966791..583cb6122b2b 100644 --- a/gnu/dist/postfix/src/global/log_adhoc.h +++ b/gnu/dist/postfix/src/global/log_adhoc.h @@ -1,5 +1,3 @@ -/* $NetBSD: log_adhoc.h,v 1.1.1.3 2006/07/19 01:17:24 rpaulo Exp $ */ - #ifndef _LOG_ADHOC_H_INCLUDED_ #define _LOG_ADHOC_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_addr.c b/gnu/dist/postfix/src/global/mail_addr.c index 49d084d5bef4..9ea3cdad3c09 100644 --- a/gnu/dist/postfix/src/global/mail_addr.c +++ b/gnu/dist/postfix/src/global/mail_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr.c,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - /*++ /* NAME /* mail_addr 3 diff --git a/gnu/dist/postfix/src/global/mail_addr.h b/gnu/dist/postfix/src/global/mail_addr.h index 408e23d0890d..f06a754d4eff 100644 --- a/gnu/dist/postfix/src/global/mail_addr.h +++ b/gnu/dist/postfix/src/global/mail_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_ADDR_H_INCLUDED_ #define _MAIL_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_addr_crunch.c b/gnu/dist/postfix/src/global/mail_addr_crunch.c index 7e41f48a7637..8f92d29683dd 100644 --- a/gnu/dist/postfix/src/global/mail_addr_crunch.c +++ b/gnu/dist/postfix/src/global/mail_addr_crunch.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr_crunch.c,v 1.1.1.4 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* mail_addr_crunch 3 diff --git a/gnu/dist/postfix/src/global/mail_addr_crunch.h b/gnu/dist/postfix/src/global/mail_addr_crunch.h index 8fd5a8c0a989..2c5eb33750c8 100644 --- a/gnu/dist/postfix/src/global/mail_addr_crunch.h +++ b/gnu/dist/postfix/src/global/mail_addr_crunch.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr_crunch.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_ADDR_CRUNCH_H_INCLUDED_ #define _MAIL_ADDR_CRUNCH_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_addr_find.c b/gnu/dist/postfix/src/global/mail_addr_find.c index 51a0a57bfdfd..6769daa86334 100644 --- a/gnu/dist/postfix/src/global/mail_addr_find.c +++ b/gnu/dist/postfix/src/global/mail_addr_find.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr_find.c,v 1.1.1.6 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* mail_addr_find 3 diff --git a/gnu/dist/postfix/src/global/mail_addr_find.h b/gnu/dist/postfix/src/global/mail_addr_find.h index ba759ca0e75f..a82246a87a45 100644 --- a/gnu/dist/postfix/src/global/mail_addr_find.h +++ b/gnu/dist/postfix/src/global/mail_addr_find.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr_find.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_ADDR_FIND_H_INCLUDED_ #define _MAIL_ADDR_FIND_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_addr_map.c b/gnu/dist/postfix/src/global/mail_addr_map.c index f4a5cbb74569..6f835d39929b 100644 --- a/gnu/dist/postfix/src/global/mail_addr_map.c +++ b/gnu/dist/postfix/src/global/mail_addr_map.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr_map.c,v 1.1.1.6 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* mail_addr_map 3 diff --git a/gnu/dist/postfix/src/global/mail_addr_map.h b/gnu/dist/postfix/src/global/mail_addr_map.h index d39715f35c8a..f887c611a2a3 100644 --- a/gnu/dist/postfix/src/global/mail_addr_map.h +++ b/gnu/dist/postfix/src/global/mail_addr_map.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_addr_map.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_ADDR_MAP_H_INCLUDED_ #define _MAIL_ADDR_MAP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_command_client.c b/gnu/dist/postfix/src/global/mail_command_client.c index 6716d162740a..db4360972529 100644 --- a/gnu/dist/postfix/src/global/mail_command_client.c +++ b/gnu/dist/postfix/src/global/mail_command_client.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_command_client.c,v 1.1.1.3 2006/07/19 01:17:21 rpaulo Exp $ */ - /*++ /* NAME /* mail_command_client 3 diff --git a/gnu/dist/postfix/src/global/mail_command_server.c b/gnu/dist/postfix/src/global/mail_command_server.c index 67cc47f6b446..9565b55fb4ca 100644 --- a/gnu/dist/postfix/src/global/mail_command_server.c +++ b/gnu/dist/postfix/src/global/mail_command_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_command_server.c,v 1.1.1.2 2004/05/31 00:24:30 heas Exp $ */ - /*++ /* NAME /* mail_command_server 3 diff --git a/gnu/dist/postfix/src/global/mail_conf.c b/gnu/dist/postfix/src/global/mail_conf.c index 801d01289eaf..e1331f0287b0 100644 --- a/gnu/dist/postfix/src/global/mail_conf.c +++ b/gnu/dist/postfix/src/global/mail_conf.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf.c,v 1.1.1.4 2004/05/31 00:24:31 heas Exp $ */ - /*++ /* NAME /* mail_conf 3 diff --git a/gnu/dist/postfix/src/global/mail_conf.h b/gnu/dist/postfix/src/global/mail_conf.h index 681654b13e64..89cce98c180b 100644 --- a/gnu/dist/postfix/src/global/mail_conf.h +++ b/gnu/dist/postfix/src/global/mail_conf.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf.h,v 1.1.1.6 2008/06/22 14:02:25 christos Exp $ */ - #ifndef _MAIL_CONF_H_INCLUDED_ #define _MAIL_CONF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_conf_bool.c b/gnu/dist/postfix/src/global/mail_conf_bool.c index 585cc10cf749..30d4813ba434 100644 --- a/gnu/dist/postfix/src/global/mail_conf_bool.c +++ b/gnu/dist/postfix/src/global/mail_conf_bool.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf_bool.c,v 1.1.1.4 2008/06/22 14:02:23 christos Exp $ */ - /*++ /* NAME /* mail_conf_bool 3 diff --git a/gnu/dist/postfix/src/global/mail_conf_int.c b/gnu/dist/postfix/src/global/mail_conf_int.c index 7ad6e50c704e..1c2dcba43985 100644 --- a/gnu/dist/postfix/src/global/mail_conf_int.c +++ b/gnu/dist/postfix/src/global/mail_conf_int.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf_int.c,v 1.1.1.4 2008/06/22 14:02:25 christos Exp $ */ - /*++ /* NAME /* mail_conf_int 3 diff --git a/gnu/dist/postfix/src/global/mail_conf_long.c b/gnu/dist/postfix/src/global/mail_conf_long.c index b79d214d184f..e9feaa3ad927 100644 --- a/gnu/dist/postfix/src/global/mail_conf_long.c +++ b/gnu/dist/postfix/src/global/mail_conf_long.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf_long.c,v 1.1.1.2 2008/06/22 14:02:25 christos Exp $ */ - /*++ /* NAME /* mail_conf_long 3 diff --git a/gnu/dist/postfix/src/global/mail_conf_raw.c b/gnu/dist/postfix/src/global/mail_conf_raw.c index 643f83f31cd0..4c9c5bde70c1 100644 --- a/gnu/dist/postfix/src/global/mail_conf_raw.c +++ b/gnu/dist/postfix/src/global/mail_conf_raw.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf_raw.c,v 1.1.1.4 2008/06/22 14:02:25 christos Exp $ */ - /*++ /* NAME /* mail_conf_raw 3 diff --git a/gnu/dist/postfix/src/global/mail_conf_str.c b/gnu/dist/postfix/src/global/mail_conf_str.c index dc49b1c81d0a..8d8288ce3a3b 100644 --- a/gnu/dist/postfix/src/global/mail_conf_str.c +++ b/gnu/dist/postfix/src/global/mail_conf_str.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf_str.c,v 1.1.1.5 2008/06/22 14:02:25 christos Exp $ */ - /*++ /* NAME /* mail_conf_str 3 diff --git a/gnu/dist/postfix/src/global/mail_conf_time.c b/gnu/dist/postfix/src/global/mail_conf_time.c index dfc57b6c25ff..64523e9da04f 100644 --- a/gnu/dist/postfix/src/global/mail_conf_time.c +++ b/gnu/dist/postfix/src/global/mail_conf_time.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_conf_time.c,v 1.1.1.6 2008/06/22 14:02:25 christos Exp $ */ - /*++ /* NAME /* mail_conf_time 3 diff --git a/gnu/dist/postfix/src/global/mail_connect.c b/gnu/dist/postfix/src/global/mail_connect.c index 0bdc911f1db6..a8ef96d13647 100644 --- a/gnu/dist/postfix/src/global/mail_connect.c +++ b/gnu/dist/postfix/src/global/mail_connect.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_connect.c,v 1.1.1.3 2004/05/31 00:24:31 heas Exp $ */ - /*++ /* NAME /* mail_connect 3 diff --git a/gnu/dist/postfix/src/global/mail_copy.c b/gnu/dist/postfix/src/global/mail_copy.c index ee6c7a868911..7088f480db31 100644 --- a/gnu/dist/postfix/src/global/mail_copy.c +++ b/gnu/dist/postfix/src/global/mail_copy.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_copy.c,v 1.1.1.8 2008/06/22 14:02:25 christos Exp $ */ - /*++ /* NAME /* mail_copy 3 diff --git a/gnu/dist/postfix/src/global/mail_copy.h b/gnu/dist/postfix/src/global/mail_copy.h index 6cfeeb243c9c..4f2d773659b0 100644 --- a/gnu/dist/postfix/src/global/mail_copy.h +++ b/gnu/dist/postfix/src/global/mail_copy.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_copy.h,v 1.1.1.5 2006/07/19 01:17:24 rpaulo Exp $ */ - #ifndef _MAIL_COPY_H_INCLUDED_ #define _MAIL_COPY_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_date.c b/gnu/dist/postfix/src/global/mail_date.c index c61093eb9823..55d8907766e4 100644 --- a/gnu/dist/postfix/src/global/mail_date.c +++ b/gnu/dist/postfix/src/global/mail_date.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_date.c,v 1.1.1.5 2006/08/27 00:39:46 rpaulo Exp $ */ - /*++ /* NAME /* mail_date 3 diff --git a/gnu/dist/postfix/src/global/mail_date.h b/gnu/dist/postfix/src/global/mail_date.h index bd542b83e81f..101436c54ad5 100644 --- a/gnu/dist/postfix/src/global/mail_date.h +++ b/gnu/dist/postfix/src/global/mail_date.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_date.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_DATE_H_INCLUDED_ #define _MAIL_DATE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_dict.c b/gnu/dist/postfix/src/global/mail_dict.c index d6f89fb3a7e5..35ecffb889f5 100644 --- a/gnu/dist/postfix/src/global/mail_dict.c +++ b/gnu/dist/postfix/src/global/mail_dict.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_dict.c,v 1.1.1.4 2008/06/22 14:02:24 christos Exp $ */ - /*++ /* NAME /* mail_dict 3 diff --git a/gnu/dist/postfix/src/global/mail_dict.h b/gnu/dist/postfix/src/global/mail_dict.h index 1c79f3debd4c..62ad8810a7d4 100644 --- a/gnu/dist/postfix/src/global/mail_dict.h +++ b/gnu/dist/postfix/src/global/mail_dict.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_dict.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - /*++ /* NAME /* mail_dict 3h diff --git a/gnu/dist/postfix/src/global/mail_error.c b/gnu/dist/postfix/src/global/mail_error.c index aa89356045a1..8e9d40936a74 100644 --- a/gnu/dist/postfix/src/global/mail_error.c +++ b/gnu/dist/postfix/src/global/mail_error.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_error.c,v 1.1.1.3 2008/06/22 14:02:26 christos Exp $ */ - /*++ /* NAME /* mail_error 3 diff --git a/gnu/dist/postfix/src/global/mail_error.h b/gnu/dist/postfix/src/global/mail_error.h index 0b23ce235f6a..89aee07e43f3 100644 --- a/gnu/dist/postfix/src/global/mail_error.h +++ b/gnu/dist/postfix/src/global/mail_error.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_error.h,v 1.1.1.3 2008/06/22 14:02:26 christos Exp $ */ - #ifndef _MAIL_ERROR_H_INCLUDED_ #define _MAIL_ERROR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_flush.c b/gnu/dist/postfix/src/global/mail_flush.c index fba88a732473..cfa9c3254d8a 100644 --- a/gnu/dist/postfix/src/global/mail_flush.c +++ b/gnu/dist/postfix/src/global/mail_flush.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_flush.c,v 1.1.1.3 2004/05/31 00:24:31 heas Exp $ */ - /*++ /* NAME /* mail_flush 3 diff --git a/gnu/dist/postfix/src/global/mail_flush.h b/gnu/dist/postfix/src/global/mail_flush.h index 5b9e5b50353c..03f3945f6f69 100644 --- a/gnu/dist/postfix/src/global/mail_flush.h +++ b/gnu/dist/postfix/src/global/mail_flush.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_flush.h,v 1.1.1.3 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_FLUSH_H_INCLUDED_ #define _MAIL_FLUSH_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_open_ok.c b/gnu/dist/postfix/src/global/mail_open_ok.c index 5e12fb181b0b..8f9ffb25359d 100644 --- a/gnu/dist/postfix/src/global/mail_open_ok.c +++ b/gnu/dist/postfix/src/global/mail_open_ok.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_open_ok.c,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - /*++ /* NAME /* mail_open_ok 3 diff --git a/gnu/dist/postfix/src/global/mail_open_ok.h b/gnu/dist/postfix/src/global/mail_open_ok.h index dacc6c0740e5..a56521a7f0b8 100644 --- a/gnu/dist/postfix/src/global/mail_open_ok.h +++ b/gnu/dist/postfix/src/global/mail_open_ok.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_open_ok.h,v 1.1.1.2 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAIL_OPEN_OK_H_INCLUDED_ #define _MAIL_OPEN_OK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_params.c b/gnu/dist/postfix/src/global/mail_params.c index 573f2afb0519..2cb19631d619 100644 --- a/gnu/dist/postfix/src/global/mail_params.c +++ b/gnu/dist/postfix/src/global/mail_params.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_params.c,v 1.1.1.9 2008/06/22 14:02:26 christos Exp $ */ - /*++ /* NAME /* mail_params 3 diff --git a/gnu/dist/postfix/src/global/mail_pathname.c b/gnu/dist/postfix/src/global/mail_pathname.c index e0f98e7be11e..32fa109fe5b2 100644 --- a/gnu/dist/postfix/src/global/mail_pathname.c +++ b/gnu/dist/postfix/src/global/mail_pathname.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_pathname.c,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - /*++ /* NAME /* mail_pathname 3 diff --git a/gnu/dist/postfix/src/global/mail_proto.h b/gnu/dist/postfix/src/global/mail_proto.h index 7958d4f60260..4f92c15e514d 100644 --- a/gnu/dist/postfix/src/global/mail_proto.h +++ b/gnu/dist/postfix/src/global/mail_proto.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_proto.h,v 1.1.1.10 2008/06/22 14:02:30 christos Exp $ */ - #ifndef _MAIL_PROTO_H_INCLUDED_ #define _MAIL_PROTO_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_queue.c b/gnu/dist/postfix/src/global/mail_queue.c index f7aec96a3c6b..0d997080c6aa 100644 --- a/gnu/dist/postfix/src/global/mail_queue.c +++ b/gnu/dist/postfix/src/global/mail_queue.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_queue.c,v 1.1.1.7 2006/07/19 01:17:25 rpaulo Exp $ */ - /*++ /* NAME /* mail_queue 3 diff --git a/gnu/dist/postfix/src/global/mail_queue.h b/gnu/dist/postfix/src/global/mail_queue.h index 815c41532951..f1c2389d90b1 100644 --- a/gnu/dist/postfix/src/global/mail_queue.h +++ b/gnu/dist/postfix/src/global/mail_queue.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_queue.h,v 1.1.1.7 2007/05/19 16:28:13 heas Exp $ */ - #ifndef _MAIL_QUEUE_H_INCLUDED_ #define _MAIL_QUEUE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_run.c b/gnu/dist/postfix/src/global/mail_run.c index 7ac58016b1e8..f3764345f414 100644 --- a/gnu/dist/postfix/src/global/mail_run.c +++ b/gnu/dist/postfix/src/global/mail_run.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_run.c,v 1.1.1.4 2006/07/19 01:17:25 rpaulo Exp $ */ - /*++ /* NAME /* mail_run 3 diff --git a/gnu/dist/postfix/src/global/mail_run.h b/gnu/dist/postfix/src/global/mail_run.h index 4fef5ce55cd5..b85109f9f872 100644 --- a/gnu/dist/postfix/src/global/mail_run.h +++ b/gnu/dist/postfix/src/global/mail_run.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_run.h,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - #ifndef _MAIL_RUN_H_INCLUDED_ #define _MAIL_RUN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_scan_dir.c b/gnu/dist/postfix/src/global/mail_scan_dir.c index bffd0f20981f..f011536c28f3 100644 --- a/gnu/dist/postfix/src/global/mail_scan_dir.c +++ b/gnu/dist/postfix/src/global/mail_scan_dir.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_scan_dir.c,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - /*++ /* NAME /* mail_scan_dir 3 diff --git a/gnu/dist/postfix/src/global/mail_scan_dir.h b/gnu/dist/postfix/src/global/mail_scan_dir.h index e6c087462937..fda13260fcf5 100644 --- a/gnu/dist/postfix/src/global/mail_scan_dir.h +++ b/gnu/dist/postfix/src/global/mail_scan_dir.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_scan_dir.h,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - #ifndef _MAIL_SCAN_DIR_H_INCLUDED_ #define _MAIL_SCAN_DIR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_stream.c b/gnu/dist/postfix/src/global/mail_stream.c index 71458267886e..88602a30fc1b 100644 --- a/gnu/dist/postfix/src/global/mail_stream.c +++ b/gnu/dist/postfix/src/global/mail_stream.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_stream.c,v 1.1.1.10 2008/06/22 14:02:31 christos Exp $ */ - /*++ /* NAME /* mail_stream 3 diff --git a/gnu/dist/postfix/src/global/mail_stream.h b/gnu/dist/postfix/src/global/mail_stream.h index 2ed757bb30a9..a8e73032e526 100644 --- a/gnu/dist/postfix/src/global/mail_stream.h +++ b/gnu/dist/postfix/src/global/mail_stream.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_stream.h,v 1.1.1.6 2006/07/19 01:17:26 rpaulo Exp $ */ - #ifndef _MAIL_STREAM_H_INCLUDED_ #define _MAIL_STREAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_task.c b/gnu/dist/postfix/src/global/mail_task.c index 27e5cf388ab2..9f2fbc05919d 100644 --- a/gnu/dist/postfix/src/global/mail_task.c +++ b/gnu/dist/postfix/src/global/mail_task.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_task.c,v 1.1.1.5 2007/05/19 16:28:13 heas Exp $ */ - /*++ /* NAME /* mail_task 3 diff --git a/gnu/dist/postfix/src/global/mail_task.h b/gnu/dist/postfix/src/global/mail_task.h index 0c65b54eb0ff..942753f89b28 100644 --- a/gnu/dist/postfix/src/global/mail_task.h +++ b/gnu/dist/postfix/src/global/mail_task.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_task.h,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - #ifndef _MAIL_TASK_H_INCLUDED_ #define _MAIL_TASK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mail_trigger.c b/gnu/dist/postfix/src/global/mail_trigger.c index 1c07826a7670..5f9ac580ae58 100644 --- a/gnu/dist/postfix/src/global/mail_trigger.c +++ b/gnu/dist/postfix/src/global/mail_trigger.c @@ -1,5 +1,3 @@ -/* $NetBSD: mail_trigger.c,v 1.1.1.4 2006/07/19 01:17:26 rpaulo Exp $ */ - /*++ /* NAME /* mail_trigger 3 diff --git a/gnu/dist/postfix/src/global/mail_version.c b/gnu/dist/postfix/src/global/mail_version.c index 64d30a8f364e..e69de29bb2d1 100644 --- a/gnu/dist/postfix/src/global/mail_version.c +++ b/gnu/dist/postfix/src/global/mail_version.c @@ -1,2 +0,0 @@ -/* $NetBSD: mail_version.c,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - diff --git a/gnu/dist/postfix/src/global/mail_version.h b/gnu/dist/postfix/src/global/mail_version.h index 4070636ef527..4207d1bb78d0 100644 --- a/gnu/dist/postfix/src/global/mail_version.h +++ b/gnu/dist/postfix/src/global/mail_version.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_version.h,v 1.1.1.31 2008/06/22 14:02:31 christos Exp $ */ - #ifndef _MAIL_VERSION_H_INCLUDED_ #define _MAIL_VERSION_H_INCLUDED_ @@ -22,8 +20,8 @@ * Patches change both the patchlevel and the release date. Snapshots have no * patchlevel; they change the release date only. */ -#define MAIL_RELEASE_DATE "20080507" -#define MAIL_VERSION_NUMBER "2.5.2" +#define MAIL_RELEASE_DATE "20080814" +#define MAIL_VERSION_NUMBER "2.5.4" #ifdef SNAPSHOT # define MAIL_VERSION_DATE "-" MAIL_RELEASE_DATE diff --git a/gnu/dist/postfix/src/global/maps.c b/gnu/dist/postfix/src/global/maps.c index c4b15079a444..f0cb35526d4b 100644 --- a/gnu/dist/postfix/src/global/maps.c +++ b/gnu/dist/postfix/src/global/maps.c @@ -1,5 +1,3 @@ -/* $NetBSD: maps.c,v 1.1.1.6 2006/07/19 01:17:23 rpaulo Exp $ */ - /*++ /* NAME /* maps 3 diff --git a/gnu/dist/postfix/src/global/maps.h b/gnu/dist/postfix/src/global/maps.h index 2a0d5cde9d1f..015811f699eb 100644 --- a/gnu/dist/postfix/src/global/maps.h +++ b/gnu/dist/postfix/src/global/maps.h @@ -1,5 +1,3 @@ -/* $NetBSD: maps.h,v 1.1.1.3 2004/05/31 00:24:31 heas Exp $ */ - #ifndef _MAPS_H_INCLUDED_ #define _MAPS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mark_corrupt.c b/gnu/dist/postfix/src/global/mark_corrupt.c index a27fa2f3aa78..b0694bb07b07 100644 --- a/gnu/dist/postfix/src/global/mark_corrupt.c +++ b/gnu/dist/postfix/src/global/mark_corrupt.c @@ -1,5 +1,3 @@ -/* $NetBSD: mark_corrupt.c,v 1.1.1.4 2006/07/19 01:17:26 rpaulo Exp $ */ - /*++ /* NAME /* mark_corrupt 3 diff --git a/gnu/dist/postfix/src/global/mark_corrupt.h b/gnu/dist/postfix/src/global/mark_corrupt.h index 41e61509b261..4fad8b74e50e 100644 --- a/gnu/dist/postfix/src/global/mark_corrupt.h +++ b/gnu/dist/postfix/src/global/mark_corrupt.h @@ -1,5 +1,3 @@ -/* $NetBSD: mark_corrupt.h,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - #ifndef _MARK_CORRUPT_H_INCLUDED_ #define _MARK_CORRUPT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/match_parent_style.c b/gnu/dist/postfix/src/global/match_parent_style.c index f22e62ad3167..b07a4fdcd05c 100644 --- a/gnu/dist/postfix/src/global/match_parent_style.c +++ b/gnu/dist/postfix/src/global/match_parent_style.c @@ -1,5 +1,3 @@ -/* $NetBSD: match_parent_style.c,v 1.1.1.4 2006/07/19 01:17:24 rpaulo Exp $ */ - /*++ /* NAME /* match_parent_style 3 diff --git a/gnu/dist/postfix/src/global/match_parent_style.h b/gnu/dist/postfix/src/global/match_parent_style.h index 48f46f575c64..7b51eddf70ac 100644 --- a/gnu/dist/postfix/src/global/match_parent_style.h +++ b/gnu/dist/postfix/src/global/match_parent_style.h @@ -1,5 +1,3 @@ -/* $NetBSD: match_parent_style.h,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - #ifndef _MATCH_PARENT_STYLE_H_INCLUDED_ #define _MATCH_PARENT_STYLE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mbox_conf.c b/gnu/dist/postfix/src/global/mbox_conf.c index 0acb9f219d57..2856d86ab269 100644 --- a/gnu/dist/postfix/src/global/mbox_conf.c +++ b/gnu/dist/postfix/src/global/mbox_conf.c @@ -1,5 +1,3 @@ -/* $NetBSD: mbox_conf.c,v 1.1.1.4 2008/06/22 14:02:31 christos Exp $ */ - /*++ /* NAME /* mbox_conf 3 diff --git a/gnu/dist/postfix/src/global/mbox_conf.h b/gnu/dist/postfix/src/global/mbox_conf.h index 7c9100aaa020..46e447b90cf4 100644 --- a/gnu/dist/postfix/src/global/mbox_conf.h +++ b/gnu/dist/postfix/src/global/mbox_conf.h @@ -1,5 +1,3 @@ -/* $NetBSD: mbox_conf.h,v 1.1.1.2 2004/05/31 00:24:32 heas Exp $ */ - #ifndef _MBOX_CONF_H_INCLUDED_ #define _MBOX_CONF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mbox_open.c b/gnu/dist/postfix/src/global/mbox_open.c index 7ac14e36cf3b..ea96d8a4b87d 100644 --- a/gnu/dist/postfix/src/global/mbox_open.c +++ b/gnu/dist/postfix/src/global/mbox_open.c @@ -1,5 +1,3 @@ -/* $NetBSD: mbox_open.c,v 1.1.1.4 2007/05/19 16:28:14 heas Exp $ */ - /*++ /* NAME /* mbox_open 3 diff --git a/gnu/dist/postfix/src/global/mbox_open.h b/gnu/dist/postfix/src/global/mbox_open.h index 8f1aa8e4ffeb..54d13c6594a1 100644 --- a/gnu/dist/postfix/src/global/mbox_open.h +++ b/gnu/dist/postfix/src/global/mbox_open.h @@ -1,5 +1,3 @@ -/* $NetBSD: mbox_open.h,v 1.1.1.3 2006/07/19 01:17:26 rpaulo Exp $ */ - #ifndef _MBOX_OPEN_H_INCLUDED_ #define _MBOX_OPEN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mime_state.c b/gnu/dist/postfix/src/global/mime_state.c index d80904985f34..ac754c0a337e 100644 --- a/gnu/dist/postfix/src/global/mime_state.c +++ b/gnu/dist/postfix/src/global/mime_state.c @@ -1,5 +1,3 @@ -/* $NetBSD: mime_state.c,v 1.1.1.7 2008/06/22 14:02:33 christos Exp $ */ - /*++ /* NAME /* mime_state 3 diff --git a/gnu/dist/postfix/src/global/mime_state.h b/gnu/dist/postfix/src/global/mime_state.h index 28def2b954be..88a4d7cf39ed 100644 --- a/gnu/dist/postfix/src/global/mime_state.h +++ b/gnu/dist/postfix/src/global/mime_state.h @@ -1,5 +1,3 @@ -/* $NetBSD: mime_state.h,v 1.1.1.4 2008/06/22 14:02:33 christos Exp $ */ - #ifndef _MIME_STATE_H_INCLUDED_ #define _MIME_STATE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mkmap.h b/gnu/dist/postfix/src/global/mkmap.h index c516fa154918..969b2a733aa3 100644 --- a/gnu/dist/postfix/src/global/mkmap.h +++ b/gnu/dist/postfix/src/global/mkmap.h @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap.h,v 1.1.1.5 2008/06/22 14:02:31 christos Exp $ */ - #ifndef _MKMAP_H_INCLUDED_ #define _MKMAP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mkmap_cdb.c b/gnu/dist/postfix/src/global/mkmap_cdb.c index daeacc6416ce..83bf96d37c97 100644 --- a/gnu/dist/postfix/src/global/mkmap_cdb.c +++ b/gnu/dist/postfix/src/global/mkmap_cdb.c @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap_cdb.c,v 1.1.1.1 2005/08/18 21:07:12 rpaulo Exp $ */ - /*++ /* NAME /* mkmap_cdb 3 diff --git a/gnu/dist/postfix/src/global/mkmap_db.c b/gnu/dist/postfix/src/global/mkmap_db.c index f5104526d8fc..704fa342af72 100644 --- a/gnu/dist/postfix/src/global/mkmap_db.c +++ b/gnu/dist/postfix/src/global/mkmap_db.c @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap_db.c,v 1.1.1.3 2004/05/31 00:24:32 heas Exp $ */ - /*++ /* NAME /* mkmap_db 3 diff --git a/gnu/dist/postfix/src/global/mkmap_dbm.c b/gnu/dist/postfix/src/global/mkmap_dbm.c index ad69fb5d7cc7..1db588bab410 100644 --- a/gnu/dist/postfix/src/global/mkmap_dbm.c +++ b/gnu/dist/postfix/src/global/mkmap_dbm.c @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap_dbm.c,v 1.1.1.3 2004/05/31 00:24:34 heas Exp $ */ - /*++ /* NAME /* mkmap_dbm 3 diff --git a/gnu/dist/postfix/src/global/mkmap_open.c b/gnu/dist/postfix/src/global/mkmap_open.c index 072a0f513694..69a0d5727a98 100644 --- a/gnu/dist/postfix/src/global/mkmap_open.c +++ b/gnu/dist/postfix/src/global/mkmap_open.c @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap_open.c,v 1.1.1.6 2008/06/22 14:02:37 christos Exp $ */ - /*++ /* NAME /* mkmap_open 3 diff --git a/gnu/dist/postfix/src/global/mkmap_proxy.c b/gnu/dist/postfix/src/global/mkmap_proxy.c index 07cd5d689783..e4f4f34f151d 100644 --- a/gnu/dist/postfix/src/global/mkmap_proxy.c +++ b/gnu/dist/postfix/src/global/mkmap_proxy.c @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap_proxy.c,v 1.1.1.1 2008/06/22 14:02:37 christos Exp $ */ - /*++ /* NAME /* mkmap_proxy 3 diff --git a/gnu/dist/postfix/src/global/mkmap_sdbm.c b/gnu/dist/postfix/src/global/mkmap_sdbm.c index 648976c39c6e..7e87e4e823e2 100644 --- a/gnu/dist/postfix/src/global/mkmap_sdbm.c +++ b/gnu/dist/postfix/src/global/mkmap_sdbm.c @@ -1,5 +1,3 @@ -/* $NetBSD: mkmap_sdbm.c,v 1.1.1.1 2005/08/18 21:06:08 rpaulo Exp $ */ - /*++ /* NAME /* mkmap_sdbm 3 diff --git a/gnu/dist/postfix/src/global/msg_stats.h b/gnu/dist/postfix/src/global/msg_stats.h index 3dbebced29d2..f71406cd6b3b 100644 --- a/gnu/dist/postfix/src/global/msg_stats.h +++ b/gnu/dist/postfix/src/global/msg_stats.h @@ -1,5 +1,3 @@ -/* $NetBSD: msg_stats.h,v 1.1.1.1 2006/07/19 01:17:27 rpaulo Exp $ */ - #ifndef _MSG_STATS_H_INCLUDED_ #define _MSG_STATS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/msg_stats_print.c b/gnu/dist/postfix/src/global/msg_stats_print.c index 270d664925ea..f39b73c99cbe 100644 --- a/gnu/dist/postfix/src/global/msg_stats_print.c +++ b/gnu/dist/postfix/src/global/msg_stats_print.c @@ -1,5 +1,3 @@ -/* $NetBSD: msg_stats_print.c,v 1.1.1.2 2008/06/22 14:02:32 christos Exp $ */ - /*++ /* NAME /* msg_stats_print diff --git a/gnu/dist/postfix/src/global/msg_stats_scan.c b/gnu/dist/postfix/src/global/msg_stats_scan.c index 63bc3c232a10..cff239032951 100644 --- a/gnu/dist/postfix/src/global/msg_stats_scan.c +++ b/gnu/dist/postfix/src/global/msg_stats_scan.c @@ -1,5 +1,3 @@ -/* $NetBSD: msg_stats_scan.c,v 1.1.1.1 2006/07/19 01:17:27 rpaulo Exp $ */ - /*++ /* NAME /* msg_stats_scan diff --git a/gnu/dist/postfix/src/global/mynetworks.h b/gnu/dist/postfix/src/global/mynetworks.h index 7c5b3c2f97fe..28ba18699af0 100644 --- a/gnu/dist/postfix/src/global/mynetworks.h +++ b/gnu/dist/postfix/src/global/mynetworks.h @@ -1,5 +1,3 @@ -/* $NetBSD: mynetworks.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _MYNETWORKS_H_INCLUDED_ #define _MYNETWORKS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/mypwd.c b/gnu/dist/postfix/src/global/mypwd.c index 97038fdea64f..2b7821382c13 100644 --- a/gnu/dist/postfix/src/global/mypwd.c +++ b/gnu/dist/postfix/src/global/mypwd.c @@ -1,5 +1,3 @@ -/* $NetBSD: mypwd.c,v 1.1.1.3 2006/07/19 01:17:27 rpaulo Exp $ */ - /*++ /* NAME /* mypwd 3 diff --git a/gnu/dist/postfix/src/global/mypwd.h b/gnu/dist/postfix/src/global/mypwd.h index 2d8f98cdc01d..d5f8a892b927 100644 --- a/gnu/dist/postfix/src/global/mypwd.h +++ b/gnu/dist/postfix/src/global/mypwd.h @@ -1,5 +1,3 @@ -/* $NetBSD: mypwd.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _MYPWNAM_H_INCLUDED_ #define _MYPWNAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/namadr_list.c b/gnu/dist/postfix/src/global/namadr_list.c index 9f7ed4b0ef72..883b64a8f35c 100644 --- a/gnu/dist/postfix/src/global/namadr_list.c +++ b/gnu/dist/postfix/src/global/namadr_list.c @@ -1,5 +1,3 @@ -/* $NetBSD: namadr_list.c,v 1.1.1.6 2007/05/19 16:28:16 heas Exp $ */ - /*++ /* NAME /* namadr_list 3 diff --git a/gnu/dist/postfix/src/global/namadr_list.h b/gnu/dist/postfix/src/global/namadr_list.h index 76d236a8d4f3..9bf90d7684d5 100644 --- a/gnu/dist/postfix/src/global/namadr_list.h +++ b/gnu/dist/postfix/src/global/namadr_list.h @@ -1,5 +1,3 @@ -/* $NetBSD: namadr_list.h,v 1.1.1.3 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _NAMADR_LIST_H_INCLUDED_ #define _NAMADR_LIST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/off_cvt.c b/gnu/dist/postfix/src/global/off_cvt.c index 3b067119940a..d560516811eb 100644 --- a/gnu/dist/postfix/src/global/off_cvt.c +++ b/gnu/dist/postfix/src/global/off_cvt.c @@ -1,5 +1,3 @@ -/* $NetBSD: off_cvt.c,v 1.1.1.4 2006/07/19 01:17:27 rpaulo Exp $ */ - /*++ /* NAME /* off_cvt 3 diff --git a/gnu/dist/postfix/src/global/off_cvt.h b/gnu/dist/postfix/src/global/off_cvt.h index 1e49aab4acd0..7e506f516acc 100644 --- a/gnu/dist/postfix/src/global/off_cvt.h +++ b/gnu/dist/postfix/src/global/off_cvt.h @@ -1,5 +1,3 @@ -/* $NetBSD: off_cvt.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _OFF_CVT_H_INCLUDED_ #define _OFF_CVT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/opened.c b/gnu/dist/postfix/src/global/opened.c index ab755f1eccb4..169af05cd07e 100644 --- a/gnu/dist/postfix/src/global/opened.c +++ b/gnu/dist/postfix/src/global/opened.c @@ -1,5 +1,3 @@ -/* $NetBSD: opened.c,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - /*++ /* NAME /* opened 3 diff --git a/gnu/dist/postfix/src/global/opened.h b/gnu/dist/postfix/src/global/opened.h index 438d5f725b59..3fc99598eaee 100644 --- a/gnu/dist/postfix/src/global/opened.h +++ b/gnu/dist/postfix/src/global/opened.h @@ -1,5 +1,3 @@ -/* $NetBSD: opened.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _OPENED_H_INCLUDED_ #define _OPENED_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/pipe_command.c b/gnu/dist/postfix/src/global/pipe_command.c index 8da312234c91..ce3bad0a91ce 100644 --- a/gnu/dist/postfix/src/global/pipe_command.c +++ b/gnu/dist/postfix/src/global/pipe_command.c @@ -1,5 +1,3 @@ -/* $NetBSD: pipe_command.c,v 1.1.1.13 2008/06/22 14:02:39 christos Exp $ */ - /*++ /* NAME /* pipe_command 3 diff --git a/gnu/dist/postfix/src/global/pipe_command.h b/gnu/dist/postfix/src/global/pipe_command.h index a3ebc85187bb..339ac5ec015f 100644 --- a/gnu/dist/postfix/src/global/pipe_command.h +++ b/gnu/dist/postfix/src/global/pipe_command.h @@ -1,5 +1,3 @@ -/* $NetBSD: pipe_command.h,v 1.1.1.6 2006/07/19 01:17:27 rpaulo Exp $ */ - #ifndef _PIPE_COMMAND_H_INCLUDED_ #define _PIPE_COMMAND_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/post_mail.c b/gnu/dist/postfix/src/global/post_mail.c index 8977b9157e0c..22deb4fdbe0e 100644 --- a/gnu/dist/postfix/src/global/post_mail.c +++ b/gnu/dist/postfix/src/global/post_mail.c @@ -1,5 +1,3 @@ -/* $NetBSD: post_mail.c,v 1.1.1.7 2007/05/19 16:28:16 heas Exp $ */ - /*++ /* NAME /* post_mail 3 diff --git a/gnu/dist/postfix/src/global/post_mail.h b/gnu/dist/postfix/src/global/post_mail.h index 14048aaf9b3e..b76a2510ef0c 100644 --- a/gnu/dist/postfix/src/global/post_mail.h +++ b/gnu/dist/postfix/src/global/post_mail.h @@ -1,5 +1,3 @@ -/* $NetBSD: post_mail.h,v 1.1.1.5 2006/07/19 01:17:27 rpaulo Exp $ */ - #ifndef _POST_MAIL_H_INCLUDED_ #define _POST_MAIL_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/qmgr_user.h b/gnu/dist/postfix/src/global/qmgr_user.h index 0fc9e09b32e6..566ef5bb9f5e 100644 --- a/gnu/dist/postfix/src/global/qmgr_user.h +++ b/gnu/dist/postfix/src/global/qmgr_user.h @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_user.h,v 1.1.1.3 2006/07/19 01:17:27 rpaulo Exp $ */ - #ifndef _QMGR_USER_H_INCLUDED_ #define _QMGR_USER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/qmqp_proto.h b/gnu/dist/postfix/src/global/qmqp_proto.h index 2212d2c070c7..8ad9e2aadaff 100644 --- a/gnu/dist/postfix/src/global/qmqp_proto.h +++ b/gnu/dist/postfix/src/global/qmqp_proto.h @@ -1,5 +1,3 @@ -/* $NetBSD: qmqp_proto.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - /*++ /* NAME /* qmqpd 3h diff --git a/gnu/dist/postfix/src/global/quote_821_local.c b/gnu/dist/postfix/src/global/quote_821_local.c index d8627e3ccf0c..8cd9b2e04878 100644 --- a/gnu/dist/postfix/src/global/quote_821_local.c +++ b/gnu/dist/postfix/src/global/quote_821_local.c @@ -1,5 +1,3 @@ -/* $NetBSD: quote_821_local.c,v 1.1.1.5 2006/07/19 01:17:27 rpaulo Exp $ */ - /*++ /* NAME /* quote_821_local 3 diff --git a/gnu/dist/postfix/src/global/quote_821_local.h b/gnu/dist/postfix/src/global/quote_821_local.h index 4265746c0956..f2b4812d313e 100644 --- a/gnu/dist/postfix/src/global/quote_821_local.h +++ b/gnu/dist/postfix/src/global/quote_821_local.h @@ -1,5 +1,3 @@ -/* $NetBSD: quote_821_local.h,v 1.1.1.4 2006/07/19 01:17:27 rpaulo Exp $ */ - /*++ /* NAME /* quote_821_local 3h diff --git a/gnu/dist/postfix/src/global/quote_822_local.c b/gnu/dist/postfix/src/global/quote_822_local.c index 015b03d170af..9292252b4a76 100644 --- a/gnu/dist/postfix/src/global/quote_822_local.c +++ b/gnu/dist/postfix/src/global/quote_822_local.c @@ -1,5 +1,3 @@ -/* $NetBSD: quote_822_local.c,v 1.1.1.5 2006/07/19 01:17:28 rpaulo Exp $ */ - /*++ /* NAME /* quote_822_local 3 diff --git a/gnu/dist/postfix/src/global/quote_822_local.h b/gnu/dist/postfix/src/global/quote_822_local.h index ff2505a0bfb1..cb5454360413 100644 --- a/gnu/dist/postfix/src/global/quote_822_local.h +++ b/gnu/dist/postfix/src/global/quote_822_local.h @@ -1,5 +1,3 @@ -/* $NetBSD: quote_822_local.h,v 1.1.1.3 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _QUOTE_822_H_INCLUDED_ #define _QUOTE_822_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/quote_flags.h b/gnu/dist/postfix/src/global/quote_flags.h index cb2552731e86..df0e0b8376a1 100644 --- a/gnu/dist/postfix/src/global/quote_flags.h +++ b/gnu/dist/postfix/src/global/quote_flags.h @@ -1,5 +1,3 @@ -/* $NetBSD: quote_flags.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - /*++ /* NAME /* quote_flags 3h diff --git a/gnu/dist/postfix/src/global/rcpt_buf.c b/gnu/dist/postfix/src/global/rcpt_buf.c index 56b89211b8b0..798929d84b7d 100644 --- a/gnu/dist/postfix/src/global/rcpt_buf.c +++ b/gnu/dist/postfix/src/global/rcpt_buf.c @@ -1,5 +1,3 @@ -/* $NetBSD: rcpt_buf.c,v 1.1.1.2 2008/06/22 14:02:39 christos Exp $ */ - /*++ /* NAME /* rcpt_buf diff --git a/gnu/dist/postfix/src/global/rcpt_buf.h b/gnu/dist/postfix/src/global/rcpt_buf.h index 0297cdb25147..9b2994c0ac28 100644 --- a/gnu/dist/postfix/src/global/rcpt_buf.h +++ b/gnu/dist/postfix/src/global/rcpt_buf.h @@ -1,5 +1,3 @@ -/* $NetBSD: rcpt_buf.h,v 1.1.1.1 2006/07/19 01:17:28 rpaulo Exp $ */ - #ifndef _RCPT_BUF_H_INCLUDED_ #define _RCPT_BUF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/rcpt_print.c b/gnu/dist/postfix/src/global/rcpt_print.c index 25f40d0d1309..1c8b0cfa7f62 100644 --- a/gnu/dist/postfix/src/global/rcpt_print.c +++ b/gnu/dist/postfix/src/global/rcpt_print.c @@ -1,5 +1,3 @@ -/* $NetBSD: rcpt_print.c,v 1.1.1.2 2008/06/22 14:02:39 christos Exp $ */ - /*++ /* NAME /* rcpt_print diff --git a/gnu/dist/postfix/src/global/rcpt_print.h b/gnu/dist/postfix/src/global/rcpt_print.h index 715f1a9bfebf..ef46ad1a95f1 100644 --- a/gnu/dist/postfix/src/global/rcpt_print.h +++ b/gnu/dist/postfix/src/global/rcpt_print.h @@ -1,5 +1,3 @@ -/* $NetBSD: rcpt_print.h,v 1.1.1.1 2006/07/19 01:17:28 rpaulo Exp $ */ - #ifndef _RCPT_PRINT_H_INCLUDED_ #define _RCPT_PRINT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/rec2stream.c b/gnu/dist/postfix/src/global/rec2stream.c index 791d08863efe..4b72c42e2bfd 100644 --- a/gnu/dist/postfix/src/global/rec2stream.c +++ b/gnu/dist/postfix/src/global/rec2stream.c @@ -1,5 +1,3 @@ -/* $NetBSD: rec2stream.c,v 1.1.1.4 2006/07/19 01:17:28 rpaulo Exp $ */ - /*++ /* NAME /* rec2stream 1 diff --git a/gnu/dist/postfix/src/global/rec_attr_map.c b/gnu/dist/postfix/src/global/rec_attr_map.c index ab95e634f472..e98dde8141cc 100644 --- a/gnu/dist/postfix/src/global/rec_attr_map.c +++ b/gnu/dist/postfix/src/global/rec_attr_map.c @@ -1,5 +1,3 @@ -/* $NetBSD: rec_attr_map.c,v 1.1.1.1 2006/07/19 01:17:28 rpaulo Exp $ */ - /*++ /* NAME /* rec_attr_map 3 diff --git a/gnu/dist/postfix/src/global/rec_attr_map.h b/gnu/dist/postfix/src/global/rec_attr_map.h index 1e2f8f60882e..ae57cf128f0b 100644 --- a/gnu/dist/postfix/src/global/rec_attr_map.h +++ b/gnu/dist/postfix/src/global/rec_attr_map.h @@ -1,5 +1,3 @@ -/* $NetBSD: rec_attr_map.h,v 1.1.1.1 2006/07/19 01:17:28 rpaulo Exp $ */ - #ifndef _REC_ATTR_MAP_H_INCLUDED_ #define _REC_ATTR_MAP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/rec_streamlf.c b/gnu/dist/postfix/src/global/rec_streamlf.c index e27b94502e21..76bf95ab01a3 100644 --- a/gnu/dist/postfix/src/global/rec_streamlf.c +++ b/gnu/dist/postfix/src/global/rec_streamlf.c @@ -1,5 +1,3 @@ -/* $NetBSD: rec_streamlf.c,v 1.1.1.3 2004/05/31 00:24:34 heas Exp $ */ - /*++ /* NAME /* rec_streamlf 3 diff --git a/gnu/dist/postfix/src/global/rec_streamlf.h b/gnu/dist/postfix/src/global/rec_streamlf.h index 5e241bd4a5dc..3706f12a2c42 100644 --- a/gnu/dist/postfix/src/global/rec_streamlf.h +++ b/gnu/dist/postfix/src/global/rec_streamlf.h @@ -1,5 +1,3 @@ -/* $NetBSD: rec_streamlf.h,v 1.1.1.2 2004/05/31 00:24:34 heas Exp $ */ - #ifndef _REC_STREAMLF_H_INCLUDED_ #define _REC_STREAMLF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/rec_type.c b/gnu/dist/postfix/src/global/rec_type.c index 489502aac47b..1ce2111f17d3 100644 --- a/gnu/dist/postfix/src/global/rec_type.c +++ b/gnu/dist/postfix/src/global/rec_type.c @@ -1,5 +1,3 @@ -/* $NetBSD: rec_type.c,v 1.1.1.6 2007/05/19 16:28:17 heas Exp $ */ - /*++ /* NAME /* rec_type 3 diff --git a/gnu/dist/postfix/src/global/rec_type.h b/gnu/dist/postfix/src/global/rec_type.h index 84c525673a5b..3edb5fcbd9f7 100644 --- a/gnu/dist/postfix/src/global/rec_type.h +++ b/gnu/dist/postfix/src/global/rec_type.h @@ -1,5 +1,3 @@ -/* $NetBSD: rec_type.h,v 1.1.1.10 2007/05/19 16:28:17 heas Exp $ */ - #ifndef _REC_TYPE_H_INCLUDED_ #define _REC_TYPE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/recdump.c b/gnu/dist/postfix/src/global/recdump.c index 9c177851f58e..aa13eb644c54 100644 --- a/gnu/dist/postfix/src/global/recdump.c +++ b/gnu/dist/postfix/src/global/recdump.c @@ -1,5 +1,3 @@ -/* $NetBSD: recdump.c,v 1.1.1.4 2006/07/19 01:17:28 rpaulo Exp $ */ - /*++ /* NAME /* recdump 1 diff --git a/gnu/dist/postfix/src/global/recipient_list.c b/gnu/dist/postfix/src/global/recipient_list.c index e2256f80d65c..4813748afc36 100644 --- a/gnu/dist/postfix/src/global/recipient_list.c +++ b/gnu/dist/postfix/src/global/recipient_list.c @@ -1,5 +1,3 @@ -/* $NetBSD: recipient_list.c,v 1.1.1.6 2007/05/19 16:28:17 heas Exp $ */ - /*++ /* NAME /* recipient_list 3 diff --git a/gnu/dist/postfix/src/global/recipient_list.h b/gnu/dist/postfix/src/global/recipient_list.h index b063324673ce..8fc5d58b0f9c 100644 --- a/gnu/dist/postfix/src/global/recipient_list.h +++ b/gnu/dist/postfix/src/global/recipient_list.h @@ -1,5 +1,3 @@ -/* $NetBSD: recipient_list.h,v 1.1.1.6 2007/05/19 16:28:17 heas Exp $ */ - #ifndef _RECIPIENT_LIST_H_INCLUDED_ #define _RECIPIENT_LIST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/record.c b/gnu/dist/postfix/src/global/record.c index 0838bbc1ddf5..b82548ce55e5 100644 --- a/gnu/dist/postfix/src/global/record.c +++ b/gnu/dist/postfix/src/global/record.c @@ -1,5 +1,3 @@ -/* $NetBSD: record.c,v 1.1.1.8 2007/05/19 16:28:17 heas Exp $ */ - /*++ /* NAME /* record 3 diff --git a/gnu/dist/postfix/src/global/record.h b/gnu/dist/postfix/src/global/record.h index 7eea8e3bc6ef..472da46c93d6 100644 --- a/gnu/dist/postfix/src/global/record.h +++ b/gnu/dist/postfix/src/global/record.h @@ -1,5 +1,3 @@ -/* $NetBSD: record.h,v 1.1.1.4 2007/05/19 16:28:17 heas Exp $ */ - #ifndef _RECORD_H_INCLUDED_ #define _RECORD_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/remove.c b/gnu/dist/postfix/src/global/remove.c index 3c3a96fca4f8..620e182c5c0e 100644 --- a/gnu/dist/postfix/src/global/remove.c +++ b/gnu/dist/postfix/src/global/remove.c @@ -1,5 +1,3 @@ -/* $NetBSD: remove.c,v 1.1.1.3 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* REMOVE 3 diff --git a/gnu/dist/postfix/src/global/resolve_clnt.c b/gnu/dist/postfix/src/global/resolve_clnt.c index 4f518824f156..bbd1b9b3a675 100644 --- a/gnu/dist/postfix/src/global/resolve_clnt.c +++ b/gnu/dist/postfix/src/global/resolve_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: resolve_clnt.c,v 1.1.1.12 2008/06/22 14:02:32 christos Exp $ */ - /*++ /* NAME /* resolve_clnt 3 diff --git a/gnu/dist/postfix/src/global/resolve_clnt.h b/gnu/dist/postfix/src/global/resolve_clnt.h index 1171c4c342fc..a198bfdaf415 100644 --- a/gnu/dist/postfix/src/global/resolve_clnt.h +++ b/gnu/dist/postfix/src/global/resolve_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: resolve_clnt.h,v 1.1.1.6 2006/07/19 01:17:28 rpaulo Exp $ */ - #ifndef _RESOLVE_CLNT_H_INCLUDED_ #define _RESOLVE_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/resolve_local.h b/gnu/dist/postfix/src/global/resolve_local.h index 19f633f0ba6e..53af376d0e91 100644 --- a/gnu/dist/postfix/src/global/resolve_local.h +++ b/gnu/dist/postfix/src/global/resolve_local.h @@ -1,5 +1,3 @@ -/* $NetBSD: resolve_local.h,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - #ifndef _RESOLVE_LOCAL_H_INCLUDED_ #define _RESOLVE_LOCAL_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/rewrite_clnt.c b/gnu/dist/postfix/src/global/rewrite_clnt.c index aec116682baa..43b892a258a9 100644 --- a/gnu/dist/postfix/src/global/rewrite_clnt.c +++ b/gnu/dist/postfix/src/global/rewrite_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: rewrite_clnt.c,v 1.1.1.11 2008/06/22 14:02:40 christos Exp $ */ - /*++ /* NAME /* rewrite_clnt 3 diff --git a/gnu/dist/postfix/src/global/rewrite_clnt.h b/gnu/dist/postfix/src/global/rewrite_clnt.h index 0e5bde40dcdc..85c19f481057 100644 --- a/gnu/dist/postfix/src/global/rewrite_clnt.h +++ b/gnu/dist/postfix/src/global/rewrite_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: rewrite_clnt.h,v 1.1.1.3 2005/08/18 21:07:01 rpaulo Exp $ */ - #ifndef _REWRITE_CLNT_H_INCLUDED_ #define _REWRITE_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/scache.c b/gnu/dist/postfix/src/global/scache.c index 1f40322cf8ad..2a242ae0e4df 100644 --- a/gnu/dist/postfix/src/global/scache.c +++ b/gnu/dist/postfix/src/global/scache.c @@ -1,5 +1,3 @@ -/* $NetBSD: scache.c,v 1.1.1.2 2006/07/19 01:17:28 rpaulo Exp $ */ - /*++ /* NAME /* scache 3 diff --git a/gnu/dist/postfix/src/global/scache.h b/gnu/dist/postfix/src/global/scache.h index bf7748157adc..836d76599007 100644 --- a/gnu/dist/postfix/src/global/scache.h +++ b/gnu/dist/postfix/src/global/scache.h @@ -1,5 +1,3 @@ -/* $NetBSD: scache.h,v 1.1.1.2 2006/07/19 01:17:28 rpaulo Exp $ */ - #ifndef _SCACHE_H_INCLUDED_ #define _SCACHE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/scache_clnt.c b/gnu/dist/postfix/src/global/scache_clnt.c index 0124e0c95389..658e88f75b52 100644 --- a/gnu/dist/postfix/src/global/scache_clnt.c +++ b/gnu/dist/postfix/src/global/scache_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: scache_clnt.c,v 1.1.1.3 2006/12/21 02:32:30 rpaulo Exp $ */ - /*++ /* NAME /* scache_clnt 3 diff --git a/gnu/dist/postfix/src/global/scache_multi.c b/gnu/dist/postfix/src/global/scache_multi.c index 54b024841064..8ccb5a0dc403 100644 --- a/gnu/dist/postfix/src/global/scache_multi.c +++ b/gnu/dist/postfix/src/global/scache_multi.c @@ -1,5 +1,3 @@ -/* $NetBSD: scache_multi.c,v 1.1.1.1 2005/08/18 21:07:14 rpaulo Exp $ */ - /*++ /* NAME /* scache_multi 3 diff --git a/gnu/dist/postfix/src/global/scache_single.c b/gnu/dist/postfix/src/global/scache_single.c index e19229e3f34c..4b18dd2ff650 100644 --- a/gnu/dist/postfix/src/global/scache_single.c +++ b/gnu/dist/postfix/src/global/scache_single.c @@ -1,5 +1,3 @@ -/* $NetBSD: scache_single.c,v 1.1.1.1 2005/08/18 21:07:15 rpaulo Exp $ */ - /*++ /* NAME /* scache_single 3 diff --git a/gnu/dist/postfix/src/global/sent.c b/gnu/dist/postfix/src/global/sent.c index 03f2da0fcbc3..c99ae5b174bf 100644 --- a/gnu/dist/postfix/src/global/sent.c +++ b/gnu/dist/postfix/src/global/sent.c @@ -1,5 +1,3 @@ -/* $NetBSD: sent.c,v 1.1.1.6 2006/07/19 01:17:28 rpaulo Exp $ */ - /*++ /* NAME /* sent 3 diff --git a/gnu/dist/postfix/src/global/sent.h b/gnu/dist/postfix/src/global/sent.h index ddd9b7f0c2bd..eb9a23f2f8de 100644 --- a/gnu/dist/postfix/src/global/sent.h +++ b/gnu/dist/postfix/src/global/sent.h @@ -1,5 +1,3 @@ -/* $NetBSD: sent.h,v 1.1.1.6 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _SENT_H_INCLUDED_ #define _SENT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/smtp_stream.c b/gnu/dist/postfix/src/global/smtp_stream.c index b3fe37b5a52f..82d18e513fe3 100644 --- a/gnu/dist/postfix/src/global/smtp_stream.c +++ b/gnu/dist/postfix/src/global/smtp_stream.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_stream.c,v 1.1.1.6 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* smtp_stream 3 diff --git a/gnu/dist/postfix/src/global/smtp_stream.h b/gnu/dist/postfix/src/global/smtp_stream.h index c9d5c9cc1470..559392216440 100644 --- a/gnu/dist/postfix/src/global/smtp_stream.h +++ b/gnu/dist/postfix/src/global/smtp_stream.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_stream.h,v 1.1.1.6 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _SMTP_STREAM_H_INCLUDED_ #define _SMTP_STREAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/split_addr.c b/gnu/dist/postfix/src/global/split_addr.c index c0d922c59b92..279ad4fb697c 100644 --- a/gnu/dist/postfix/src/global/split_addr.c +++ b/gnu/dist/postfix/src/global/split_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: split_addr.c,v 1.1.1.3 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* split_addr 3 diff --git a/gnu/dist/postfix/src/global/split_addr.h b/gnu/dist/postfix/src/global/split_addr.h index 0702e74523b0..1c87fb99ac8d 100644 --- a/gnu/dist/postfix/src/global/split_addr.h +++ b/gnu/dist/postfix/src/global/split_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: split_addr.h,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - #ifndef _SPLIT_ADDR_H_INCLUDED_ #define _SPLIT_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/stream2rec.c b/gnu/dist/postfix/src/global/stream2rec.c index 763b39473c60..1dbd9622993f 100644 --- a/gnu/dist/postfix/src/global/stream2rec.c +++ b/gnu/dist/postfix/src/global/stream2rec.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream2rec.c,v 1.1.1.4 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* stream2rec 1 diff --git a/gnu/dist/postfix/src/global/string_list.c b/gnu/dist/postfix/src/global/string_list.c index e7964c1a7864..bdb6fc4fb786 100644 --- a/gnu/dist/postfix/src/global/string_list.c +++ b/gnu/dist/postfix/src/global/string_list.c @@ -1,5 +1,3 @@ -/* $NetBSD: string_list.c,v 1.1.1.6 2007/05/19 16:28:18 heas Exp $ */ - /*++ /* NAME /* string_list 3 diff --git a/gnu/dist/postfix/src/global/string_list.h b/gnu/dist/postfix/src/global/string_list.h index 092d17e9c1d4..daa9541d2f56 100644 --- a/gnu/dist/postfix/src/global/string_list.h +++ b/gnu/dist/postfix/src/global/string_list.h @@ -1,5 +1,3 @@ -/* $NetBSD: string_list.h,v 1.1.1.3 2004/05/31 00:24:35 heas Exp $ */ - #ifndef _STRING_LIST_H_INCLUDED_ #define _STRING_LIST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/strip_addr.c b/gnu/dist/postfix/src/global/strip_addr.c index ed0334925ca8..803db87f8fcf 100644 --- a/gnu/dist/postfix/src/global/strip_addr.c +++ b/gnu/dist/postfix/src/global/strip_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: strip_addr.c,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* strip_addr 3 diff --git a/gnu/dist/postfix/src/global/strip_addr.h b/gnu/dist/postfix/src/global/strip_addr.h index 5a22701f41a9..e99c6fdf8ff6 100644 --- a/gnu/dist/postfix/src/global/strip_addr.h +++ b/gnu/dist/postfix/src/global/strip_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: strip_addr.h,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - #ifndef _STRIP_ADDR_H_INCLUDED_ #define _STRIP_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/sys_exits.c b/gnu/dist/postfix/src/global/sys_exits.c index 742b05ff51f8..bdd26b440375 100644 --- a/gnu/dist/postfix/src/global/sys_exits.c +++ b/gnu/dist/postfix/src/global/sys_exits.c @@ -1,5 +1,3 @@ -/* $NetBSD: sys_exits.c,v 1.1.1.4 2008/06/22 14:02:41 christos Exp $ */ - /*++ /* NAME /* sys_exits 3 diff --git a/gnu/dist/postfix/src/global/sys_exits.h b/gnu/dist/postfix/src/global/sys_exits.h index a40b490f3037..bf4cce18e829 100644 --- a/gnu/dist/postfix/src/global/sys_exits.h +++ b/gnu/dist/postfix/src/global/sys_exits.h @@ -1,5 +1,3 @@ -/* $NetBSD: sys_exits.h,v 1.1.1.4 2008/06/22 14:02:42 christos Exp $ */ - #ifndef _SYS_EXITS_H_INCLUDED_ #define _SYS_EXITS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/timed_ipc.c b/gnu/dist/postfix/src/global/timed_ipc.c index cfaf7612bd73..a4640e083a94 100644 --- a/gnu/dist/postfix/src/global/timed_ipc.c +++ b/gnu/dist/postfix/src/global/timed_ipc.c @@ -1,5 +1,3 @@ -/* $NetBSD: timed_ipc.c,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* timed_ipc 3 diff --git a/gnu/dist/postfix/src/global/timed_ipc.h b/gnu/dist/postfix/src/global/timed_ipc.h index a1651acf84ef..5014b3cc050c 100644 --- a/gnu/dist/postfix/src/global/timed_ipc.h +++ b/gnu/dist/postfix/src/global/timed_ipc.h @@ -1,5 +1,3 @@ -/* $NetBSD: timed_ipc.h,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - #ifndef _TIMED_IPC_H_INCLUDED_ #define _TIMED_IPC_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/tok822.h b/gnu/dist/postfix/src/global/tok822.h index 910789fdb8b5..11432965aacf 100644 --- a/gnu/dist/postfix/src/global/tok822.h +++ b/gnu/dist/postfix/src/global/tok822.h @@ -1,5 +1,3 @@ -/* $NetBSD: tok822.h,v 1.1.1.6 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _TOK822_H_INCLUDED_ #define _TOK822_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/tok822_find.c b/gnu/dist/postfix/src/global/tok822_find.c index 50dc5274794f..c81564612dc8 100644 --- a/gnu/dist/postfix/src/global/tok822_find.c +++ b/gnu/dist/postfix/src/global/tok822_find.c @@ -1,5 +1,3 @@ -/* $NetBSD: tok822_find.c,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* tok822_find 3 diff --git a/gnu/dist/postfix/src/global/tok822_node.c b/gnu/dist/postfix/src/global/tok822_node.c index 54cf029bb473..d39bf15b94f3 100644 --- a/gnu/dist/postfix/src/global/tok822_node.c +++ b/gnu/dist/postfix/src/global/tok822_node.c @@ -1,5 +1,3 @@ -/* $NetBSD: tok822_node.c,v 1.1.1.3 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* tok822_node 3 diff --git a/gnu/dist/postfix/src/global/tok822_resolve.c b/gnu/dist/postfix/src/global/tok822_resolve.c index 6d189d5dda16..f178aaf9a931 100644 --- a/gnu/dist/postfix/src/global/tok822_resolve.c +++ b/gnu/dist/postfix/src/global/tok822_resolve.c @@ -1,5 +1,3 @@ -/* $NetBSD: tok822_resolve.c,v 1.1.1.3 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* tok822_resolve 3 diff --git a/gnu/dist/postfix/src/global/tok822_rewrite.c b/gnu/dist/postfix/src/global/tok822_rewrite.c index 97f7910ab16f..fd52abbf3266 100644 --- a/gnu/dist/postfix/src/global/tok822_rewrite.c +++ b/gnu/dist/postfix/src/global/tok822_rewrite.c @@ -1,5 +1,3 @@ -/* $NetBSD: tok822_rewrite.c,v 1.1.1.2 2004/05/31 00:24:36 heas Exp $ */ - /*++ /* NAME /* tok822_rewrite 3 diff --git a/gnu/dist/postfix/src/global/tok822_tree.c b/gnu/dist/postfix/src/global/tok822_tree.c index 978a15e443c9..16cec946a5af 100644 --- a/gnu/dist/postfix/src/global/tok822_tree.c +++ b/gnu/dist/postfix/src/global/tok822_tree.c @@ -1,5 +1,3 @@ -/* $NetBSD: tok822_tree.c,v 1.1.1.2 2004/05/31 00:24:35 heas Exp $ */ - /*++ /* NAME /* tok822_tree 3 diff --git a/gnu/dist/postfix/src/global/trace.c b/gnu/dist/postfix/src/global/trace.c index 93c5fe35f2f1..e6e86ee06f7e 100644 --- a/gnu/dist/postfix/src/global/trace.c +++ b/gnu/dist/postfix/src/global/trace.c @@ -1,5 +1,3 @@ -/* $NetBSD: trace.c,v 1.1.1.4 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* trace 3 diff --git a/gnu/dist/postfix/src/global/trace.h b/gnu/dist/postfix/src/global/trace.h index 735bc3435149..201360198e99 100644 --- a/gnu/dist/postfix/src/global/trace.h +++ b/gnu/dist/postfix/src/global/trace.h @@ -1,5 +1,3 @@ -/* $NetBSD: trace.h,v 1.1.1.3 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _TRACE_H_INCLUDED_ #define _TRACE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/user_acl.c b/gnu/dist/postfix/src/global/user_acl.c index 4d4a46d323de..0121c68dd1fc 100644 --- a/gnu/dist/postfix/src/global/user_acl.c +++ b/gnu/dist/postfix/src/global/user_acl.c @@ -1,5 +1,3 @@ -/* $NetBSD: user_acl.c,v 1.1.1.1 2005/08/18 21:07:15 rpaulo Exp $ */ - /*++ /* NAME /* user_acl 3 diff --git a/gnu/dist/postfix/src/global/user_acl.h b/gnu/dist/postfix/src/global/user_acl.h index d6fca186fe45..8a9afb2b7b3e 100644 --- a/gnu/dist/postfix/src/global/user_acl.h +++ b/gnu/dist/postfix/src/global/user_acl.h @@ -1,5 +1,3 @@ -/* $NetBSD: user_acl.h,v 1.1.1.2 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _USER_ACL_H_INCLUDED_ #define _USER_ACL_H_INCLUDED_ /*++ diff --git a/gnu/dist/postfix/src/global/valid_mailhost_addr.c b/gnu/dist/postfix/src/global/valid_mailhost_addr.c index 96fecadbec9c..79a790018571 100644 --- a/gnu/dist/postfix/src/global/valid_mailhost_addr.c +++ b/gnu/dist/postfix/src/global/valid_mailhost_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: valid_mailhost_addr.c,v 1.1.1.1 2005/08/18 21:07:15 rpaulo Exp $ */ - /*++ /* NAME /* valid_mailhost_addr 3 diff --git a/gnu/dist/postfix/src/global/valid_mailhost_addr.h b/gnu/dist/postfix/src/global/valid_mailhost_addr.h index 9e0c19e47472..95630ae504d5 100644 --- a/gnu/dist/postfix/src/global/valid_mailhost_addr.h +++ b/gnu/dist/postfix/src/global/valid_mailhost_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: valid_mailhost_addr.h,v 1.1.1.1 2005/08/18 21:07:15 rpaulo Exp $ */ - #ifndef _VALID_MAILHOST_ADDR_H_INCLUDED_ #define _VALID_MAILHOST_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/verify.c b/gnu/dist/postfix/src/global/verify.c index 471bd92613be..df83d4ed00a6 100644 --- a/gnu/dist/postfix/src/global/verify.c +++ b/gnu/dist/postfix/src/global/verify.c @@ -1,5 +1,3 @@ -/* $NetBSD: verify.c,v 1.1.1.4 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* verify 3 diff --git a/gnu/dist/postfix/src/global/verify.h b/gnu/dist/postfix/src/global/verify.h index 6dac25f44713..250eb6d65e95 100644 --- a/gnu/dist/postfix/src/global/verify.h +++ b/gnu/dist/postfix/src/global/verify.h @@ -1,5 +1,3 @@ -/* $NetBSD: verify.h,v 1.1.1.3 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _VERIFY_H_INCLUDED_ #define _VERIFY_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/verify_clnt.c b/gnu/dist/postfix/src/global/verify_clnt.c index 78b905fc0115..7468c1f0c6a1 100644 --- a/gnu/dist/postfix/src/global/verify_clnt.c +++ b/gnu/dist/postfix/src/global/verify_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: verify_clnt.c,v 1.1.1.5 2006/12/21 02:32:36 rpaulo Exp $ */ - /*++ /* NAME /* verify_clnt 3 diff --git a/gnu/dist/postfix/src/global/verify_clnt.h b/gnu/dist/postfix/src/global/verify_clnt.h index b39bcc7b155e..608458172081 100644 --- a/gnu/dist/postfix/src/global/verify_clnt.h +++ b/gnu/dist/postfix/src/global/verify_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: verify_clnt.h,v 1.1.1.3 2006/07/19 01:17:29 rpaulo Exp $ */ - #ifndef _VRFY_CLNT_H_INCLUDED_ #define _VRFY_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/verp_sender.c b/gnu/dist/postfix/src/global/verp_sender.c index e1c8d5307183..922c1ce1fcfd 100644 --- a/gnu/dist/postfix/src/global/verp_sender.c +++ b/gnu/dist/postfix/src/global/verp_sender.c @@ -1,5 +1,3 @@ -/* $NetBSD: verp_sender.c,v 1.1.1.3 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* verp_sender 3 diff --git a/gnu/dist/postfix/src/global/verp_sender.h b/gnu/dist/postfix/src/global/verp_sender.h index 97cb9d8d6d1d..61641ac8a141 100644 --- a/gnu/dist/postfix/src/global/verp_sender.h +++ b/gnu/dist/postfix/src/global/verp_sender.h @@ -1,5 +1,3 @@ -/* $NetBSD: verp_sender.h,v 1.1.1.2 2004/05/31 00:24:36 heas Exp $ */ - #ifndef _VERP_SENDER_H_INCLUDED_ #define _VERP_SENDER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/global/xtext.c b/gnu/dist/postfix/src/global/xtext.c index a8d3a1f88884..3bcb8c3d462d 100644 --- a/gnu/dist/postfix/src/global/xtext.c +++ b/gnu/dist/postfix/src/global/xtext.c @@ -1,5 +1,3 @@ -/* $NetBSD: xtext.c,v 1.1.1.5 2006/07/19 01:17:26 rpaulo Exp $ */ - /*++ /* NAME /* xtext 3 diff --git a/gnu/dist/postfix/src/global/xtext.h b/gnu/dist/postfix/src/global/xtext.h index f5e98a84b9d8..1515242d32ad 100644 --- a/gnu/dist/postfix/src/global/xtext.h +++ b/gnu/dist/postfix/src/global/xtext.h @@ -1,5 +1,3 @@ -/* $NetBSD: xtext.h,v 1.1.1.3 2004/05/31 00:24:36 heas Exp $ */ - #ifndef _XTEXT_H_INCLUDED_ #define _XTEXT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/local/alias.c b/gnu/dist/postfix/src/local/alias.c index 202b36857125..dc613efc06dd 100644 --- a/gnu/dist/postfix/src/local/alias.c +++ b/gnu/dist/postfix/src/local/alias.c @@ -1,5 +1,3 @@ -/* $NetBSD: alias.c,v 1.1.1.7 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* alias 3 diff --git a/gnu/dist/postfix/src/local/biff_notify.c b/gnu/dist/postfix/src/local/biff_notify.c index a90ed19b9e11..b189ad4b2d4a 100644 --- a/gnu/dist/postfix/src/local/biff_notify.c +++ b/gnu/dist/postfix/src/local/biff_notify.c @@ -1,5 +1,3 @@ -/* $NetBSD: biff_notify.c,v 1.1.1.3 2006/07/19 01:17:29 rpaulo Exp $ */ - /*++ /* NAME /* biff_notify 3 diff --git a/gnu/dist/postfix/src/local/biff_notify.h b/gnu/dist/postfix/src/local/biff_notify.h index 548e179f35f3..8b76f9dc6d29 100644 --- a/gnu/dist/postfix/src/local/biff_notify.h +++ b/gnu/dist/postfix/src/local/biff_notify.h @@ -1,5 +1,3 @@ -/* $NetBSD: biff_notify.h,v 1.1.1.3 2006/07/19 01:17:30 rpaulo Exp $ */ - #ifndef _BIFF_H_INCLUDED_ #define _BIFF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/local/command.c b/gnu/dist/postfix/src/local/command.c index 0cfabf81e144..7952583c246c 100644 --- a/gnu/dist/postfix/src/local/command.c +++ b/gnu/dist/postfix/src/local/command.c @@ -1,5 +1,3 @@ -/* $NetBSD: command.c,v 1.1.1.8 2008/06/22 14:02:44 christos Exp $ */ - /*++ /* NAME /* command 3 diff --git a/gnu/dist/postfix/src/local/deliver_attr.c b/gnu/dist/postfix/src/local/deliver_attr.c index b775eb4fb938..9ed18e2c227b 100644 --- a/gnu/dist/postfix/src/local/deliver_attr.c +++ b/gnu/dist/postfix/src/local/deliver_attr.c @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_attr.c,v 1.1.1.3 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* deliver_attr 3 diff --git a/gnu/dist/postfix/src/local/dotforward.c b/gnu/dist/postfix/src/local/dotforward.c index 83b28bb89900..e26d241ffce7 100644 --- a/gnu/dist/postfix/src/local/dotforward.c +++ b/gnu/dist/postfix/src/local/dotforward.c @@ -1,5 +1,3 @@ -/* $NetBSD: dotforward.c,v 1.1.1.4 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* dotforward 3 diff --git a/gnu/dist/postfix/src/local/file.c b/gnu/dist/postfix/src/local/file.c index 754bc6776f12..d93ae90b0555 100644 --- a/gnu/dist/postfix/src/local/file.c +++ b/gnu/dist/postfix/src/local/file.c @@ -1,5 +1,3 @@ -/* $NetBSD: file.c,v 1.1.1.5 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* file 3 diff --git a/gnu/dist/postfix/src/local/forward.c b/gnu/dist/postfix/src/local/forward.c index 1868c54f1017..74cb642b352a 100644 --- a/gnu/dist/postfix/src/local/forward.c +++ b/gnu/dist/postfix/src/local/forward.c @@ -1,5 +1,3 @@ -/* $NetBSD: forward.c,v 1.1.1.7 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* forward 3 diff --git a/gnu/dist/postfix/src/local/include.c b/gnu/dist/postfix/src/local/include.c index db78c7a0605c..1158832491df 100644 --- a/gnu/dist/postfix/src/local/include.c +++ b/gnu/dist/postfix/src/local/include.c @@ -1,5 +1,3 @@ -/* $NetBSD: include.c,v 1.1.1.4 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* deliver_include 3 diff --git a/gnu/dist/postfix/src/local/indirect.c b/gnu/dist/postfix/src/local/indirect.c index 8c7b4058a2b4..a9699a593c4c 100644 --- a/gnu/dist/postfix/src/local/indirect.c +++ b/gnu/dist/postfix/src/local/indirect.c @@ -1,5 +1,3 @@ -/* $NetBSD: indirect.c,v 1.1.1.4 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* indirect 3 diff --git a/gnu/dist/postfix/src/local/local.c b/gnu/dist/postfix/src/local/local.c index d2447441df06..33af0ad766f4 100644 --- a/gnu/dist/postfix/src/local/local.c +++ b/gnu/dist/postfix/src/local/local.c @@ -1,5 +1,3 @@ -/* $NetBSD: local.c,v 1.1.1.12 2008/06/22 14:02:45 christos Exp $ */ - /*++ /* NAME /* local 8 @@ -383,6 +381,10 @@ /* address (see prepend_delivered_header) only once, at the start of /* a delivery attempt; do not update the Delivered-To: address while /* expanding aliases or .forward files. +/* .PP +/* Available in Postfix version 2.5.3 and later: +/* .IP "\fBstrict_mailbox_ownership (yes)\fR" +/* Defer delivery when a mailbox file is not owned by its recipient. /* DELIVERY METHOD CONTROLS /* .ad /* .fi @@ -473,7 +475,7 @@ /* Restrict \fBlocal\fR(8) mail delivery to external files. /* .IP "\fBcommand_expansion_filter (see 'postconf -d' output)\fR" /* Restrict the characters that the \fBlocal\fR(8) delivery agent allows in -/* $name expansions of $mailbox_command. +/* $name expansions of $mailbox_command and $command_execution_directory. /* .IP "\fBdefault_privs (nobody)\fR" /* The default rights used by the \fBlocal\fR(8) delivery agent for delivery /* to external file or command. @@ -485,6 +487,10 @@ /* .IP "\fBexecution_directory_expansion_filter (see 'postconf -d' output)\fR" /* Restrict the characters that the \fBlocal\fR(8) delivery agent allows /* in $name expansions of $command_execution_directory. +/* .PP +/* Available in Postfix version 2.5.3 and later: +/* .IP "\fBstrict_mailbox_ownership (yes)\fR" +/* Defer delivery when a mailbox file is not owned by its recipient. /* MISCELLANEOUS CONTROLS /* .ad /* .fi @@ -646,6 +652,7 @@ int var_mailtool_compat; char *var_mailbox_lock; int var_mailbox_limit; bool var_frozen_delivered; +bool var_strict_mbox_owner; int local_cmd_deliver_mask; int local_file_deliver_mask; @@ -893,6 +900,7 @@ int main(int argc, char **argv) VAR_STAT_HOME_DIR, DEF_STAT_HOME_DIR, &var_stat_home_dir, VAR_MAILTOOL_COMPAT, DEF_MAILTOOL_COMPAT, &var_mailtool_compat, VAR_FROZEN_DELIVERED, DEF_FROZEN_DELIVERED, &var_frozen_delivered, + VAR_STRICT_MBOX_OWNER, DEF_STRICT_MBOX_OWNER, &var_strict_mbox_owner, 0, }; diff --git a/gnu/dist/postfix/src/local/local.h b/gnu/dist/postfix/src/local/local.h index f6f3ebdbd7fe..d63c99a65f5d 100644 --- a/gnu/dist/postfix/src/local/local.h +++ b/gnu/dist/postfix/src/local/local.h @@ -1,5 +1,3 @@ -/* $NetBSD: local.h,v 1.1.1.8 2008/06/22 14:02:45 christos Exp $ */ - /*++ /* NAME /* local 3h diff --git a/gnu/dist/postfix/src/local/local_expand.c b/gnu/dist/postfix/src/local/local_expand.c index 7ea268e8eb8f..db5121ee889d 100644 --- a/gnu/dist/postfix/src/local/local_expand.c +++ b/gnu/dist/postfix/src/local/local_expand.c @@ -1,5 +1,3 @@ -/* $NetBSD: local_expand.c,v 1.1.1.4 2006/07/19 01:17:30 rpaulo Exp $ */ - /*++ /* NAME /* local_expand 3 diff --git a/gnu/dist/postfix/src/local/mailbox.c b/gnu/dist/postfix/src/local/mailbox.c index 3906013cc5df..d35ef66b4cf3 100644 --- a/gnu/dist/postfix/src/local/mailbox.c +++ b/gnu/dist/postfix/src/local/mailbox.c @@ -1,5 +1,3 @@ -/* $NetBSD: mailbox.c,v 1.1.1.7 2007/08/02 08:05:16 heas Exp $ */ - /*++ /* NAME /* mailbox 3 @@ -196,6 +194,12 @@ static int deliver_mailbox_file(LOCAL_STATE state, USER_ATTR usr_attr) vstream_fclose(mp->fp); dsb_simple(why, "5.2.0", "destination %s is not a regular file", mailbox); + } else if (var_strict_mbox_owner && st.st_uid != usr_attr.uid) { + vstream_fclose(mp->fp); + dsb_simple(why, "4.2.0", + "destination %s is not owned by recipient", mailbox); + msg_warn("specify \"%s = no\" to ignore mailbox ownership mismatch", + VAR_STRICT_MBOX_OWNER); } else { end = vstream_fseek(mp->fp, (off_t) 0, SEEK_END); mail_copy_status = mail_copy(COPY_ATTR(state.msg_attr), mp->fp, diff --git a/gnu/dist/postfix/src/local/maildir.c b/gnu/dist/postfix/src/local/maildir.c index 75de6d1eb0ee..a1ef4932ad3d 100644 --- a/gnu/dist/postfix/src/local/maildir.c +++ b/gnu/dist/postfix/src/local/maildir.c @@ -1,5 +1,3 @@ -/* $NetBSD: maildir.c,v 1.1.1.9 2006/07/19 01:17:31 rpaulo Exp $ */ - /*++ /* NAME /* maildir 3 diff --git a/gnu/dist/postfix/src/local/recipient.c b/gnu/dist/postfix/src/local/recipient.c index 3d577a8f017e..e279eef0e2b8 100644 --- a/gnu/dist/postfix/src/local/recipient.c +++ b/gnu/dist/postfix/src/local/recipient.c @@ -1,5 +1,3 @@ -/* $NetBSD: recipient.c,v 1.1.1.6 2008/06/22 14:02:46 christos Exp $ */ - /*++ /* NAME /* recipient 3 diff --git a/gnu/dist/postfix/src/local/resolve.c b/gnu/dist/postfix/src/local/resolve.c index 3f3387e677cc..89c330325e4c 100644 --- a/gnu/dist/postfix/src/local/resolve.c +++ b/gnu/dist/postfix/src/local/resolve.c @@ -1,5 +1,3 @@ -/* $NetBSD: resolve.c,v 1.1.1.5 2006/07/19 01:17:31 rpaulo Exp $ */ - /*++ /* NAME /* resolve 3 diff --git a/gnu/dist/postfix/src/local/token.c b/gnu/dist/postfix/src/local/token.c index 6b43a8eb80dc..2eb0c284a6b4 100644 --- a/gnu/dist/postfix/src/local/token.c +++ b/gnu/dist/postfix/src/local/token.c @@ -1,5 +1,3 @@ -/* $NetBSD: token.c,v 1.1.1.6 2006/07/19 01:17:31 rpaulo Exp $ */ - /*++ /* NAME /* token 3 diff --git a/gnu/dist/postfix/src/local/unknown.c b/gnu/dist/postfix/src/local/unknown.c index 192d3ae962e8..068f9eed2683 100644 --- a/gnu/dist/postfix/src/local/unknown.c +++ b/gnu/dist/postfix/src/local/unknown.c @@ -1,5 +1,3 @@ -/* $NetBSD: unknown.c,v 1.1.1.6 2007/08/02 08:05:16 heas Exp $ */ - /*++ /* NAME /* unknown 3 diff --git a/gnu/dist/postfix/src/master/mail_flow.h b/gnu/dist/postfix/src/master/mail_flow.h index a3e1c8a410cb..3f7f7bd3025f 100644 --- a/gnu/dist/postfix/src/master/mail_flow.h +++ b/gnu/dist/postfix/src/master/mail_flow.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_flow.h,v 1.1.1.3 2006/07/19 01:17:31 rpaulo Exp $ */ - #ifndef _MAIL_FLOW_H_INCLUDED_ #define _MAIL_FLOW_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/master/mail_server.h b/gnu/dist/postfix/src/master/mail_server.h index 1ca31f5d4bf9..69d75324a9f0 100644 --- a/gnu/dist/postfix/src/master/mail_server.h +++ b/gnu/dist/postfix/src/master/mail_server.h @@ -1,5 +1,3 @@ -/* $NetBSD: mail_server.h,v 1.1.1.6 2005/08/18 21:07:35 rpaulo Exp $ */ - /*++ /* NAME /* mail_server 3h diff --git a/gnu/dist/postfix/src/master/master_avail.c b/gnu/dist/postfix/src/master/master_avail.c index 3465bf3144ec..6008ca19f3f3 100644 --- a/gnu/dist/postfix/src/master/master_avail.c +++ b/gnu/dist/postfix/src/master/master_avail.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_avail.c,v 1.1.1.4 2008/06/22 14:02:46 christos Exp $ */ - /*++ /* NAME /* master_avail 3 diff --git a/gnu/dist/postfix/src/master/master_conf.c b/gnu/dist/postfix/src/master/master_conf.c index ce7afae88504..98f7f73d3749 100644 --- a/gnu/dist/postfix/src/master/master_conf.c +++ b/gnu/dist/postfix/src/master/master_conf.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_conf.c,v 1.1.1.5 2008/06/22 14:02:47 christos Exp $ */ - /*++ /* NAME /* master_conf 3 diff --git a/gnu/dist/postfix/src/master/master_flow.c b/gnu/dist/postfix/src/master/master_flow.c index 28e77015f300..68ae57d0f344 100644 --- a/gnu/dist/postfix/src/master/master_flow.c +++ b/gnu/dist/postfix/src/master/master_flow.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_flow.c,v 1.1.1.3 2006/07/19 01:17:31 rpaulo Exp $ */ - /* System library. */ #include diff --git a/gnu/dist/postfix/src/master/master_proto.c b/gnu/dist/postfix/src/master/master_proto.c index 812313e3281f..052cbd1db6c0 100644 --- a/gnu/dist/postfix/src/master/master_proto.c +++ b/gnu/dist/postfix/src/master/master_proto.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_proto.c,v 1.1.1.4 2006/07/19 01:17:31 rpaulo Exp $ */ - /*++ /* NAME /* master_proto 3 diff --git a/gnu/dist/postfix/src/master/master_proto.h b/gnu/dist/postfix/src/master/master_proto.h index 21f8c0b92b75..bfa0e04c65df 100644 --- a/gnu/dist/postfix/src/master/master_proto.h +++ b/gnu/dist/postfix/src/master/master_proto.h @@ -1,5 +1,3 @@ -/* $NetBSD: master_proto.h,v 1.1.1.5 2008/06/22 14:02:48 christos Exp $ */ - /*++ /* NAME /* master_proto 3h diff --git a/gnu/dist/postfix/src/master/master_service.c b/gnu/dist/postfix/src/master/master_service.c index 116508925312..62289b308359 100644 --- a/gnu/dist/postfix/src/master/master_service.c +++ b/gnu/dist/postfix/src/master/master_service.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_service.c,v 1.1.1.2 2004/05/31 00:24:38 heas Exp $ */ - /*++ /* NAME /* master_service 3 diff --git a/gnu/dist/postfix/src/master/master_sig.c b/gnu/dist/postfix/src/master/master_sig.c index 41477ac270a8..0f7d2e6e1d37 100644 --- a/gnu/dist/postfix/src/master/master_sig.c +++ b/gnu/dist/postfix/src/master/master_sig.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_sig.c,v 1.1.1.7 2007/05/19 16:28:21 heas Exp $ */ - /*++ /* NAME /* master_sig 3 diff --git a/gnu/dist/postfix/src/master/master_spawn.c b/gnu/dist/postfix/src/master/master_spawn.c index 13873200c654..fadf90f2e2c0 100644 --- a/gnu/dist/postfix/src/master/master_spawn.c +++ b/gnu/dist/postfix/src/master/master_spawn.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_spawn.c,v 1.1.1.6 2008/06/22 14:02:49 christos Exp $ */ - /*++ /* NAME /* master_spawn 3 diff --git a/gnu/dist/postfix/src/master/master_status.c b/gnu/dist/postfix/src/master/master_status.c index 6500505f5047..edaee854bb11 100644 --- a/gnu/dist/postfix/src/master/master_status.c +++ b/gnu/dist/postfix/src/master/master_status.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_status.c,v 1.1.1.5 2006/07/19 01:17:32 rpaulo Exp $ */ - /*++ /* NAME /* master_status 3 diff --git a/gnu/dist/postfix/src/master/master_vars.c b/gnu/dist/postfix/src/master/master_vars.c index 0f400a85a9a2..1457d6b4b4ac 100644 --- a/gnu/dist/postfix/src/master/master_vars.c +++ b/gnu/dist/postfix/src/master/master_vars.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_vars.c,v 1.1.1.5 2008/06/22 14:02:49 christos Exp $ */ - /*++ /* NAME /* master_vars 3 diff --git a/gnu/dist/postfix/src/master/master_wakeup.c b/gnu/dist/postfix/src/master/master_wakeup.c index 12eb899f8ba9..ee6062023a37 100644 --- a/gnu/dist/postfix/src/master/master_wakeup.c +++ b/gnu/dist/postfix/src/master/master_wakeup.c @@ -1,5 +1,3 @@ -/* $NetBSD: master_wakeup.c,v 1.1.1.6 2008/06/22 14:02:49 christos Exp $ */ - /*++ /* NAME /* master_wakeup 3 diff --git a/gnu/dist/postfix/src/master/multi_server.c b/gnu/dist/postfix/src/master/multi_server.c index 9690dbe99dc7..3d3bcac5d57a 100644 --- a/gnu/dist/postfix/src/master/multi_server.c +++ b/gnu/dist/postfix/src/master/multi_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: multi_server.c,v 1.1.1.10 2008/06/22 14:02:49 christos Exp $ */ - /*++ /* NAME /* multi_server 3 diff --git a/gnu/dist/postfix/src/master/single_server.c b/gnu/dist/postfix/src/master/single_server.c index b2f676909104..244b6798fdcf 100644 --- a/gnu/dist/postfix/src/master/single_server.c +++ b/gnu/dist/postfix/src/master/single_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: single_server.c,v 1.1.1.8 2007/05/19 16:28:22 heas Exp $ */ - /*++ /* NAME /* single_server 3 diff --git a/gnu/dist/postfix/src/master/trigger_server.c b/gnu/dist/postfix/src/master/trigger_server.c index 33ff2bdd02c7..e420d895e2c9 100644 --- a/gnu/dist/postfix/src/master/trigger_server.c +++ b/gnu/dist/postfix/src/master/trigger_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: trigger_server.c,v 1.1.1.8 2007/05/19 16:28:21 heas Exp $ */ - /*++ /* NAME /* trigger_server 3 diff --git a/gnu/dist/postfix/src/milter/milter.c b/gnu/dist/postfix/src/milter/milter.c index 49d8969382e9..c8a6b556ab1e 100644 --- a/gnu/dist/postfix/src/milter/milter.c +++ b/gnu/dist/postfix/src/milter/milter.c @@ -1,5 +1,3 @@ -/* $NetBSD: milter.c,v 1.1.1.5 2008/06/22 14:02:50 christos Exp $ */ - /*++ /* NAME /* milter 3 diff --git a/gnu/dist/postfix/src/milter/milter.h b/gnu/dist/postfix/src/milter/milter.h index 778cba7acce2..f27c047d8c83 100644 --- a/gnu/dist/postfix/src/milter/milter.h +++ b/gnu/dist/postfix/src/milter/milter.h @@ -1,5 +1,3 @@ -/* $NetBSD: milter.h,v 1.1.1.4 2008/06/22 14:02:50 christos Exp $ */ - #ifndef _MILTER_H_INCLUDED_ #define _MILTER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/milter/milter8.c b/gnu/dist/postfix/src/milter/milter8.c index 66bbb9643271..4a3abb96d849 100644 --- a/gnu/dist/postfix/src/milter/milter8.c +++ b/gnu/dist/postfix/src/milter/milter8.c @@ -1,5 +1,3 @@ -/* $NetBSD: milter8.c,v 1.1.1.7 2008/06/22 14:02:52 christos Exp $ */ - /*++ /* NAME /* milter8 3 diff --git a/gnu/dist/postfix/src/milter/milter_macros.c b/gnu/dist/postfix/src/milter/milter_macros.c index e5e0f155ecf5..b62f32be78e0 100644 --- a/gnu/dist/postfix/src/milter/milter_macros.c +++ b/gnu/dist/postfix/src/milter/milter_macros.c @@ -1,5 +1,3 @@ -/* $NetBSD: milter_macros.c,v 1.1.1.1 2008/06/22 14:02:50 christos Exp $ */ - /*++ /* NAME /* milter_macros diff --git a/gnu/dist/postfix/src/milter/test-milter.c b/gnu/dist/postfix/src/milter/test-milter.c index 36197233fda6..cc65212da37a 100644 --- a/gnu/dist/postfix/src/milter/test-milter.c +++ b/gnu/dist/postfix/src/milter/test-milter.c @@ -1,5 +1,3 @@ -/* $NetBSD: test-milter.c,v 1.1.1.4 2008/06/22 14:02:52 christos Exp $ */ - /*++ /* NAME /* test-milter 1 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr.c b/gnu/dist/postfix/src/oqmgr/qmgr.c index 90f4dde6d584..e6b7a2cf04a0 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr.c,v 1.1.1.6 2008/06/22 14:02:55 christos Exp $ */ - /*++ /* NAME /* qmgr 8 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr.h b/gnu/dist/postfix/src/oqmgr/qmgr.h index e0a98707927b..ddd4b3f36e46 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr.h +++ b/gnu/dist/postfix/src/oqmgr/qmgr.h @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr.h,v 1.1.1.6 2008/06/22 14:02:55 christos Exp $ */ - /*++ /* NAME /* qmgr 3h diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_active.c b/gnu/dist/postfix/src/oqmgr/qmgr_active.c index 495961e1914b..eeec88d3b40d 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_active.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_active.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_active.c,v 1.1.1.5 2008/06/22 14:02:54 christos Exp $ */ - /*++ /* NAME /* qmgr_active 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_bounce.c b/gnu/dist/postfix/src/oqmgr/qmgr_bounce.c index 2581443ce74f..00ba885bf98f 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_bounce.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_bounce.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_bounce.c,v 1.1.1.3 2006/07/19 01:17:34 rpaulo Exp $ */ - /*++ /* NAME /* qmgr_bounce diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_defer.c b/gnu/dist/postfix/src/oqmgr/qmgr_defer.c index 4ad3467a6b2d..dc0319e773a6 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_defer.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_defer.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_defer.c,v 1.1.1.4 2007/05/19 16:28:24 heas Exp $ */ - /*++ /* NAME /* qmgr_defer diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_deliver.c b/gnu/dist/postfix/src/oqmgr/qmgr_deliver.c index bffc4b722991..47c75d7eb190 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_deliver.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_deliver.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_deliver.c,v 1.1.1.7 2008/06/22 14:02:56 christos Exp $ */ - /*++ /* NAME /* qmgr_deliver 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_enable.c b/gnu/dist/postfix/src/oqmgr/qmgr_enable.c index 884b41963abf..a35e46e480b5 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_enable.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_enable.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_enable.c,v 1.1.1.3 2008/06/22 14:02:56 christos Exp $ */ - /*++ /* NAME /* qmgr_enable diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_entry.c b/gnu/dist/postfix/src/oqmgr/qmgr_entry.c index 36c1af42df51..b37394c77d49 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_entry.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_entry.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_entry.c,v 1.1.1.7 2008/06/22 14:02:56 christos Exp $ */ - /*++ /* NAME /* qmgr_entry 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_error.c b/gnu/dist/postfix/src/oqmgr/qmgr_error.c index 68d448e67144..6d07b3bd8f95 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_error.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_error.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_error.c,v 1.1.1.1 2007/05/19 16:28:25 heas Exp $ */ - /*++ /* NAME /* qmgr_error 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_feedback.c b/gnu/dist/postfix/src/oqmgr/qmgr_feedback.c index df8ab5aa82bd..f341b9591d3b 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_feedback.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_feedback.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_feedback.c,v 1.1.1.1 2008/06/22 14:02:58 christos Exp $ */ - /*++ /* NAME /* qmgr_feedback 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_message.c b/gnu/dist/postfix/src/oqmgr/qmgr_message.c index 5daf64d9f902..4334d8684187 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_message.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_message.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_message.c,v 1.1.1.8 2008/06/22 14:02:59 christos Exp $ */ - /*++ /* NAME /* qmgr_message 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_move.c b/gnu/dist/postfix/src/oqmgr/qmgr_move.c index b2d3ec96479b..e68f80348c86 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_move.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_move.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_move.c,v 1.1.1.3 2006/07/19 01:17:34 rpaulo Exp $ */ - /*++ /* NAME /* qmgr_move 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_queue.c b/gnu/dist/postfix/src/oqmgr/qmgr_queue.c index 48e013c3b4b7..ed31571f6bad 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_queue.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_queue.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_queue.c,v 1.1.1.5 2008/06/22 14:02:59 christos Exp $ */ - /*++ /* NAME /* qmgr_queue 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_scan.c b/gnu/dist/postfix/src/oqmgr/qmgr_scan.c index 0d58a82c5927..0665a23ce8bf 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_scan.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_scan.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_scan.c,v 1.1.1.4 2007/05/19 16:28:25 heas Exp $ */ - /*++ /* NAME /* qmgr_scan 3 diff --git a/gnu/dist/postfix/src/oqmgr/qmgr_transport.c b/gnu/dist/postfix/src/oqmgr/qmgr_transport.c index 74758aed03dc..aac9dc35c611 100644 --- a/gnu/dist/postfix/src/oqmgr/qmgr_transport.c +++ b/gnu/dist/postfix/src/oqmgr/qmgr_transport.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_transport.c,v 1.1.1.5 2008/06/22 14:02:55 christos Exp $ */ - /*++ /* NAME /* qmgr_transport 3 diff --git a/gnu/dist/postfix/src/pickup/pickup.c b/gnu/dist/postfix/src/pickup/pickup.c index e23e16f56241..5262818261a6 100644 --- a/gnu/dist/postfix/src/pickup/pickup.c +++ b/gnu/dist/postfix/src/pickup/pickup.c @@ -1,5 +1,3 @@ -/* $NetBSD: pickup.c,v 1.1.1.15 2008/06/22 14:03:00 christos Exp $ */ - /*++ /* NAME /* pickup 8 diff --git a/gnu/dist/postfix/src/pipe/pipe.c b/gnu/dist/postfix/src/pipe/pipe.c index db9361cabe29..ad68d6e1b46d 100644 --- a/gnu/dist/postfix/src/pipe/pipe.c +++ b/gnu/dist/postfix/src/pipe/pipe.c @@ -1,5 +1,3 @@ -/* $NetBSD: pipe.c,v 1.1.1.11 2008/06/22 14:03:01 christos Exp $ */ - /*++ /* NAME /* pipe 8 diff --git a/gnu/dist/postfix/src/postalias/postalias.c b/gnu/dist/postfix/src/postalias/postalias.c index 8f0a9f0b6692..cd05691733c6 100644 --- a/gnu/dist/postfix/src/postalias/postalias.c +++ b/gnu/dist/postfix/src/postalias/postalias.c @@ -1,5 +1,3 @@ -/* $NetBSD: postalias.c,v 1.1.1.12 2008/06/22 14:03:01 christos Exp $ */ - /*++ /* NAME /* postalias 1 diff --git a/gnu/dist/postfix/src/postcat/postcat.c b/gnu/dist/postfix/src/postcat/postcat.c index 554ddf603acc..1db3d506b2eb 100644 --- a/gnu/dist/postfix/src/postcat/postcat.c +++ b/gnu/dist/postfix/src/postcat/postcat.c @@ -1,5 +1,3 @@ -/* $NetBSD: postcat.c,v 1.1.1.8 2007/05/19 16:28:26 heas Exp $ */ - /*++ /* NAME /* postcat 1 diff --git a/gnu/dist/postfix/src/postconf/install_table.h b/gnu/dist/postfix/src/postconf/install_table.h index a3d53fee6256..a7dff6f3f18c 100644 --- a/gnu/dist/postfix/src/postconf/install_table.h +++ b/gnu/dist/postfix/src/postconf/install_table.h @@ -1,3 +1 @@ -/* $NetBSD: install_table.h,v 1.1.1.2 2004/05/31 00:24:41 heas Exp $ */ - VAR_CONFIG_DIR, DEF_CONFIG_DIR, &var_config_dir, 1, 0, diff --git a/gnu/dist/postfix/src/postconf/install_vars.h b/gnu/dist/postfix/src/postconf/install_vars.h index d4883b7296ae..c54581ee8ee5 100644 --- a/gnu/dist/postfix/src/postconf/install_vars.h +++ b/gnu/dist/postfix/src/postconf/install_vars.h @@ -1,3 +1 @@ -/* $NetBSD: install_vars.h,v 1.1.1.2 2004/05/31 00:24:41 heas Exp $ */ - char *var_config_dir; diff --git a/gnu/dist/postfix/src/postconf/postconf.c b/gnu/dist/postfix/src/postconf/postconf.c index 01f481138be1..329a5ff1dce8 100644 --- a/gnu/dist/postfix/src/postconf/postconf.c +++ b/gnu/dist/postfix/src/postconf/postconf.c @@ -1,5 +1,3 @@ -/* $NetBSD: postconf.c,v 1.1.1.12 2008/06/22 14:03:02 christos Exp $ */ - /*++ /* NAME /* postconf 1 diff --git a/gnu/dist/postfix/src/postdrop/postdrop.c b/gnu/dist/postfix/src/postdrop/postdrop.c index a65b3141a163..630bdb300ce4 100644 --- a/gnu/dist/postfix/src/postdrop/postdrop.c +++ b/gnu/dist/postfix/src/postdrop/postdrop.c @@ -1,5 +1,3 @@ -/* $NetBSD: postdrop.c,v 1.1.1.11 2008/06/22 14:03:02 christos Exp $ */ - /*++ /* NAME /* postdrop 1 diff --git a/gnu/dist/postfix/src/postfix/postfix.c b/gnu/dist/postfix/src/postfix/postfix.c index 94433eecbb9d..13eb9a6817fe 100644 --- a/gnu/dist/postfix/src/postfix/postfix.c +++ b/gnu/dist/postfix/src/postfix/postfix.c @@ -1,5 +1,3 @@ -/* $NetBSD: postfix.c,v 1.1.1.10 2008/06/22 14:03:03 christos Exp $ */ - /*++ /* NAME /* postfix 1 diff --git a/gnu/dist/postfix/src/postkick/postkick.c b/gnu/dist/postfix/src/postkick/postkick.c index da051986d031..93df8d0e32da 100644 --- a/gnu/dist/postfix/src/postkick/postkick.c +++ b/gnu/dist/postfix/src/postkick/postkick.c @@ -1,5 +1,3 @@ -/* $NetBSD: postkick.c,v 1.1.1.6 2007/05/19 16:28:27 heas Exp $ */ - /*++ /* NAME /* postkick 1 diff --git a/gnu/dist/postfix/src/postlock/postlock.c b/gnu/dist/postfix/src/postlock/postlock.c index cc5db9687987..e2814bce3bad 100644 --- a/gnu/dist/postfix/src/postlock/postlock.c +++ b/gnu/dist/postfix/src/postlock/postlock.c @@ -1,5 +1,3 @@ -/* $NetBSD: postlock.c,v 1.1.1.6 2007/05/19 16:28:27 heas Exp $ */ - /*++ /* NAME /* postlock 1 diff --git a/gnu/dist/postfix/src/postlog/postlog.c b/gnu/dist/postfix/src/postlog/postlog.c index a052852b1da5..784843ce7e09 100644 --- a/gnu/dist/postfix/src/postlog/postlog.c +++ b/gnu/dist/postfix/src/postlog/postlog.c @@ -1,5 +1,3 @@ -/* $NetBSD: postlog.c,v 1.1.1.6 2007/05/19 16:28:27 heas Exp $ */ - /*++ /* NAME /* postlog 1 diff --git a/gnu/dist/postfix/src/postmap/postmap.c b/gnu/dist/postfix/src/postmap/postmap.c index 8ef5a699cd2d..f2f28e0b52aa 100644 --- a/gnu/dist/postfix/src/postmap/postmap.c +++ b/gnu/dist/postfix/src/postmap/postmap.c @@ -1,5 +1,3 @@ -/* $NetBSD: postmap.c,v 1.1.1.12 2008/06/22 14:03:04 christos Exp $ */ - /*++ /* NAME /* postmap 1 diff --git a/gnu/dist/postfix/src/postqueue/postqueue.c b/gnu/dist/postfix/src/postqueue/postqueue.c index f64cc97c1105..7ced31f05703 100644 --- a/gnu/dist/postfix/src/postqueue/postqueue.c +++ b/gnu/dist/postfix/src/postqueue/postqueue.c @@ -1,5 +1,3 @@ -/* $NetBSD: postqueue.c,v 1.1.1.12 2008/06/22 14:03:04 christos Exp $ */ - /*++ /* NAME /* postqueue 1 diff --git a/gnu/dist/postfix/src/postsuper/postsuper.c b/gnu/dist/postfix/src/postsuper/postsuper.c index da2600dbf004..48f390909ade 100644 --- a/gnu/dist/postfix/src/postsuper/postsuper.c +++ b/gnu/dist/postfix/src/postsuper/postsuper.c @@ -1,5 +1,3 @@ -/* $NetBSD: postsuper.c,v 1.1.1.13 2008/06/22 14:03:05 christos Exp $ */ - /*++ /* NAME /* postsuper 1 diff --git a/gnu/dist/postfix/src/proxymap/proxymap.c b/gnu/dist/postfix/src/proxymap/proxymap.c index 956f48807ae0..593986978eec 100644 --- a/gnu/dist/postfix/src/proxymap/proxymap.c +++ b/gnu/dist/postfix/src/proxymap/proxymap.c @@ -1,5 +1,3 @@ -/* $NetBSD: proxymap.c,v 1.1.1.9 2008/06/22 14:03:05 christos Exp $ */ - /*++ /* NAME /* proxymap 8 diff --git a/gnu/dist/postfix/src/qmgr/qmgr.c b/gnu/dist/postfix/src/qmgr/qmgr.c index 9eb782faadbe..59bafb8b6ada 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr.c +++ b/gnu/dist/postfix/src/qmgr/qmgr.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr.c,v 1.1.1.11 2008/06/22 14:03:06 christos Exp $ */ - /*++ /* NAME /* qmgr 8 diff --git a/gnu/dist/postfix/src/qmgr/qmgr.h b/gnu/dist/postfix/src/qmgr/qmgr.h index a99b796d23f8..df8b980adc6b 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr.h +++ b/gnu/dist/postfix/src/qmgr/qmgr.h @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr.h,v 1.1.1.9 2008/06/22 14:03:06 christos Exp $ */ - /*++ /* NAME /* qmgr 3h diff --git a/gnu/dist/postfix/src/qmgr/qmgr_active.c b/gnu/dist/postfix/src/qmgr/qmgr_active.c index 80e2554b4913..eeec88d3b40d 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_active.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_active.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_active.c,v 1.1.1.9 2008/06/22 14:03:05 christos Exp $ */ - /*++ /* NAME /* qmgr_active 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_bounce.c b/gnu/dist/postfix/src/qmgr/qmgr_bounce.c index f2abaace3284..00ba885bf98f 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_bounce.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_bounce.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_bounce.c,v 1.1.1.6 2007/05/19 16:28:28 heas Exp $ */ - /*++ /* NAME /* qmgr_bounce diff --git a/gnu/dist/postfix/src/qmgr/qmgr_defer.c b/gnu/dist/postfix/src/qmgr/qmgr_defer.c index 039d40f2bc3b..79615cc0f760 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_defer.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_defer.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_defer.c,v 1.1.1.7 2008/06/22 14:03:07 christos Exp $ */ - /*++ /* NAME /* qmgr_defer diff --git a/gnu/dist/postfix/src/qmgr/qmgr_deliver.c b/gnu/dist/postfix/src/qmgr/qmgr_deliver.c index 8d18209bc631..668c92449603 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_deliver.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_deliver.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_deliver.c,v 1.1.1.12 2008/06/22 14:03:07 christos Exp $ */ - /*++ /* NAME /* qmgr_deliver 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_enable.c b/gnu/dist/postfix/src/qmgr/qmgr_enable.c index ff2f9ae065bb..a35e46e480b5 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_enable.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_enable.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_enable.c,v 1.1.1.3 2008/06/22 14:03:07 christos Exp $ */ - /*++ /* NAME /* qmgr_enable diff --git a/gnu/dist/postfix/src/qmgr/qmgr_entry.c b/gnu/dist/postfix/src/qmgr/qmgr_entry.c index dbc50840b952..9f89e0a7335d 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_entry.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_entry.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_entry.c,v 1.1.1.8 2008/06/22 14:03:08 christos Exp $ */ - /*++ /* NAME /* qmgr_entry 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_error.c b/gnu/dist/postfix/src/qmgr/qmgr_error.c index 6cec8a44ba66..6d07b3bd8f95 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_error.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_error.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_error.c,v 1.1.1.1 2007/05/19 16:28:30 heas Exp $ */ - /*++ /* NAME /* qmgr_error 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_feedback.c b/gnu/dist/postfix/src/qmgr/qmgr_feedback.c index fb0fa4d53fbe..f341b9591d3b 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_feedback.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_feedback.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_feedback.c,v 1.1.1.1 2008/06/22 14:03:08 christos Exp $ */ - /*++ /* NAME /* qmgr_feedback 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_job.c b/gnu/dist/postfix/src/qmgr/qmgr_job.c index 4b178fae7f57..ad727f43a6da 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_job.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_job.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_job.c,v 1.1.1.5 2007/05/19 16:28:29 heas Exp $ */ - /*++ /* NAME /* qmgr_job 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_move.c b/gnu/dist/postfix/src/qmgr/qmgr_move.c index f5005495a213..e68f80348c86 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_move.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_move.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_move.c,v 1.1.1.4 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* qmgr_move 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_peer.c b/gnu/dist/postfix/src/qmgr/qmgr_peer.c index 2590739653e4..2ac020cb08c7 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_peer.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_peer.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_peer.c,v 1.1.1.4 2007/05/19 16:28:30 heas Exp $ */ - /*++ /* NAME /* qmgr_peer 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_queue.c b/gnu/dist/postfix/src/qmgr/qmgr_queue.c index 91690edb853a..3bc6782b2f73 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_queue.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_queue.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_queue.c,v 1.1.1.7 2008/06/22 14:03:12 christos Exp $ */ - /*++ /* NAME /* qmgr_queue 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_scan.c b/gnu/dist/postfix/src/qmgr/qmgr_scan.c index fc9c17b8d764..0665a23ce8bf 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_scan.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_scan.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_scan.c,v 1.1.1.4 2007/05/19 16:28:30 heas Exp $ */ - /*++ /* NAME /* qmgr_scan 3 diff --git a/gnu/dist/postfix/src/qmgr/qmgr_transport.c b/gnu/dist/postfix/src/qmgr/qmgr_transport.c index c7c3ef6bbef4..1265c6f0ccf1 100644 --- a/gnu/dist/postfix/src/qmgr/qmgr_transport.c +++ b/gnu/dist/postfix/src/qmgr/qmgr_transport.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmgr_transport.c,v 1.1.1.6 2008/06/22 14:03:07 christos Exp $ */ - /*++ /* NAME /* qmgr_transport 3 diff --git a/gnu/dist/postfix/src/qmqpd/qmqpd.c b/gnu/dist/postfix/src/qmqpd/qmqpd.c index cb4702c504cf..a6b5e66f47d3 100644 --- a/gnu/dist/postfix/src/qmqpd/qmqpd.c +++ b/gnu/dist/postfix/src/qmqpd/qmqpd.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmqpd.c,v 1.1.1.10 2008/06/22 14:03:18 christos Exp $ */ - /*++ /* NAME /* qmqpd 8 diff --git a/gnu/dist/postfix/src/qmqpd/qmqpd.h b/gnu/dist/postfix/src/qmqpd/qmqpd.h index fbc21eb0091d..86e98efaa6e1 100644 --- a/gnu/dist/postfix/src/qmqpd/qmqpd.h +++ b/gnu/dist/postfix/src/qmqpd/qmqpd.h @@ -1,5 +1,3 @@ -/* $NetBSD: qmqpd.h,v 1.1.1.6 2008/06/22 14:03:18 christos Exp $ */ - /*++ /* NAME /* qmqpd 3h diff --git a/gnu/dist/postfix/src/qmqpd/qmqpd_peer.c b/gnu/dist/postfix/src/qmqpd/qmqpd_peer.c index f7155a4c5164..f026c9e8624c 100644 --- a/gnu/dist/postfix/src/qmqpd/qmqpd_peer.c +++ b/gnu/dist/postfix/src/qmqpd/qmqpd_peer.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmqpd_peer.c,v 1.1.1.7 2008/06/22 14:03:18 christos Exp $ */ - /*++ /* NAME /* qmqpd_peer 3 diff --git a/gnu/dist/postfix/src/qmqpd/qmqpd_state.c b/gnu/dist/postfix/src/qmqpd/qmqpd_state.c index 1d693e13aa65..1062f4873c6c 100644 --- a/gnu/dist/postfix/src/qmqpd/qmqpd_state.c +++ b/gnu/dist/postfix/src/qmqpd/qmqpd_state.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmqpd_state.c,v 1.1.1.4 2006/07/19 01:17:40 rpaulo Exp $ */ - /*++ /* NAME /* qmqpd_state 3 diff --git a/gnu/dist/postfix/src/scache/scache.c b/gnu/dist/postfix/src/scache/scache.c index 6bea2ada0c0f..6a4164ef6bd6 100644 --- a/gnu/dist/postfix/src/scache/scache.c +++ b/gnu/dist/postfix/src/scache/scache.c @@ -1,5 +1,3 @@ -/* $NetBSD: scache.c,v 1.1.1.5 2008/06/22 14:03:19 christos Exp $ */ - /*++ /* NAME /* scache 8 diff --git a/gnu/dist/postfix/src/sendmail/sendmail.c b/gnu/dist/postfix/src/sendmail/sendmail.c index b0b4fe59dff0..7c1d6e805ca3 100644 --- a/gnu/dist/postfix/src/sendmail/sendmail.c +++ b/gnu/dist/postfix/src/sendmail/sendmail.c @@ -1,5 +1,3 @@ -/* $NetBSD: sendmail.c,v 1.1.1.16 2008/06/22 14:03:21 christos Exp $ */ - /*++ /* NAME /* sendmail 1 diff --git a/gnu/dist/postfix/src/showq/showq.c b/gnu/dist/postfix/src/showq/showq.c index 4c4cfa281b4a..73517a60e7e6 100644 --- a/gnu/dist/postfix/src/showq/showq.c +++ b/gnu/dist/postfix/src/showq/showq.c @@ -1,5 +1,3 @@ -/* $NetBSD: showq.c,v 1.1.1.12 2008/06/22 14:03:21 christos Exp $ */ - /*++ /* NAME /* showq 8 diff --git a/gnu/dist/postfix/src/smtp/lmtp_params.c b/gnu/dist/postfix/src/smtp/lmtp_params.c index 9cb88fa62aa0..5f7c41b5a1b7 100644 --- a/gnu/dist/postfix/src/smtp/lmtp_params.c +++ b/gnu/dist/postfix/src/smtp/lmtp_params.c @@ -1,5 +1,3 @@ -/* $NetBSD: lmtp_params.c,v 1.1.1.4 2008/06/22 14:03:22 christos Exp $ */ - static const CONFIG_STR_TABLE lmtp_str_table[] = { VAR_NOTIFY_CLASSES, DEF_NOTIFY_CLASSES, &var_notify_classes, 0, 0, VAR_BESTMX_TRANSP, DEF_BESTMX_TRANSP, &var_bestmx_transp, 0, 0, diff --git a/gnu/dist/postfix/src/smtp/smtp.h b/gnu/dist/postfix/src/smtp/smtp.h index cbb969adb8bc..da3f3034b565 100644 --- a/gnu/dist/postfix/src/smtp/smtp.h +++ b/gnu/dist/postfix/src/smtp/smtp.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtp.h,v 1.1.1.10 2008/06/22 14:03:24 christos Exp $ */ - /*++ /* NAME /* smtp 3h diff --git a/gnu/dist/postfix/src/smtp/smtp_addr.h b/gnu/dist/postfix/src/smtp/smtp_addr.h index f4fd9e41c8ec..67ff5322ada4 100644 --- a/gnu/dist/postfix/src/smtp/smtp_addr.h +++ b/gnu/dist/postfix/src/smtp/smtp_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_addr.h,v 1.1.1.6 2008/06/22 14:03:24 christos Exp $ */ - /*++ /* NAME /* smtp_addr 3h diff --git a/gnu/dist/postfix/src/smtp/smtp_chat.c b/gnu/dist/postfix/src/smtp/smtp_chat.c index a87eef9c23ab..08c9d7400c7b 100644 --- a/gnu/dist/postfix/src/smtp/smtp_chat.c +++ b/gnu/dist/postfix/src/smtp/smtp_chat.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_chat.c,v 1.1.1.12 2008/06/22 14:03:24 christos Exp $ */ - /*++ /* NAME /* smtp_chat 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_map11.c b/gnu/dist/postfix/src/smtp/smtp_map11.c index 43807dcc8f72..23b2937e056e 100644 --- a/gnu/dist/postfix/src/smtp/smtp_map11.c +++ b/gnu/dist/postfix/src/smtp/smtp_map11.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_map11.c,v 1.1.1.2 2006/07/19 01:17:43 rpaulo Exp $ */ - /*++ /* NAME /* smtp_map11 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_params.c b/gnu/dist/postfix/src/smtp/smtp_params.c index 28cc31793a2c..61cf8b33cfb8 100644 --- a/gnu/dist/postfix/src/smtp/smtp_params.c +++ b/gnu/dist/postfix/src/smtp/smtp_params.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_params.c,v 1.1.1.4 2008/06/22 14:03:25 christos Exp $ */ - static const CONFIG_STR_TABLE smtp_str_table[] = { VAR_NOTIFY_CLASSES, DEF_NOTIFY_CLASSES, &var_notify_classes, 0, 0, VAR_SMTP_FALLBACK, DEF_SMTP_FALLBACK, &var_fallback_relay, 0, 0, diff --git a/gnu/dist/postfix/src/smtp/smtp_proto.c b/gnu/dist/postfix/src/smtp/smtp_proto.c index 35812ea3ac4a..ed40eff5b258 100644 --- a/gnu/dist/postfix/src/smtp/smtp_proto.c +++ b/gnu/dist/postfix/src/smtp/smtp_proto.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_proto.c,v 1.1.1.16 2008/06/22 14:03:26 christos Exp $ */ - /*++ /* NAME /* smtp_proto 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_rcpt.c b/gnu/dist/postfix/src/smtp/smtp_rcpt.c index 3d9ddaf295f8..31599464b2ed 100644 --- a/gnu/dist/postfix/src/smtp/smtp_rcpt.c +++ b/gnu/dist/postfix/src/smtp/smtp_rcpt.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_rcpt.c,v 1.1.1.3 2006/07/19 01:17:43 rpaulo Exp $ */ - /*++ /* NAME /* smtp_rcpt 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_reuse.c b/gnu/dist/postfix/src/smtp/smtp_reuse.c index 9fcf30995d27..1ed72d73bd58 100644 --- a/gnu/dist/postfix/src/smtp/smtp_reuse.c +++ b/gnu/dist/postfix/src/smtp/smtp_reuse.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_reuse.c,v 1.1.1.3 2006/11/07 02:58:41 rpaulo Exp $ */ - /*++ /* NAME /* smtp_reuse 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_reuse.h b/gnu/dist/postfix/src/smtp/smtp_reuse.h index 11a777aa46aa..bf005c043c41 100644 --- a/gnu/dist/postfix/src/smtp/smtp_reuse.h +++ b/gnu/dist/postfix/src/smtp/smtp_reuse.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_reuse.h,v 1.1.1.2 2006/07/19 01:17:43 rpaulo Exp $ */ - /*++ /* NAME /* smtp_reuse 3h diff --git a/gnu/dist/postfix/src/smtp/smtp_sasl.h b/gnu/dist/postfix/src/smtp/smtp_sasl.h index 63a9e62be839..756d13dde1d7 100644 --- a/gnu/dist/postfix/src/smtp/smtp_sasl.h +++ b/gnu/dist/postfix/src/smtp/smtp_sasl.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_sasl.h,v 1.1.1.5 2006/07/19 01:17:43 rpaulo Exp $ */ - /*++ /* NAME /* smtp_sasl 3h diff --git a/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.c b/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.c index 23be84264b56..682c4fba3abd 100644 --- a/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.c +++ b/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_sasl_auth_cache.c,v 1.1.1.1 2008/06/22 14:03:28 christos Exp $ */ - /*++ /* NAME /* smtp_sasl_auth_cache 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.h b/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.h index 3c724c56edfb..cbbdb0d533de 100644 --- a/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.h +++ b/gnu/dist/postfix/src/smtp/smtp_sasl_auth_cache.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_sasl_auth_cache.h,v 1.1.1.1 2008/06/22 14:03:28 christos Exp $ */ - #ifndef _SMTP_SASL_AUTH_CACHE_H_INCLUDED_ #define _SMTP_SASL_AUTH_CACHE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/smtp/smtp_sasl_glue.c b/gnu/dist/postfix/src/smtp/smtp_sasl_glue.c index 20ef046ae11e..1b657e64b0b6 100644 --- a/gnu/dist/postfix/src/smtp/smtp_sasl_glue.c +++ b/gnu/dist/postfix/src/smtp/smtp_sasl_glue.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_sasl_glue.c,v 1.1.1.9 2008/06/22 14:03:29 christos Exp $ */ - /*++ /* NAME /* smtp_sasl_glue 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_sasl_proto.c b/gnu/dist/postfix/src/smtp/smtp_sasl_proto.c index 0d6f6171f2bc..9e813b276c18 100644 --- a/gnu/dist/postfix/src/smtp/smtp_sasl_proto.c +++ b/gnu/dist/postfix/src/smtp/smtp_sasl_proto.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_sasl_proto.c,v 1.1.1.8 2008/06/22 14:03:29 christos Exp $ */ - /*++ /* NAME /* smtp_sasl_proto 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_session.c b/gnu/dist/postfix/src/smtp/smtp_session.c index e9cbe0f1c016..b67bc8524f1b 100644 --- a/gnu/dist/postfix/src/smtp/smtp_session.c +++ b/gnu/dist/postfix/src/smtp/smtp_session.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_session.c,v 1.1.1.6 2008/06/22 14:03:28 christos Exp $ */ - /*++ /* NAME /* smtp_session 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_state.c b/gnu/dist/postfix/src/smtp/smtp_state.c index 15dd39cbf3d7..b396397a1ae0 100644 --- a/gnu/dist/postfix/src/smtp/smtp_state.c +++ b/gnu/dist/postfix/src/smtp/smtp_state.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_state.c,v 1.1.1.7 2006/07/19 01:17:44 rpaulo Exp $ */ - /*++ /* NAME /* smtp_state 3 diff --git a/gnu/dist/postfix/src/smtp/smtp_trouble.c b/gnu/dist/postfix/src/smtp/smtp_trouble.c index 468ae68d7579..c8036ffb3416 100644 --- a/gnu/dist/postfix/src/smtp/smtp_trouble.c +++ b/gnu/dist/postfix/src/smtp/smtp_trouble.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp_trouble.c,v 1.1.1.8 2008/06/22 14:03:29 christos Exp $ */ - /*++ /* NAME /* smtp_trouble 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd.h b/gnu/dist/postfix/src/smtpd/smtpd.h index 930ae1d52be0..bc3aa25c69af 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd.h +++ b/gnu/dist/postfix/src/smtpd/smtpd.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd.h,v 1.1.1.10 2008/06/22 14:03:36 christos Exp $ */ - /*++ /* NAME /* smtpd 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_chat.c b/gnu/dist/postfix/src/smtpd/smtpd_chat.c index 779fe2d31d92..05ef1e507a0b 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_chat.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_chat.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_chat.c,v 1.1.1.8 2008/06/22 14:03:36 christos Exp $ */ - /*++ /* NAME /* smtpd_chat 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_chat.h b/gnu/dist/postfix/src/smtpd/smtpd_chat.h index 773637bf1e9b..132314b67cdb 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_chat.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_chat.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_chat.h,v 1.1.1.3 2006/07/19 01:17:46 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_chat 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_check.h b/gnu/dist/postfix/src/smtpd/smtpd_check.h index 110c17874560..9bdd255c7089 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_check.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_check.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_check.h,v 1.1.1.7 2006/07/19 01:17:47 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_check 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.c b/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.c index 21223258016c..d436967282bb 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_dsn_fix.c,v 1.1.1.1 2006/07/19 01:17:47 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_dsn_fix 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.h b/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.h index 546502680c8b..a3a42dff5cb5 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_dsn_fix.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_dsn_fix.h,v 1.1.1.1 2006/07/19 01:17:47 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_check 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_milter.c b/gnu/dist/postfix/src/smtpd/smtpd_milter.c index cde905c9e640..28693b6f7473 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_milter.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_milter.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_milter.c,v 1.1.1.4 2008/06/22 14:03:40 christos Exp $ */ - /*++ /* NAME /* smtpd_milter 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_milter.h b/gnu/dist/postfix/src/smtpd/smtpd_milter.h index bdd078375111..4006bde7c1a3 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_milter.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_milter.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_milter.h,v 1.1.1.1 2006/07/19 01:17:47 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_milter 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_proxy.c b/gnu/dist/postfix/src/smtpd/smtpd_proxy.c index 4e067ed9476f..c2fa84102bde 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_proxy.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_proxy.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_proxy.c,v 1.1.1.7 2008/06/22 14:03:41 christos Exp $ */ - /*++ /* NAME /* smtpd_proxy 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_proxy.h b/gnu/dist/postfix/src/smtpd/smtpd_proxy.h index 97c57f1731dc..11f59ff97c97 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_proxy.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_proxy.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_proxy.h,v 1.1.1.4 2006/07/19 01:17:47 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_proxy 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.c b/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.c index 7fcc35f9cb65..87f58053b214 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_sasl_glue.c,v 1.1.1.9 2008/06/22 14:03:41 christos Exp $ */ - /*++ /* NAME /* smtpd_sasl_glue 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.h b/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.h index 60f29f58cd7a..b11981cd6cf1 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_sasl_glue.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_sasl_glue.h,v 1.1.1.4 2006/07/19 01:17:47 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_sasl_glue 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.c b/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.c index 6ed2e8b8226f..8a930bebe551 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_sasl_proto.c,v 1.1.1.6 2008/06/22 14:03:41 christos Exp $ */ - /*++ /* NAME /* smtpd_sasl_proto 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.h b/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.h index 2b7f96cbb0fd..bd326be5891b 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_sasl_proto.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_sasl_proto.h,v 1.1.1.2 2004/05/31 00:24:50 heas Exp $ */ - /*++ /* NAME /* smtpd_sasl_proto 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_state.c b/gnu/dist/postfix/src/smtpd/smtpd_state.c index 34a150928101..a104a117424c 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_state.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_state.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_state.c,v 1.1.1.10 2008/06/22 14:03:41 christos Exp $ */ - /*++ /* NAME /* smtpd_state 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_token.c b/gnu/dist/postfix/src/smtpd/smtpd_token.c index b63744ba2c6e..7180317c4443 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_token.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_token.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_token.c,v 1.1.1.4 2006/07/19 01:17:48 rpaulo Exp $ */ - /*++ /* NAME /* smtpd_token 3 diff --git a/gnu/dist/postfix/src/smtpd/smtpd_token.h b/gnu/dist/postfix/src/smtpd/smtpd_token.h index d03c0a242a05..88489fa220b2 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_token.h +++ b/gnu/dist/postfix/src/smtpd/smtpd_token.h @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_token.h,v 1.1.1.2 2004/05/31 00:24:50 heas Exp $ */ - /*++ /* NAME /* smtpd_token 3h diff --git a/gnu/dist/postfix/src/smtpd/smtpd_xforward.c b/gnu/dist/postfix/src/smtpd/smtpd_xforward.c index f9e8108e7bbd..977640946bbc 100644 --- a/gnu/dist/postfix/src/smtpd/smtpd_xforward.c +++ b/gnu/dist/postfix/src/smtpd/smtpd_xforward.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtpd_xforward.c,v 1.1.1.4 2008/06/22 14:03:41 christos Exp $ */ - /*++ /* NAME /* smtpd_xforward 3 diff --git a/gnu/dist/postfix/src/smtpstone/qmqp-sink.c b/gnu/dist/postfix/src/smtpstone/qmqp-sink.c index 47ef04fa705c..f89cd194f8e5 100644 --- a/gnu/dist/postfix/src/smtpstone/qmqp-sink.c +++ b/gnu/dist/postfix/src/smtpstone/qmqp-sink.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmqp-sink.c,v 1.1.1.6 2007/05/19 16:28:40 heas Exp $ */ - /*++ /* NAME /* qmqp-sink 1 diff --git a/gnu/dist/postfix/src/smtpstone/qmqp-source.c b/gnu/dist/postfix/src/smtpstone/qmqp-source.c index e806032564cc..a69089a115a6 100644 --- a/gnu/dist/postfix/src/smtpstone/qmqp-source.c +++ b/gnu/dist/postfix/src/smtpstone/qmqp-source.c @@ -1,5 +1,3 @@ -/* $NetBSD: qmqp-source.c,v 1.1.1.8 2007/08/02 08:05:31 heas Exp $ */ - /*++ /* NAME /* qmqp-source 1 diff --git a/gnu/dist/postfix/src/smtpstone/smtp-sink.c b/gnu/dist/postfix/src/smtpstone/smtp-sink.c index 51816161d106..d9aac9b083cf 100644 --- a/gnu/dist/postfix/src/smtpstone/smtp-sink.c +++ b/gnu/dist/postfix/src/smtpstone/smtp-sink.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp-sink.c,v 1.1.1.11 2008/06/22 14:03:43 christos Exp $ */ - /*++ /* NAME /* smtp-sink 1 diff --git a/gnu/dist/postfix/src/smtpstone/smtp-source.c b/gnu/dist/postfix/src/smtpstone/smtp-source.c index 4f349400e835..a2231e94e35b 100644 --- a/gnu/dist/postfix/src/smtpstone/smtp-source.c +++ b/gnu/dist/postfix/src/smtpstone/smtp-source.c @@ -1,5 +1,3 @@ -/* $NetBSD: smtp-source.c,v 1.1.1.11 2008/06/22 14:03:43 christos Exp $ */ - /*++ /* NAME /* smtp-source 1 diff --git a/gnu/dist/postfix/src/spawn/spawn.c b/gnu/dist/postfix/src/spawn/spawn.c index 2fa1cb3f0267..3ef6228f54e5 100644 --- a/gnu/dist/postfix/src/spawn/spawn.c +++ b/gnu/dist/postfix/src/spawn/spawn.c @@ -1,5 +1,3 @@ -/* $NetBSD: spawn.c,v 1.1.1.10 2008/06/22 14:03:44 christos Exp $ */ - /*++ /* NAME /* spawn 8 diff --git a/gnu/dist/postfix/src/tls/tls.h b/gnu/dist/postfix/src/tls/tls.h index 5289846abfff..058d7676ade6 100644 --- a/gnu/dist/postfix/src/tls/tls.h +++ b/gnu/dist/postfix/src/tls/tls.h @@ -1,5 +1,3 @@ -/* $NetBSD: tls.h,v 1.1.1.5 2008/06/22 14:03:13 christos Exp $ */ - #ifndef _TLS_H_INCLUDED_ #define _TLS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/tls/tls_bio_ops.c b/gnu/dist/postfix/src/tls/tls_bio_ops.c index a1ec018bbbda..39e0b66cb4c5 100644 --- a/gnu/dist/postfix/src/tls/tls_bio_ops.c +++ b/gnu/dist/postfix/src/tls/tls_bio_ops.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_bio_ops.c,v 1.1.1.2 2008/06/22 14:03:12 christos Exp $ */ - /*++ /* NAME /* tls_bio_ops 3 diff --git a/gnu/dist/postfix/src/tls/tls_certkey.c b/gnu/dist/postfix/src/tls/tls_certkey.c index d2ad6824b427..05deba332e6b 100644 --- a/gnu/dist/postfix/src/tls/tls_certkey.c +++ b/gnu/dist/postfix/src/tls/tls_certkey.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_certkey.c,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* tls_certkey 3 diff --git a/gnu/dist/postfix/src/tls/tls_client.c b/gnu/dist/postfix/src/tls/tls_client.c index 18cd113b3cbf..04d186c36a4b 100644 --- a/gnu/dist/postfix/src/tls/tls_client.c +++ b/gnu/dist/postfix/src/tls/tls_client.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_client.c,v 1.1.1.5 2008/06/22 14:03:15 christos Exp $ */ - /*++ /* NAME /* tls_client diff --git a/gnu/dist/postfix/src/tls/tls_dh.c b/gnu/dist/postfix/src/tls/tls_dh.c index 1736cd923338..a4e99268cb98 100644 --- a/gnu/dist/postfix/src/tls/tls_dh.c +++ b/gnu/dist/postfix/src/tls/tls_dh.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_dh.c,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* tls_dh diff --git a/gnu/dist/postfix/src/tls/tls_level.c b/gnu/dist/postfix/src/tls/tls_level.c index 1ab5ca7bb459..32063200ef9f 100644 --- a/gnu/dist/postfix/src/tls/tls_level.c +++ b/gnu/dist/postfix/src/tls/tls_level.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_level.c,v 1.1.1.2 2008/06/22 14:03:16 christos Exp $ */ - /*++ /* NAME /* tls_level 3 diff --git a/gnu/dist/postfix/src/tls/tls_mgr.c b/gnu/dist/postfix/src/tls/tls_mgr.c index 6f6a6d3c0981..a0b089488cc5 100644 --- a/gnu/dist/postfix/src/tls/tls_mgr.c +++ b/gnu/dist/postfix/src/tls/tls_mgr.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_mgr.c,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* tls_mgr 3 diff --git a/gnu/dist/postfix/src/tls/tls_mgr.h b/gnu/dist/postfix/src/tls/tls_mgr.h index ba6bfa420ceb..bc9effffc6a0 100644 --- a/gnu/dist/postfix/src/tls/tls_mgr.h +++ b/gnu/dist/postfix/src/tls/tls_mgr.h @@ -1,5 +1,3 @@ -/* $NetBSD: tls_mgr.h,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - #ifndef _TLS_MGR_CLNT_H_INCLUDED_ #define _TLS_MGR_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/tls/tls_misc.c b/gnu/dist/postfix/src/tls/tls_misc.c index 89b9085979d9..a1f9060a63b0 100644 --- a/gnu/dist/postfix/src/tls/tls_misc.c +++ b/gnu/dist/postfix/src/tls/tls_misc.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_misc.c,v 1.1.1.5 2008/06/22 14:03:16 christos Exp $ */ - /*++ /* NAME /* tls_misc 3 diff --git a/gnu/dist/postfix/src/tls/tls_prng.h b/gnu/dist/postfix/src/tls/tls_prng.h index b469b35da203..df7fad9804e0 100644 --- a/gnu/dist/postfix/src/tls/tls_prng.h +++ b/gnu/dist/postfix/src/tls/tls_prng.h @@ -1,5 +1,3 @@ -/* $NetBSD: tls_prng.h,v 1.1.1.1 2005/08/18 21:11:06 rpaulo Exp $ */ - #ifndef _TLS_PRNG_SRC_H_INCLUDED_ #define _TLS_PRNG_SRC_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/tls/tls_prng_dev.c b/gnu/dist/postfix/src/tls/tls_prng_dev.c index 750cf9bea67d..38644eacc0ef 100644 --- a/gnu/dist/postfix/src/tls/tls_prng_dev.c +++ b/gnu/dist/postfix/src/tls/tls_prng_dev.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_prng_dev.c,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* tls_prng_dev 3 diff --git a/gnu/dist/postfix/src/tls/tls_prng_egd.c b/gnu/dist/postfix/src/tls/tls_prng_egd.c index 4368a3a3b3a0..3866475cb6bc 100644 --- a/gnu/dist/postfix/src/tls/tls_prng_egd.c +++ b/gnu/dist/postfix/src/tls/tls_prng_egd.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_prng_egd.c,v 1.1.1.1 2005/08/18 21:11:06 rpaulo Exp $ */ - /*++ /* NAME /* tls_prng_egd 3 diff --git a/gnu/dist/postfix/src/tls/tls_prng_exch.c b/gnu/dist/postfix/src/tls/tls_prng_exch.c index 617834ebd954..9bfe1db19484 100644 --- a/gnu/dist/postfix/src/tls/tls_prng_exch.c +++ b/gnu/dist/postfix/src/tls/tls_prng_exch.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_prng_exch.c,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* tls_prng_exch 3 diff --git a/gnu/dist/postfix/src/tls/tls_prng_file.c b/gnu/dist/postfix/src/tls/tls_prng_file.c index 8b80b1217a4a..3c3c0ecdfc49 100644 --- a/gnu/dist/postfix/src/tls/tls_prng_file.c +++ b/gnu/dist/postfix/src/tls/tls_prng_file.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_prng_file.c,v 1.1.1.2 2006/07/19 01:17:39 rpaulo Exp $ */ - /*++ /* NAME /* tls_prng_file 3 diff --git a/gnu/dist/postfix/src/tls/tls_rsa.c b/gnu/dist/postfix/src/tls/tls_rsa.c index 6b0d8e8850b2..cb1476b8a443 100644 --- a/gnu/dist/postfix/src/tls/tls_rsa.c +++ b/gnu/dist/postfix/src/tls/tls_rsa.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_rsa.c,v 1.1.1.1 2005/08/18 21:11:07 rpaulo Exp $ */ - /*++ /* NAME /* tls_rsa diff --git a/gnu/dist/postfix/src/tls/tls_scache.c b/gnu/dist/postfix/src/tls/tls_scache.c index ed4c267ad22f..7eefd905567a 100644 --- a/gnu/dist/postfix/src/tls/tls_scache.c +++ b/gnu/dist/postfix/src/tls/tls_scache.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_scache.c,v 1.1.1.2 2006/07/19 01:17:40 rpaulo Exp $ */ - /*++ /* NAME /* tls_scache 3 diff --git a/gnu/dist/postfix/src/tls/tls_scache.h b/gnu/dist/postfix/src/tls/tls_scache.h index 972555ecf894..78903416db0f 100644 --- a/gnu/dist/postfix/src/tls/tls_scache.h +++ b/gnu/dist/postfix/src/tls/tls_scache.h @@ -1,5 +1,3 @@ -/* $NetBSD: tls_scache.h,v 1.1.1.2 2006/07/19 01:17:40 rpaulo Exp $ */ - #ifndef _TLS_SCACHE_H_INCLUDED_ #define _TLS_SCACHE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/tls/tls_seed.c b/gnu/dist/postfix/src/tls/tls_seed.c index 382d8a141155..edb7cd9de8f5 100644 --- a/gnu/dist/postfix/src/tls/tls_seed.c +++ b/gnu/dist/postfix/src/tls/tls_seed.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_seed.c,v 1.1.1.1 2005/08/18 21:11:08 rpaulo Exp $ */ - /*++ /* NAME /* tls_seed 3 diff --git a/gnu/dist/postfix/src/tls/tls_server.c b/gnu/dist/postfix/src/tls/tls_server.c index 610091cd19b9..efca6be42bf2 100644 --- a/gnu/dist/postfix/src/tls/tls_server.c +++ b/gnu/dist/postfix/src/tls/tls_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_server.c,v 1.1.1.5 2008/06/22 14:03:17 christos Exp $ */ - /*++ /* NAME /* tls_server 3 diff --git a/gnu/dist/postfix/src/tls/tls_stream.c b/gnu/dist/postfix/src/tls/tls_stream.c index 561e93656743..ca73a1136604 100644 --- a/gnu/dist/postfix/src/tls/tls_stream.c +++ b/gnu/dist/postfix/src/tls/tls_stream.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_stream.c,v 1.1.1.3 2008/06/22 14:03:17 christos Exp $ */ - /*++ /* NAME /* tls_stream diff --git a/gnu/dist/postfix/src/tls/tls_verify.c b/gnu/dist/postfix/src/tls/tls_verify.c index 63be48ea7e60..0c9075061d68 100644 --- a/gnu/dist/postfix/src/tls/tls_verify.c +++ b/gnu/dist/postfix/src/tls/tls_verify.c @@ -1,5 +1,3 @@ -/* $NetBSD: tls_verify.c,v 1.1.1.3 2008/06/22 14:03:18 christos Exp $ */ - /*++ /* NAME /* tls_verify 3 diff --git a/gnu/dist/postfix/src/tlsmgr/tlsmgr.c b/gnu/dist/postfix/src/tlsmgr/tlsmgr.c index fae2c7bbb005..906f5b808eb8 100644 --- a/gnu/dist/postfix/src/tlsmgr/tlsmgr.c +++ b/gnu/dist/postfix/src/tlsmgr/tlsmgr.c @@ -1,5 +1,3 @@ -/* $NetBSD: tlsmgr.c,v 1.1.1.4 2008/06/22 14:03:44 christos Exp $ */ - /*++ /* NAME /* tlsmgr 8 diff --git a/gnu/dist/postfix/src/trivial-rewrite/resolve.c b/gnu/dist/postfix/src/trivial-rewrite/resolve.c index ed90983e06db..61f5bf7ea4d7 100644 --- a/gnu/dist/postfix/src/trivial-rewrite/resolve.c +++ b/gnu/dist/postfix/src/trivial-rewrite/resolve.c @@ -1,5 +1,3 @@ -/* $NetBSD: resolve.c,v 1.1.1.12 2008/06/22 14:03:45 christos Exp $ */ - /*++ /* NAME /* resolve 3 diff --git a/gnu/dist/postfix/src/trivial-rewrite/rewrite.c b/gnu/dist/postfix/src/trivial-rewrite/rewrite.c index db44ee35355a..60155de03536 100644 --- a/gnu/dist/postfix/src/trivial-rewrite/rewrite.c +++ b/gnu/dist/postfix/src/trivial-rewrite/rewrite.c @@ -1,5 +1,3 @@ -/* $NetBSD: rewrite.c,v 1.1.1.9 2006/07/19 01:17:49 rpaulo Exp $ */ - /*++ /* NAME /* rewrite 3 diff --git a/gnu/dist/postfix/src/trivial-rewrite/transport.c b/gnu/dist/postfix/src/trivial-rewrite/transport.c index f24ebd03f640..09fd2ec035ed 100644 --- a/gnu/dist/postfix/src/trivial-rewrite/transport.c +++ b/gnu/dist/postfix/src/trivial-rewrite/transport.c @@ -1,5 +1,3 @@ -/* $NetBSD: transport.c,v 1.1.1.9 2008/06/22 14:03:46 christos Exp $ */ - /*++ /* NAME /* transport 3 diff --git a/gnu/dist/postfix/src/trivial-rewrite/transport.h b/gnu/dist/postfix/src/trivial-rewrite/transport.h index 4b278b83efc0..0660f97b5899 100644 --- a/gnu/dist/postfix/src/trivial-rewrite/transport.h +++ b/gnu/dist/postfix/src/trivial-rewrite/transport.h @@ -1,5 +1,3 @@ -/* $NetBSD: transport.h,v 1.1.1.5 2008/06/22 14:03:46 christos Exp $ */ - /*++ /* NAME /* transport 3h diff --git a/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.c b/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.c index fdb2e5e0aa96..fed4cfb38e66 100644 --- a/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.c +++ b/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.c @@ -1,5 +1,3 @@ -/* $NetBSD: trivial-rewrite.c,v 1.1.1.12 2008/06/22 14:03:45 christos Exp $ */ - /*++ /* NAME /* trivial-rewrite 8 diff --git a/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.h b/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.h index 0bf3689ed369..d94cbb3bae7d 100644 --- a/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.h +++ b/gnu/dist/postfix/src/trivial-rewrite/trivial-rewrite.h @@ -1,5 +1,3 @@ -/* $NetBSD: trivial-rewrite.h,v 1.1.1.5 2006/07/19 01:17:49 rpaulo Exp $ */ - /*++ /* NAME /* trivial-rewrite 3h diff --git a/gnu/dist/postfix/src/util/allascii.c b/gnu/dist/postfix/src/util/allascii.c index 4dc24f917ba9..aabbc8e0db5b 100644 --- a/gnu/dist/postfix/src/util/allascii.c +++ b/gnu/dist/postfix/src/util/allascii.c @@ -1,5 +1,3 @@ -/* $NetBSD: allascii.c,v 1.1.1.1 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* allascii 3 diff --git a/gnu/dist/postfix/src/util/alldig.c b/gnu/dist/postfix/src/util/alldig.c index ef0add5d20ee..c4815f68c67d 100644 --- a/gnu/dist/postfix/src/util/alldig.c +++ b/gnu/dist/postfix/src/util/alldig.c @@ -1,5 +1,3 @@ -/* $NetBSD: alldig.c,v 1.1.1.2 2004/05/31 00:24:55 heas Exp $ */ - /*++ /* NAME /* alldig 3 diff --git a/gnu/dist/postfix/src/util/allprint.c b/gnu/dist/postfix/src/util/allprint.c index 179b665ef942..6e9c519ad1a8 100644 --- a/gnu/dist/postfix/src/util/allprint.c +++ b/gnu/dist/postfix/src/util/allprint.c @@ -1,5 +1,3 @@ -/* $NetBSD: allprint.c,v 1.1.1.1 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* allprint 3 diff --git a/gnu/dist/postfix/src/util/allspace.c b/gnu/dist/postfix/src/util/allspace.c index 7b437aa228cf..9a05347126f4 100644 --- a/gnu/dist/postfix/src/util/allspace.c +++ b/gnu/dist/postfix/src/util/allspace.c @@ -1,5 +1,3 @@ -/* $NetBSD: allspace.c,v 1.1.1.1 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* allspace 3 diff --git a/gnu/dist/postfix/src/util/argv.c b/gnu/dist/postfix/src/util/argv.c index 1b992cdac595..5ed42a4d8909 100644 --- a/gnu/dist/postfix/src/util/argv.c +++ b/gnu/dist/postfix/src/util/argv.c @@ -1,5 +1,3 @@ -/* $NetBSD: argv.c,v 1.1.1.6 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* argv 3 diff --git a/gnu/dist/postfix/src/util/argv.h b/gnu/dist/postfix/src/util/argv.h index d56b2e29a449..f369c084d19f 100644 --- a/gnu/dist/postfix/src/util/argv.h +++ b/gnu/dist/postfix/src/util/argv.h @@ -1,5 +1,3 @@ -/* $NetBSD: argv.h,v 1.1.1.5 2006/07/19 01:17:50 rpaulo Exp $ */ - #ifndef _ARGV_H_INCLUDED_ #define _ARGV_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/argv_split.c b/gnu/dist/postfix/src/util/argv_split.c index 2940615ead4b..d7e6bafa27d7 100644 --- a/gnu/dist/postfix/src/util/argv_split.c +++ b/gnu/dist/postfix/src/util/argv_split.c @@ -1,5 +1,3 @@ -/* $NetBSD: argv_split.c,v 1.1.1.2 2004/05/31 00:24:54 heas Exp $ */ - /*++ /* NAME /* argv_split 3 diff --git a/gnu/dist/postfix/src/util/attr.h b/gnu/dist/postfix/src/util/attr.h index e6c82afdb238..cdaeb79a9107 100644 --- a/gnu/dist/postfix/src/util/attr.h +++ b/gnu/dist/postfix/src/util/attr.h @@ -1,5 +1,3 @@ -/* $NetBSD: attr.h,v 1.1.1.6 2006/07/19 01:17:50 rpaulo Exp $ */ - #ifndef _ATTR_H_INCLUDED_ #define _ATTR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/attr_clnt.c b/gnu/dist/postfix/src/util/attr_clnt.c index f2377deee872..8210993e3288 100644 --- a/gnu/dist/postfix/src/util/attr_clnt.c +++ b/gnu/dist/postfix/src/util/attr_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_clnt.c,v 1.1.1.4 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* attr_clnt 3 diff --git a/gnu/dist/postfix/src/util/attr_clnt.h b/gnu/dist/postfix/src/util/attr_clnt.h index c1eab3a49bac..5660f1840ed0 100644 --- a/gnu/dist/postfix/src/util/attr_clnt.h +++ b/gnu/dist/postfix/src/util/attr_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: attr_clnt.h,v 1.1.1.2 2004/05/31 00:24:55 heas Exp $ */ - #ifndef _ATTR_CLNT_H_INCLUDED_ #define _ATTR_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/attr_print0.c b/gnu/dist/postfix/src/util/attr_print0.c index 1d5bb7e2c426..7c6767843945 100644 --- a/gnu/dist/postfix/src/util/attr_print0.c +++ b/gnu/dist/postfix/src/util/attr_print0.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_print0.c,v 1.1.1.6 2007/05/19 16:28:42 heas Exp $ */ - /*++ /* NAME /* attr_print0 3 diff --git a/gnu/dist/postfix/src/util/attr_print64.c b/gnu/dist/postfix/src/util/attr_print64.c index 6dbd2d8831d2..5fd3ed93bd33 100644 --- a/gnu/dist/postfix/src/util/attr_print64.c +++ b/gnu/dist/postfix/src/util/attr_print64.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_print64.c,v 1.1.1.6 2007/05/19 16:28:43 heas Exp $ */ - /*++ /* NAME /* attr_print64 3 diff --git a/gnu/dist/postfix/src/util/attr_print_plain.c b/gnu/dist/postfix/src/util/attr_print_plain.c index 6cbc2c695c7b..cc01c781f1e4 100644 --- a/gnu/dist/postfix/src/util/attr_print_plain.c +++ b/gnu/dist/postfix/src/util/attr_print_plain.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_print_plain.c,v 1.1.1.5 2007/05/19 16:28:43 heas Exp $ */ - /*++ /* NAME /* attr_print_plain 3 diff --git a/gnu/dist/postfix/src/util/attr_scan0.c b/gnu/dist/postfix/src/util/attr_scan0.c index d202bd14f791..806220bc1b14 100644 --- a/gnu/dist/postfix/src/util/attr_scan0.c +++ b/gnu/dist/postfix/src/util/attr_scan0.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_scan0.c,v 1.1.1.8 2008/06/22 14:03:49 christos Exp $ */ - /*++ /* NAME /* attr_scan0 3 diff --git a/gnu/dist/postfix/src/util/attr_scan64.c b/gnu/dist/postfix/src/util/attr_scan64.c index 9e3a8aec6435..645adec16281 100644 --- a/gnu/dist/postfix/src/util/attr_scan64.c +++ b/gnu/dist/postfix/src/util/attr_scan64.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_scan64.c,v 1.1.1.8 2008/06/22 14:03:50 christos Exp $ */ - /*++ /* NAME /* attr_scan64 3 diff --git a/gnu/dist/postfix/src/util/attr_scan_plain.c b/gnu/dist/postfix/src/util/attr_scan_plain.c index d91d5973c09b..6bfff01a5f35 100644 --- a/gnu/dist/postfix/src/util/attr_scan_plain.c +++ b/gnu/dist/postfix/src/util/attr_scan_plain.c @@ -1,5 +1,3 @@ -/* $NetBSD: attr_scan_plain.c,v 1.1.1.6 2008/06/22 14:03:49 christos Exp $ */ - /*++ /* NAME /* attr_scan_plain 3 diff --git a/gnu/dist/postfix/src/util/auto_clnt.c b/gnu/dist/postfix/src/util/auto_clnt.c index 6d42fd4bd1df..626531cc09a2 100644 --- a/gnu/dist/postfix/src/util/auto_clnt.c +++ b/gnu/dist/postfix/src/util/auto_clnt.c @@ -1,5 +1,3 @@ -/* $NetBSD: auto_clnt.c,v 1.1.1.3 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* auto_clnt 3 diff --git a/gnu/dist/postfix/src/util/auto_clnt.h b/gnu/dist/postfix/src/util/auto_clnt.h index a6ecd2782ca7..a168c1adc3a0 100644 --- a/gnu/dist/postfix/src/util/auto_clnt.h +++ b/gnu/dist/postfix/src/util/auto_clnt.h @@ -1,5 +1,3 @@ -/* $NetBSD: auto_clnt.h,v 1.1.1.3 2006/07/19 01:17:50 rpaulo Exp $ */ - #ifndef _AUTO_CLNT_H_INCLUDED_ #define _AUTO_CLNT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/base64_code.c b/gnu/dist/postfix/src/util/base64_code.c index 1cf63f8d34c3..fa9355528fbf 100644 --- a/gnu/dist/postfix/src/util/base64_code.c +++ b/gnu/dist/postfix/src/util/base64_code.c @@ -1,5 +1,3 @@ -/* $NetBSD: base64_code.c,v 1.1.1.5 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* base64_code 3 diff --git a/gnu/dist/postfix/src/util/base64_code.h b/gnu/dist/postfix/src/util/base64_code.h index 18e366a90b37..e2f938ac4bcc 100644 --- a/gnu/dist/postfix/src/util/base64_code.h +++ b/gnu/dist/postfix/src/util/base64_code.h @@ -1,5 +1,3 @@ -/* $NetBSD: base64_code.h,v 1.1.1.3 2006/07/19 01:17:50 rpaulo Exp $ */ - #ifndef _BASE64_CODE_H_INCLUDED_ #define _BASE64_CODE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/basename.c b/gnu/dist/postfix/src/util/basename.c index 0eb67476c82e..429e6cf4458f 100644 --- a/gnu/dist/postfix/src/util/basename.c +++ b/gnu/dist/postfix/src/util/basename.c @@ -1,5 +1,3 @@ -/* $NetBSD: basename.c,v 1.1.1.2 2004/05/31 00:24:56 heas Exp $ */ - /*++ /* NAME /* basename 3 diff --git a/gnu/dist/postfix/src/util/binhash.c b/gnu/dist/postfix/src/util/binhash.c index b1656d0bdf95..b877f77eecac 100644 --- a/gnu/dist/postfix/src/util/binhash.c +++ b/gnu/dist/postfix/src/util/binhash.c @@ -1,5 +1,3 @@ -/* $NetBSD: binhash.c,v 1.1.1.4 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* binhash 3 diff --git a/gnu/dist/postfix/src/util/binhash.h b/gnu/dist/postfix/src/util/binhash.h index 2c47df4f31c5..f94e35beeade 100644 --- a/gnu/dist/postfix/src/util/binhash.h +++ b/gnu/dist/postfix/src/util/binhash.h @@ -1,5 +1,3 @@ -/* $NetBSD: binhash.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _BINHASH_H_INCLUDED_ #define _BINHASH_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/chroot_uid.c b/gnu/dist/postfix/src/util/chroot_uid.c index c44040e2b95e..4a7660f45ce3 100644 --- a/gnu/dist/postfix/src/util/chroot_uid.c +++ b/gnu/dist/postfix/src/util/chroot_uid.c @@ -1,5 +1,3 @@ -/* $NetBSD: chroot_uid.c,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - /*++ /* NAME /* chroot_uid 3 diff --git a/gnu/dist/postfix/src/util/chroot_uid.h b/gnu/dist/postfix/src/util/chroot_uid.h index b89c3edcd49e..f2a839920885 100644 --- a/gnu/dist/postfix/src/util/chroot_uid.h +++ b/gnu/dist/postfix/src/util/chroot_uid.h @@ -1,5 +1,3 @@ -/* $NetBSD: chroot_uid.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _CHROOT_UID_H_INCLUDED_ #define _CHROOT_UID_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/cidr_match.c b/gnu/dist/postfix/src/util/cidr_match.c index 12958f7a4f4a..b72b8db3e155 100644 --- a/gnu/dist/postfix/src/util/cidr_match.c +++ b/gnu/dist/postfix/src/util/cidr_match.c @@ -1,5 +1,3 @@ -/* $NetBSD: cidr_match.c,v 1.1.1.1 2005/08/18 21:10:53 rpaulo Exp $ */ - /*++ /* NAME /* cidr_match 3 diff --git a/gnu/dist/postfix/src/util/cidr_match.h b/gnu/dist/postfix/src/util/cidr_match.h index dc5242f72d20..153394f80e7e 100644 --- a/gnu/dist/postfix/src/util/cidr_match.h +++ b/gnu/dist/postfix/src/util/cidr_match.h @@ -1,5 +1,3 @@ -/* $NetBSD: cidr_match.h,v 1.1.1.1 2005/08/18 21:10:53 rpaulo Exp $ */ - #ifndef _CIDR_MATCH_H_INCLUDED_ #define _CIDR_MATCH_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/clean_env.c b/gnu/dist/postfix/src/util/clean_env.c index 4b980d2e78b6..ec337cdf06a1 100644 --- a/gnu/dist/postfix/src/util/clean_env.c +++ b/gnu/dist/postfix/src/util/clean_env.c @@ -1,5 +1,3 @@ -/* $NetBSD: clean_env.c,v 1.1.1.5 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* clean_env 3 diff --git a/gnu/dist/postfix/src/util/clean_env.h b/gnu/dist/postfix/src/util/clean_env.h index 033c9def02e5..24cf70beab97 100644 --- a/gnu/dist/postfix/src/util/clean_env.h +++ b/gnu/dist/postfix/src/util/clean_env.h @@ -1,5 +1,3 @@ -/* $NetBSD: clean_env.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _CLEAN_ENV_H_INCLUDED_ #define _CLEAN_ENV_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/close_on_exec.c b/gnu/dist/postfix/src/util/close_on_exec.c index 56502a833c08..efa341538585 100644 --- a/gnu/dist/postfix/src/util/close_on_exec.c +++ b/gnu/dist/postfix/src/util/close_on_exec.c @@ -1,5 +1,3 @@ -/* $NetBSD: close_on_exec.c,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - /*++ /* NAME /* close_on_exec 3 diff --git a/gnu/dist/postfix/src/util/concatenate.c b/gnu/dist/postfix/src/util/concatenate.c index a11e070851aa..1f9716074c16 100644 --- a/gnu/dist/postfix/src/util/concatenate.c +++ b/gnu/dist/postfix/src/util/concatenate.c @@ -1,5 +1,3 @@ -/* $NetBSD: concatenate.c,v 1.1.1.3 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* concatenate 3 diff --git a/gnu/dist/postfix/src/util/connect.h b/gnu/dist/postfix/src/util/connect.h index 29b1491ab36c..40987dc727ae 100644 --- a/gnu/dist/postfix/src/util/connect.h +++ b/gnu/dist/postfix/src/util/connect.h @@ -1,5 +1,3 @@ -/* $NetBSD: connect.h,v 1.1.1.3 2008/06/22 14:03:51 christos Exp $ */ - #ifndef _CONNECT_H_INCLUDED_ #define _CONNECT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/ctable.c b/gnu/dist/postfix/src/util/ctable.c index c1116d2d7afa..cd323921c00b 100644 --- a/gnu/dist/postfix/src/util/ctable.c +++ b/gnu/dist/postfix/src/util/ctable.c @@ -1,5 +1,3 @@ -/* $NetBSD: ctable.c,v 1.1.1.3 2006/07/19 01:17:51 rpaulo Exp $ */ - /*++ /* NAME /* ctable 3 diff --git a/gnu/dist/postfix/src/util/ctable.h b/gnu/dist/postfix/src/util/ctable.h index 89a3c23a51c5..7e3d899b3f0c 100644 --- a/gnu/dist/postfix/src/util/ctable.h +++ b/gnu/dist/postfix/src/util/ctable.h @@ -1,5 +1,3 @@ -/* $NetBSD: ctable.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _CTABLE_H_INCLUDED_ #define _CTABLE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict.c b/gnu/dist/postfix/src/util/dict.c index 1efa62ce92a3..4747d33e77d2 100644 --- a/gnu/dist/postfix/src/util/dict.c +++ b/gnu/dist/postfix/src/util/dict.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict.c,v 1.1.1.9 2008/06/22 14:03:50 christos Exp $ */ - /*++ /* NAME /* dict 3 diff --git a/gnu/dist/postfix/src/util/dict.h b/gnu/dist/postfix/src/util/dict.h index a0b01ea63b84..9829d28effb4 100644 --- a/gnu/dist/postfix/src/util/dict.h +++ b/gnu/dist/postfix/src/util/dict.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict.h,v 1.1.1.10 2008/06/22 14:03:51 christos Exp $ */ - #ifndef _DICT_H_INCLUDED_ #define _DICT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_alloc.c b/gnu/dist/postfix/src/util/dict_alloc.c index d80eeb997054..9c08a90716ba 100644 --- a/gnu/dist/postfix/src/util/dict_alloc.c +++ b/gnu/dist/postfix/src/util/dict_alloc.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_alloc.c,v 1.1.1.5 2006/07/19 01:17:50 rpaulo Exp $ */ - /*++ /* NAME /* dict_alloc 3 diff --git a/gnu/dist/postfix/src/util/dict_cdb.c b/gnu/dist/postfix/src/util/dict_cdb.c index 21bc97ae2ab2..05e6743f982e 100644 --- a/gnu/dist/postfix/src/util/dict_cdb.c +++ b/gnu/dist/postfix/src/util/dict_cdb.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_cdb.c,v 1.1.1.4 2008/06/22 14:03:51 christos Exp $ */ - /*++ /* NAME /* dict_cdb 3 diff --git a/gnu/dist/postfix/src/util/dict_cdb.h b/gnu/dist/postfix/src/util/dict_cdb.h index 5928725d97ce..e2c13d470516 100644 --- a/gnu/dist/postfix/src/util/dict_cdb.h +++ b/gnu/dist/postfix/src/util/dict_cdb.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_cdb.h,v 1.1.1.1 2005/08/18 21:10:53 rpaulo Exp $ */ - #ifndef _DICT_CDB_H_INCLUDED_ #define _DICT_CDB_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_cidr.c b/gnu/dist/postfix/src/util/dict_cidr.c index 0b76e4943635..6f12f9f87c6a 100644 --- a/gnu/dist/postfix/src/util/dict_cidr.c +++ b/gnu/dist/postfix/src/util/dict_cidr.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_cidr.c,v 1.1.1.4 2006/11/07 02:59:11 rpaulo Exp $ */ - /*++ /* NAME /* dict_cidr 3 diff --git a/gnu/dist/postfix/src/util/dict_cidr.h b/gnu/dist/postfix/src/util/dict_cidr.h index ad1fccd9de5c..308a7654eaeb 100644 --- a/gnu/dist/postfix/src/util/dict_cidr.h +++ b/gnu/dist/postfix/src/util/dict_cidr.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_cidr.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_CIDR_H_INCLUDED_ #define _DICT_CIDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_db.c b/gnu/dist/postfix/src/util/dict_db.c index 51f229b86bb6..d58e3f4595a9 100644 --- a/gnu/dist/postfix/src/util/dict_db.c +++ b/gnu/dist/postfix/src/util/dict_db.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_db.c,v 1.1.1.10 2007/02/05 17:43:02 rpaulo Exp $ */ - /*++ /* NAME /* dict_db 3 diff --git a/gnu/dist/postfix/src/util/dict_db.h b/gnu/dist/postfix/src/util/dict_db.h index 6a8ced7a582a..59120fa08bf5 100644 --- a/gnu/dist/postfix/src/util/dict_db.h +++ b/gnu/dist/postfix/src/util/dict_db.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_db.h,v 1.1.1.3 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_DB_H_INCLUDED_ #define _DICT_DB_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_dbm.c b/gnu/dist/postfix/src/util/dict_dbm.c index e8de78d145eb..e034aecf6e39 100644 --- a/gnu/dist/postfix/src/util/dict_dbm.c +++ b/gnu/dist/postfix/src/util/dict_dbm.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_dbm.c,v 1.1.1.8 2007/02/05 17:43:03 rpaulo Exp $ */ - /*++ /* NAME /* dict_dbm 3 diff --git a/gnu/dist/postfix/src/util/dict_dbm.h b/gnu/dist/postfix/src/util/dict_dbm.h index cab8086edda4..0e2a3347e5a1 100644 --- a/gnu/dist/postfix/src/util/dict_dbm.h +++ b/gnu/dist/postfix/src/util/dict_dbm.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_dbm.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_DBN_H_INCLUDED_ #define _DICT_DBN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_debug.c b/gnu/dist/postfix/src/util/dict_debug.c index 22ad13e8300b..9b85f1e54c18 100644 --- a/gnu/dist/postfix/src/util/dict_debug.c +++ b/gnu/dist/postfix/src/util/dict_debug.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_debug.c,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - /*++ /* NAME /* dict_debug 3 diff --git a/gnu/dist/postfix/src/util/dict_env.c b/gnu/dist/postfix/src/util/dict_env.c index 5f185162f46d..b1a2a01df089 100644 --- a/gnu/dist/postfix/src/util/dict_env.c +++ b/gnu/dist/postfix/src/util/dict_env.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_env.c,v 1.1.1.4 2007/05/19 16:28:44 heas Exp $ */ - /*++ /* NAME /* dict_env 3 diff --git a/gnu/dist/postfix/src/util/dict_env.h b/gnu/dist/postfix/src/util/dict_env.h index 2685a3fb001a..9abfa4fa1ac1 100644 --- a/gnu/dist/postfix/src/util/dict_env.h +++ b/gnu/dist/postfix/src/util/dict_env.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_env.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_ENV_H_INCLUDED_ #define _DICT_ENV_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_ht.c b/gnu/dist/postfix/src/util/dict_ht.c index e3d4801834a5..38625daadc4b 100644 --- a/gnu/dist/postfix/src/util/dict_ht.c +++ b/gnu/dist/postfix/src/util/dict_ht.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_ht.c,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - /*++ /* NAME /* dict_ht 3 diff --git a/gnu/dist/postfix/src/util/dict_ht.h b/gnu/dist/postfix/src/util/dict_ht.h index 1d43d5562470..c0b49654e12b 100644 --- a/gnu/dist/postfix/src/util/dict_ht.h +++ b/gnu/dist/postfix/src/util/dict_ht.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_ht.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_HT_H_INCLUDED_ #define _DICT_HT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_ni.c b/gnu/dist/postfix/src/util/dict_ni.c index f9e64caab722..e9bbd0f6ecca 100644 --- a/gnu/dist/postfix/src/util/dict_ni.c +++ b/gnu/dist/postfix/src/util/dict_ni.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_ni.c,v 1.1.1.4 2007/05/19 16:28:44 heas Exp $ */ - /*++ /* NAME /* dict_ni 3 diff --git a/gnu/dist/postfix/src/util/dict_ni.h b/gnu/dist/postfix/src/util/dict_ni.h index 5a24194b78d8..652b422f135a 100644 --- a/gnu/dist/postfix/src/util/dict_ni.h +++ b/gnu/dist/postfix/src/util/dict_ni.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_ni.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_NI_H_INCLUDED_ #define _DICT_NI_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_nis.c b/gnu/dist/postfix/src/util/dict_nis.c index 11e64a29e848..552f550b17c3 100644 --- a/gnu/dist/postfix/src/util/dict_nis.c +++ b/gnu/dist/postfix/src/util/dict_nis.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_nis.c,v 1.1.1.6 2007/05/19 16:28:44 heas Exp $ */ - /*++ /* NAME /* dict_nis 3 diff --git a/gnu/dist/postfix/src/util/dict_nis.h b/gnu/dist/postfix/src/util/dict_nis.h index 0d6ea00ee323..97aa7cda94d5 100644 --- a/gnu/dist/postfix/src/util/dict_nis.h +++ b/gnu/dist/postfix/src/util/dict_nis.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_nis.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DIST_NIS_H_INCLUDED_ #define _DIST_NIS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_nisplus.c b/gnu/dist/postfix/src/util/dict_nisplus.c index e1f30bd0829f..52ca213f42dd 100644 --- a/gnu/dist/postfix/src/util/dict_nisplus.c +++ b/gnu/dist/postfix/src/util/dict_nisplus.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_nisplus.c,v 1.1.1.5 2007/05/19 16:28:44 heas Exp $ */ - /*++ /* NAME /* dict_nisplus 3 diff --git a/gnu/dist/postfix/src/util/dict_nisplus.h b/gnu/dist/postfix/src/util/dict_nisplus.h index b04b3bdfad56..1fd31c955047 100644 --- a/gnu/dist/postfix/src/util/dict_nisplus.h +++ b/gnu/dist/postfix/src/util/dict_nisplus.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_nisplus.h,v 1.1.1.2 2004/05/31 00:24:57 heas Exp $ */ - #ifndef _DICT_NISPLUS_H_INCLUDED_ #define _DICT_NISPLUS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_open.c b/gnu/dist/postfix/src/util/dict_open.c index 77d9a60f16f3..3e0beb7d6639 100644 --- a/gnu/dist/postfix/src/util/dict_open.c +++ b/gnu/dist/postfix/src/util/dict_open.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_open.c,v 1.1.1.9 2008/06/22 14:03:53 christos Exp $ */ - /*++ /* NAME /* dict_open 3 diff --git a/gnu/dist/postfix/src/util/dict_pcre.c b/gnu/dist/postfix/src/util/dict_pcre.c index 774d92711d31..2f1f3906dba0 100644 --- a/gnu/dist/postfix/src/util/dict_pcre.c +++ b/gnu/dist/postfix/src/util/dict_pcre.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_pcre.c,v 1.1.1.10 2008/06/22 14:03:54 christos Exp $ */ - /*++ /* NAME /* dict_pcre 3 diff --git a/gnu/dist/postfix/src/util/dict_pcre.h b/gnu/dist/postfix/src/util/dict_pcre.h index 303397d61ea4..3aa49559b2ca 100644 --- a/gnu/dist/postfix/src/util/dict_pcre.h +++ b/gnu/dist/postfix/src/util/dict_pcre.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_pcre.h,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - #ifndef _DICT_PCRE_H_INCLUDED_ #define _DICT_PCRE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_regexp.c b/gnu/dist/postfix/src/util/dict_regexp.c index 5e0beffb7c81..f3cb1f9ba469 100644 --- a/gnu/dist/postfix/src/util/dict_regexp.c +++ b/gnu/dist/postfix/src/util/dict_regexp.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_regexp.c,v 1.1.1.11 2008/06/22 14:03:54 christos Exp $ */ - /*++ /* NAME /* dict_regexp 3 diff --git a/gnu/dist/postfix/src/util/dict_regexp.h b/gnu/dist/postfix/src/util/dict_regexp.h index 2f8ec7f0ba65..2874b2708093 100644 --- a/gnu/dist/postfix/src/util/dict_regexp.h +++ b/gnu/dist/postfix/src/util/dict_regexp.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_regexp.h,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - #ifndef _DICT_REGEXP_H_INCLUDED_ #define _DICT_REGEXP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_sdbm.c b/gnu/dist/postfix/src/util/dict_sdbm.c index 535d31f43c93..85e6092f92b5 100644 --- a/gnu/dist/postfix/src/util/dict_sdbm.c +++ b/gnu/dist/postfix/src/util/dict_sdbm.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_sdbm.c,v 1.1.1.3 2007/05/19 16:28:45 heas Exp $ */ - /*++ /* NAME /* dict_sdbm 3 diff --git a/gnu/dist/postfix/src/util/dict_sdbm.h b/gnu/dist/postfix/src/util/dict_sdbm.h index e635b4b51559..6a1b281eadf7 100644 --- a/gnu/dist/postfix/src/util/dict_sdbm.h +++ b/gnu/dist/postfix/src/util/dict_sdbm.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_sdbm.h,v 1.1.1.1 2005/08/18 21:10:54 rpaulo Exp $ */ - #ifndef _DICT_SDBM_H_INCLUDED_ #define _DICT_SDBM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_static.c b/gnu/dist/postfix/src/util/dict_static.c index fe1f730aeb07..346e166b96f7 100644 --- a/gnu/dist/postfix/src/util/dict_static.c +++ b/gnu/dist/postfix/src/util/dict_static.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_static.c,v 1.1.1.3 2004/05/31 00:24:58 heas Exp $ */ - /*++ /* NAME /* dict_static 3 diff --git a/gnu/dist/postfix/src/util/dict_static.h b/gnu/dist/postfix/src/util/dict_static.h index 7989203f1400..d4ad1cc11d37 100644 --- a/gnu/dist/postfix/src/util/dict_static.h +++ b/gnu/dist/postfix/src/util/dict_static.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_static.h,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - #ifndef _DICT_STATIC_H_INCLUDED_ #define _DICT_STATIC_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_tcp.c b/gnu/dist/postfix/src/util/dict_tcp.c index ba5b80b904d8..94f93e23dd88 100644 --- a/gnu/dist/postfix/src/util/dict_tcp.c +++ b/gnu/dist/postfix/src/util/dict_tcp.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_tcp.c,v 1.1.1.5 2007/05/19 16:28:45 heas Exp $ */ - /*++ /* NAME /* dict_tcp 3 diff --git a/gnu/dist/postfix/src/util/dict_tcp.h b/gnu/dist/postfix/src/util/dict_tcp.h index 718eea1999f7..9814c61ff82a 100644 --- a/gnu/dist/postfix/src/util/dict_tcp.h +++ b/gnu/dist/postfix/src/util/dict_tcp.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_tcp.h,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - #ifndef _DICT_TCP_H_INCLUDED_ #define _DICT_TCP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dict_unix.c b/gnu/dist/postfix/src/util/dict_unix.c index f9a0a54a1844..8ba6188f85f3 100644 --- a/gnu/dist/postfix/src/util/dict_unix.c +++ b/gnu/dist/postfix/src/util/dict_unix.c @@ -1,5 +1,3 @@ -/* $NetBSD: dict_unix.c,v 1.1.1.6 2007/05/19 16:28:45 heas Exp $ */ - /*++ /* NAME /* dict_unix 3 diff --git a/gnu/dist/postfix/src/util/dict_unix.h b/gnu/dist/postfix/src/util/dict_unix.h index 7539627da9a4..b5674b29236b 100644 --- a/gnu/dist/postfix/src/util/dict_unix.h +++ b/gnu/dist/postfix/src/util/dict_unix.h @@ -1,5 +1,3 @@ -/* $NetBSD: dict_unix.h,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - #ifndef _DICT_UNIX_H_INCLUDED_ #define _DICT_UNIX_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/dir_forest.c b/gnu/dist/postfix/src/util/dir_forest.c index 06d166195440..007017782da1 100644 --- a/gnu/dist/postfix/src/util/dir_forest.c +++ b/gnu/dist/postfix/src/util/dir_forest.c @@ -1,5 +1,3 @@ -/* $NetBSD: dir_forest.c,v 1.1.1.4 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* dir_forest 3 diff --git a/gnu/dist/postfix/src/util/dir_forest.h b/gnu/dist/postfix/src/util/dir_forest.h index 2a99375445b7..2c4c3639e545 100644 --- a/gnu/dist/postfix/src/util/dir_forest.h +++ b/gnu/dist/postfix/src/util/dir_forest.h @@ -1,5 +1,3 @@ -/* $NetBSD: dir_forest.h,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - #ifndef _DIR_FOREST_H_INCLUDED_ #define _DIR_FOREST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/doze.c b/gnu/dist/postfix/src/util/doze.c index bea28434d0ca..28d56693a169 100644 --- a/gnu/dist/postfix/src/util/doze.c +++ b/gnu/dist/postfix/src/util/doze.c @@ -1,5 +1,3 @@ -/* $NetBSD: doze.c,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - /*++ /* NAME /* doze 3 diff --git a/gnu/dist/postfix/src/util/dummy_read.c b/gnu/dist/postfix/src/util/dummy_read.c index ca7cc1772bcb..639004f307ed 100644 --- a/gnu/dist/postfix/src/util/dummy_read.c +++ b/gnu/dist/postfix/src/util/dummy_read.c @@ -1,5 +1,3 @@ -/* $NetBSD: dummy_read.c,v 1.1.1.3 2008/06/22 14:03:57 christos Exp $ */ - /*++ /* NAME /* dummy_read 3 diff --git a/gnu/dist/postfix/src/util/dummy_write.c b/gnu/dist/postfix/src/util/dummy_write.c index 0066802c7509..943e2ad9f1fa 100644 --- a/gnu/dist/postfix/src/util/dummy_write.c +++ b/gnu/dist/postfix/src/util/dummy_write.c @@ -1,5 +1,3 @@ -/* $NetBSD: dummy_write.c,v 1.1.1.3 2008/06/22 14:03:57 christos Exp $ */ - /*++ /* NAME /* dummy_write 3 diff --git a/gnu/dist/postfix/src/util/dup2_pass_on_exec.c b/gnu/dist/postfix/src/util/dup2_pass_on_exec.c index 2385a3c62574..df0e21cd37f0 100644 --- a/gnu/dist/postfix/src/util/dup2_pass_on_exec.c +++ b/gnu/dist/postfix/src/util/dup2_pass_on_exec.c @@ -1,5 +1,3 @@ -/* $NetBSD: dup2_pass_on_exec.c,v 1.1.1.3 2006/07/19 01:17:51 rpaulo Exp $ */ - /*++ /* NAME /* dup2_pass_on_exec 1 diff --git a/gnu/dist/postfix/src/util/duplex_pipe.c b/gnu/dist/postfix/src/util/duplex_pipe.c index 2edf846a4758..04f23f6e542e 100644 --- a/gnu/dist/postfix/src/util/duplex_pipe.c +++ b/gnu/dist/postfix/src/util/duplex_pipe.c @@ -1,5 +1,3 @@ -/* $NetBSD: duplex_pipe.c,v 1.1.1.2 2004/05/31 00:24:58 heas Exp $ */ - /*++ /* NAME /* duplex_pipe 3 diff --git a/gnu/dist/postfix/src/util/environ.c b/gnu/dist/postfix/src/util/environ.c index 35fcab45cc0a..4b6c59e30881 100644 --- a/gnu/dist/postfix/src/util/environ.c +++ b/gnu/dist/postfix/src/util/environ.c @@ -1,5 +1,3 @@ -/* $NetBSD: environ.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /* * From: TCP Wrapper. * diff --git a/gnu/dist/postfix/src/util/events.c b/gnu/dist/postfix/src/util/events.c index 74af5350161f..0aa9eee52da9 100644 --- a/gnu/dist/postfix/src/util/events.c +++ b/gnu/dist/postfix/src/util/events.c @@ -1,5 +1,3 @@ -/* $NetBSD: events.c,v 1.1.1.8 2008/06/22 14:03:58 christos Exp $ */ - /*++ /* NAME /* events 3 diff --git a/gnu/dist/postfix/src/util/events.h b/gnu/dist/postfix/src/util/events.h index 42bdce270b1f..7837a91da63b 100644 --- a/gnu/dist/postfix/src/util/events.h +++ b/gnu/dist/postfix/src/util/events.h @@ -1,5 +1,3 @@ -/* $NetBSD: events.h,v 1.1.1.4 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _EVENTS_H_INCLUDED_ #define _EVENTS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/exec_command.c b/gnu/dist/postfix/src/util/exec_command.c index 29b2870c99ce..9ab82535e53b 100644 --- a/gnu/dist/postfix/src/util/exec_command.c +++ b/gnu/dist/postfix/src/util/exec_command.c @@ -1,5 +1,3 @@ -/* $NetBSD: exec_command.c,v 1.1.1.3 2005/08/18 21:10:18 rpaulo Exp $ */ - /*++ /* NAME /* exec_command 3 diff --git a/gnu/dist/postfix/src/util/exec_command.h b/gnu/dist/postfix/src/util/exec_command.h index 565a49ee1128..4e77211de0a0 100644 --- a/gnu/dist/postfix/src/util/exec_command.h +++ b/gnu/dist/postfix/src/util/exec_command.h @@ -1,5 +1,3 @@ -/* $NetBSD: exec_command.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _EXEC_COMMAND_H_INCLUDED_ #define _EXEC_COMMAND_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/fifo_listen.c b/gnu/dist/postfix/src/util/fifo_listen.c index f210829f4b71..62915c14c6cd 100644 --- a/gnu/dist/postfix/src/util/fifo_listen.c +++ b/gnu/dist/postfix/src/util/fifo_listen.c @@ -1,5 +1,3 @@ -/* $NetBSD: fifo_listen.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fifo_listen 3 diff --git a/gnu/dist/postfix/src/util/fifo_open.c b/gnu/dist/postfix/src/util/fifo_open.c index dfe305e230b3..1587779e0a1f 100644 --- a/gnu/dist/postfix/src/util/fifo_open.c +++ b/gnu/dist/postfix/src/util/fifo_open.c @@ -1,5 +1,3 @@ -/* $NetBSD: fifo_open.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fifo_open 1 diff --git a/gnu/dist/postfix/src/util/fifo_rdonly_bug.c b/gnu/dist/postfix/src/util/fifo_rdonly_bug.c index 738444b3f4b4..bf93467be81f 100644 --- a/gnu/dist/postfix/src/util/fifo_rdonly_bug.c +++ b/gnu/dist/postfix/src/util/fifo_rdonly_bug.c @@ -1,5 +1,3 @@ -/* $NetBSD: fifo_rdonly_bug.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fifo_rdonly_bug 1 diff --git a/gnu/dist/postfix/src/util/fifo_rdwr_bug.c b/gnu/dist/postfix/src/util/fifo_rdwr_bug.c index fb01ea967e97..2486876d527e 100644 --- a/gnu/dist/postfix/src/util/fifo_rdwr_bug.c +++ b/gnu/dist/postfix/src/util/fifo_rdwr_bug.c @@ -1,5 +1,3 @@ -/* $NetBSD: fifo_rdwr_bug.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fifo_rdwr_bug 1 diff --git a/gnu/dist/postfix/src/util/fifo_trigger.c b/gnu/dist/postfix/src/util/fifo_trigger.c index 0fe810b6521d..7cb5acc1162d 100644 --- a/gnu/dist/postfix/src/util/fifo_trigger.c +++ b/gnu/dist/postfix/src/util/fifo_trigger.c @@ -1,5 +1,3 @@ -/* $NetBSD: fifo_trigger.c,v 1.1.1.4 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fifo_trigger 3 diff --git a/gnu/dist/postfix/src/util/file_limit.c b/gnu/dist/postfix/src/util/file_limit.c index 2260a061dd7e..5cfae4e50554 100644 --- a/gnu/dist/postfix/src/util/file_limit.c +++ b/gnu/dist/postfix/src/util/file_limit.c @@ -1,5 +1,3 @@ -/* $NetBSD: file_limit.c,v 1.1.1.3 2004/05/31 00:24:59 heas Exp $ */ - /*++ /* NAME /* file_limit 3 diff --git a/gnu/dist/postfix/src/util/find_inet.c b/gnu/dist/postfix/src/util/find_inet.c index 2ed620b89886..7ea1de31ec1e 100644 --- a/gnu/dist/postfix/src/util/find_inet.c +++ b/gnu/dist/postfix/src/util/find_inet.c @@ -1,5 +1,3 @@ -/* $NetBSD: find_inet.c,v 1.1.1.5 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* find_inet 3 diff --git a/gnu/dist/postfix/src/util/find_inet.h b/gnu/dist/postfix/src/util/find_inet.h index 92f95e20ebf1..0e5ce7271f0f 100644 --- a/gnu/dist/postfix/src/util/find_inet.h +++ b/gnu/dist/postfix/src/util/find_inet.h @@ -1,5 +1,3 @@ -/* $NetBSD: find_inet.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _FIND_INET_H_INCLUDED_ #define _FIND_INET_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/format_tv.c b/gnu/dist/postfix/src/util/format_tv.c index bf91573ecea5..e555cb3c7fa9 100644 --- a/gnu/dist/postfix/src/util/format_tv.c +++ b/gnu/dist/postfix/src/util/format_tv.c @@ -1,5 +1,3 @@ -/* $NetBSD: format_tv.c,v 1.1.1.1 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* format_tv 3 diff --git a/gnu/dist/postfix/src/util/format_tv.h b/gnu/dist/postfix/src/util/format_tv.h index 7c66ba6e61e0..e62a8618ca7a 100644 --- a/gnu/dist/postfix/src/util/format_tv.h +++ b/gnu/dist/postfix/src/util/format_tv.h @@ -1,5 +1,3 @@ -/* $NetBSD: format_tv.h,v 1.1.1.1 2006/07/19 01:17:52 rpaulo Exp $ */ - #ifndef _FORMAT_TV_H_INCLUDED_ #define _FORMAT_TV_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/fsspace.c b/gnu/dist/postfix/src/util/fsspace.c index b5cae3cc111a..50a4aa7bcb4e 100644 --- a/gnu/dist/postfix/src/util/fsspace.c +++ b/gnu/dist/postfix/src/util/fsspace.c @@ -1,5 +1,3 @@ -/* $NetBSD: fsspace.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fsspace 3 diff --git a/gnu/dist/postfix/src/util/fsspace.h b/gnu/dist/postfix/src/util/fsspace.h index 53d67bea1552..c118e50cffff 100644 --- a/gnu/dist/postfix/src/util/fsspace.h +++ b/gnu/dist/postfix/src/util/fsspace.h @@ -1,5 +1,3 @@ -/* $NetBSD: fsspace.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _FSSPACE_H_INCLUDED_ #define _FSSPACE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/fullname.c b/gnu/dist/postfix/src/util/fullname.c index 9575de91a99e..a9d4b32b5c08 100644 --- a/gnu/dist/postfix/src/util/fullname.c +++ b/gnu/dist/postfix/src/util/fullname.c @@ -1,5 +1,3 @@ -/* $NetBSD: fullname.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* fullname 3 diff --git a/gnu/dist/postfix/src/util/fullname.h b/gnu/dist/postfix/src/util/fullname.h index 9118c424d234..f24492ae7b9d 100644 --- a/gnu/dist/postfix/src/util/fullname.h +++ b/gnu/dist/postfix/src/util/fullname.h @@ -1,5 +1,3 @@ -/* $NetBSD: fullname.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _FULLNAME_H_INCLUDED_ #define _FULLNAME_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/gccw.c b/gnu/dist/postfix/src/util/gccw.c index 63ab79fbb93e..d3421fe592f7 100644 --- a/gnu/dist/postfix/src/util/gccw.c +++ b/gnu/dist/postfix/src/util/gccw.c @@ -1,5 +1,3 @@ -/* $NetBSD: gccw.c,v 1.1.1.1 2006/07/19 01:17:52 rpaulo Exp $ */ - /* * This is is a regression test for all the things that gcc is meant to warn * about. diff --git a/gnu/dist/postfix/src/util/get_domainname.c b/gnu/dist/postfix/src/util/get_domainname.c index 53cab3e1adb2..0897f529ea52 100644 --- a/gnu/dist/postfix/src/util/get_domainname.c +++ b/gnu/dist/postfix/src/util/get_domainname.c @@ -1,5 +1,3 @@ -/* $NetBSD: get_domainname.c,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - /*++ /* NAME /* get_domainname 3 diff --git a/gnu/dist/postfix/src/util/get_domainname.h b/gnu/dist/postfix/src/util/get_domainname.h index d50d36c2553f..177e3fdbd0c9 100644 --- a/gnu/dist/postfix/src/util/get_domainname.h +++ b/gnu/dist/postfix/src/util/get_domainname.h @@ -1,5 +1,3 @@ -/* $NetBSD: get_domainname.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _GET_DOMAINNAME_H_INCLUDED_ #define _GET_DOMAINNAME_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/get_hostname.c b/gnu/dist/postfix/src/util/get_hostname.c index fb19625d66a7..eb2cfea06ad9 100644 --- a/gnu/dist/postfix/src/util/get_hostname.c +++ b/gnu/dist/postfix/src/util/get_hostname.c @@ -1,5 +1,3 @@ -/* $NetBSD: get_hostname.c,v 1.1.1.3 2007/08/02 08:05:36 heas Exp $ */ - /*++ /* NAME /* get_hostname 3 diff --git a/gnu/dist/postfix/src/util/get_hostname.h b/gnu/dist/postfix/src/util/get_hostname.h index a2caaccc470c..32d2ab2fa39b 100644 --- a/gnu/dist/postfix/src/util/get_hostname.h +++ b/gnu/dist/postfix/src/util/get_hostname.h @@ -1,5 +1,3 @@ -/* $NetBSD: get_hostname.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _GET_HOSTNAME_H_INCLUDED_ #define _GET_HOSTNAME_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/hex_code.c b/gnu/dist/postfix/src/util/hex_code.c index 6547a2e64c5e..42d844b88b81 100644 --- a/gnu/dist/postfix/src/util/hex_code.c +++ b/gnu/dist/postfix/src/util/hex_code.c @@ -1,5 +1,3 @@ -/* $NetBSD: hex_code.c,v 1.1.1.2 2006/07/19 01:17:53 rpaulo Exp $ */ - /*++ /* NAME /* hex_code 3 diff --git a/gnu/dist/postfix/src/util/hex_code.h b/gnu/dist/postfix/src/util/hex_code.h index c63141018645..e868fe6b2929 100644 --- a/gnu/dist/postfix/src/util/hex_code.h +++ b/gnu/dist/postfix/src/util/hex_code.h @@ -1,5 +1,3 @@ -/* $NetBSD: hex_code.h,v 1.1.1.2 2006/07/19 01:17:53 rpaulo Exp $ */ - #ifndef _HEX_CODE_H_INCLUDED_ #define _HEX_CODE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/hex_quote.c b/gnu/dist/postfix/src/util/hex_quote.c index 64d4c2a55418..f515441adfef 100644 --- a/gnu/dist/postfix/src/util/hex_quote.c +++ b/gnu/dist/postfix/src/util/hex_quote.c @@ -1,5 +1,3 @@ -/* $NetBSD: hex_quote.c,v 1.1.1.5 2006/07/19 01:17:53 rpaulo Exp $ */ - /*++ /* NAME /* hex_quote 3 diff --git a/gnu/dist/postfix/src/util/hex_quote.h b/gnu/dist/postfix/src/util/hex_quote.h index 5bbeba60a8a0..d72ec5719d3a 100644 --- a/gnu/dist/postfix/src/util/hex_quote.h +++ b/gnu/dist/postfix/src/util/hex_quote.h @@ -1,5 +1,3 @@ -/* $NetBSD: hex_quote.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _HEX_QUOTE_H_INCLUDED_ #define _HEX_QUOTE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/host_port.c b/gnu/dist/postfix/src/util/host_port.c index c9e538d00961..bfcad8c09a37 100644 --- a/gnu/dist/postfix/src/util/host_port.c +++ b/gnu/dist/postfix/src/util/host_port.c @@ -1,5 +1,3 @@ -/* $NetBSD: host_port.c,v 1.1.1.4 2005/08/18 21:10:20 rpaulo Exp $ */ - /*++ /* NAME /* host_port 3 diff --git a/gnu/dist/postfix/src/util/host_port.h b/gnu/dist/postfix/src/util/host_port.h index 5ff50a59c49c..b690a52280d2 100644 --- a/gnu/dist/postfix/src/util/host_port.h +++ b/gnu/dist/postfix/src/util/host_port.h @@ -1,5 +1,3 @@ -/* $NetBSD: host_port.h,v 1.1.1.3 2005/08/18 21:10:20 rpaulo Exp $ */ - #ifndef _HOST_PORT_H_INCLUDED_ #define _HOST_PORT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/htable.c b/gnu/dist/postfix/src/util/htable.c index 6bd48b8bd427..1fbbfcf24971 100644 --- a/gnu/dist/postfix/src/util/htable.c +++ b/gnu/dist/postfix/src/util/htable.c @@ -1,5 +1,3 @@ -/* $NetBSD: htable.c,v 1.1.1.4 2006/07/19 01:17:53 rpaulo Exp $ */ - /*++ /* NAME /* htable 3 diff --git a/gnu/dist/postfix/src/util/htable.h b/gnu/dist/postfix/src/util/htable.h index 363c6afecea8..72eaa98f1a62 100644 --- a/gnu/dist/postfix/src/util/htable.h +++ b/gnu/dist/postfix/src/util/htable.h @@ -1,5 +1,3 @@ -/* $NetBSD: htable.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _HTABLE_H_INCLUDED_ #define _HTABLE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/inet_addr_host.h b/gnu/dist/postfix/src/util/inet_addr_host.h index b739baedcffc..39d150a5a0ee 100644 --- a/gnu/dist/postfix/src/util/inet_addr_host.h +++ b/gnu/dist/postfix/src/util/inet_addr_host.h @@ -1,5 +1,3 @@ -/* $NetBSD: inet_addr_host.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef INET_ADDR_HOST_H_INCLUDED_ #define INET_ADDR_HOST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/inet_addr_local.h b/gnu/dist/postfix/src/util/inet_addr_local.h index 1c70dcb0c4bf..cb6b3f232ca2 100644 --- a/gnu/dist/postfix/src/util/inet_addr_local.h +++ b/gnu/dist/postfix/src/util/inet_addr_local.h @@ -1,5 +1,3 @@ -/* $NetBSD: inet_addr_local.h,v 1.1.1.3 2005/08/18 21:10:26 rpaulo Exp $ */ - #ifndef _INET_ADDR_LOCAL_H_INCLUDED_ #define _INET_ADDR_LOCAL_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/inet_proto.c b/gnu/dist/postfix/src/util/inet_proto.c index f76466713859..c0ad50675dbe 100644 --- a/gnu/dist/postfix/src/util/inet_proto.c +++ b/gnu/dist/postfix/src/util/inet_proto.c @@ -1,5 +1,3 @@ -/* $NetBSD: inet_proto.c,v 1.1.1.3 2008/06/22 14:04:02 christos Exp $ */ - /*++ /* NAME /* inet_proto 3 diff --git a/gnu/dist/postfix/src/util/inet_proto.h b/gnu/dist/postfix/src/util/inet_proto.h index ad12ecea010c..1fcc9db48533 100644 --- a/gnu/dist/postfix/src/util/inet_proto.h +++ b/gnu/dist/postfix/src/util/inet_proto.h @@ -1,5 +1,3 @@ -/* $NetBSD: inet_proto.h,v 1.1.1.1 2005/08/18 21:10:55 rpaulo Exp $ */ - #ifndef _INET_PROTO_INFO_H_INCLUDED_ #define _INET_PROTO_INFO_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/inet_trigger.c b/gnu/dist/postfix/src/util/inet_trigger.c index 4fdd0b971084..afb97b2fbd4d 100644 --- a/gnu/dist/postfix/src/util/inet_trigger.c +++ b/gnu/dist/postfix/src/util/inet_trigger.c @@ -1,5 +1,3 @@ -/* $NetBSD: inet_trigger.c,v 1.1.1.4 2006/07/19 01:17:53 rpaulo Exp $ */ - /*++ /* NAME /* inet_trigger 3 diff --git a/gnu/dist/postfix/src/util/iostuff.h b/gnu/dist/postfix/src/util/iostuff.h index 408cefac52a0..8d3c7a5ca4d0 100644 --- a/gnu/dist/postfix/src/util/iostuff.h +++ b/gnu/dist/postfix/src/util/iostuff.h @@ -1,5 +1,3 @@ -/* $NetBSD: iostuff.h,v 1.1.1.4 2006/07/19 01:17:53 rpaulo Exp $ */ - #ifndef _IOSTUFF_H_INCLUDED_ #define _IOSTUFF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/killme_after.c b/gnu/dist/postfix/src/util/killme_after.c index 2206c8e70833..1ce06d675b08 100644 --- a/gnu/dist/postfix/src/util/killme_after.c +++ b/gnu/dist/postfix/src/util/killme_after.c @@ -1,5 +1,3 @@ -/* $NetBSD: killme_after.c,v 1.1.1.1 2007/05/19 16:28:50 heas Exp $ */ - /*++ /* NAME /* killme_after 3 diff --git a/gnu/dist/postfix/src/util/killme_after.h b/gnu/dist/postfix/src/util/killme_after.h index cfc1dc99f7d0..9505b2d608b3 100644 --- a/gnu/dist/postfix/src/util/killme_after.h +++ b/gnu/dist/postfix/src/util/killme_after.h @@ -1,5 +1,3 @@ -/* $NetBSD: killme_after.h,v 1.1.1.1 2007/05/19 16:28:50 heas Exp $ */ - #ifndef _KILLME_AFTER_H_INCLUDED_ #define _KILLME_AFTER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/line_wrap.c b/gnu/dist/postfix/src/util/line_wrap.c index 35ef559d45ce..50d172cabb81 100644 --- a/gnu/dist/postfix/src/util/line_wrap.c +++ b/gnu/dist/postfix/src/util/line_wrap.c @@ -1,5 +1,3 @@ -/* $NetBSD: line_wrap.c,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - /*++ /* NAME /* line_wrap 3 diff --git a/gnu/dist/postfix/src/util/line_wrap.h b/gnu/dist/postfix/src/util/line_wrap.h index ba385ad23221..b901c1f3dec8 100644 --- a/gnu/dist/postfix/src/util/line_wrap.h +++ b/gnu/dist/postfix/src/util/line_wrap.h @@ -1,5 +1,3 @@ -/* $NetBSD: line_wrap.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _LINE_WRAP_H_INCLUDED_ #define _LINE_WRAP_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/listen.h b/gnu/dist/postfix/src/util/listen.h index f52e2a76772f..8a9041547a36 100644 --- a/gnu/dist/postfix/src/util/listen.h +++ b/gnu/dist/postfix/src/util/listen.h @@ -1,5 +1,3 @@ -/* $NetBSD: listen.h,v 1.1.1.4 2008/06/22 14:04:02 christos Exp $ */ - #ifndef _LISTEN_H_INCLUDED_ #define _LISTEN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/load_file.c b/gnu/dist/postfix/src/util/load_file.c index 0aaa54495851..59af3453c110 100644 --- a/gnu/dist/postfix/src/util/load_file.c +++ b/gnu/dist/postfix/src/util/load_file.c @@ -1,5 +1,3 @@ -/* $NetBSD: load_file.c,v 1.1.1.1 2006/07/19 01:17:53 rpaulo Exp $ */ - /*++ /* NAME /* load_file 3 diff --git a/gnu/dist/postfix/src/util/load_file.h b/gnu/dist/postfix/src/util/load_file.h index af886beffbdf..3e635f37f9f9 100644 --- a/gnu/dist/postfix/src/util/load_file.h +++ b/gnu/dist/postfix/src/util/load_file.h @@ -1,5 +1,3 @@ -/* $NetBSD: load_file.h,v 1.1.1.1 2006/07/19 01:17:53 rpaulo Exp $ */ - #ifndef LOAD_FILE_H_INCLUDED_ #define LOAD_FILE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/lowercase.c b/gnu/dist/postfix/src/util/lowercase.c index f44f52cd90fa..f7388b42eb08 100644 --- a/gnu/dist/postfix/src/util/lowercase.c +++ b/gnu/dist/postfix/src/util/lowercase.c @@ -1,5 +1,3 @@ -/* $NetBSD: lowercase.c,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - /*++ /* NAME /* lowercase 3 diff --git a/gnu/dist/postfix/src/util/lstat_as.c b/gnu/dist/postfix/src/util/lstat_as.c index c47516a4f4bd..ffb796e8ce91 100644 --- a/gnu/dist/postfix/src/util/lstat_as.c +++ b/gnu/dist/postfix/src/util/lstat_as.c @@ -1,5 +1,3 @@ -/* $NetBSD: lstat_as.c,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - /*++ /* NAME /* lstat_as 3 diff --git a/gnu/dist/postfix/src/util/lstat_as.h b/gnu/dist/postfix/src/util/lstat_as.h index c9e19e94c339..824b32115dc4 100644 --- a/gnu/dist/postfix/src/util/lstat_as.h +++ b/gnu/dist/postfix/src/util/lstat_as.h @@ -1,5 +1,3 @@ -/* $NetBSD: lstat_as.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _LSTAT_AS_H_INCLUDED_ #define _LSTAT_AS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/mac_expand.c b/gnu/dist/postfix/src/util/mac_expand.c index 0c055f6c92fe..3bd304616fec 100644 --- a/gnu/dist/postfix/src/util/mac_expand.c +++ b/gnu/dist/postfix/src/util/mac_expand.c @@ -1,5 +1,3 @@ -/* $NetBSD: mac_expand.c,v 1.1.1.5 2006/07/19 01:17:53 rpaulo Exp $ */ - /*++ /* NAME /* mac_expand 3 diff --git a/gnu/dist/postfix/src/util/mac_expand.h b/gnu/dist/postfix/src/util/mac_expand.h index 37143f63c5ca..5ae6b5b99ab4 100644 --- a/gnu/dist/postfix/src/util/mac_expand.h +++ b/gnu/dist/postfix/src/util/mac_expand.h @@ -1,5 +1,3 @@ -/* $NetBSD: mac_expand.h,v 1.1.1.2 2004/05/31 00:24:59 heas Exp $ */ - #ifndef _MAC_EXPAND_H_INCLUDED_ #define _MAC_EXPAND_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/mac_parse.c b/gnu/dist/postfix/src/util/mac_parse.c index 1a2f7b96023e..c6c91551d25c 100644 --- a/gnu/dist/postfix/src/util/mac_parse.c +++ b/gnu/dist/postfix/src/util/mac_parse.c @@ -1,5 +1,3 @@ -/* $NetBSD: mac_parse.c,v 1.1.1.5 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* mac_parse 3 diff --git a/gnu/dist/postfix/src/util/mac_parse.h b/gnu/dist/postfix/src/util/mac_parse.h index b1f5dd84988a..7a9411e77a5c 100644 --- a/gnu/dist/postfix/src/util/mac_parse.h +++ b/gnu/dist/postfix/src/util/mac_parse.h @@ -1,5 +1,3 @@ -/* $NetBSD: mac_parse.h,v 1.1.1.4 2005/08/18 21:10:29 rpaulo Exp $ */ - #ifndef _MAC_PARSE_H_INCLUDED_ #define _MAC_PARSE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/make_dirs.c b/gnu/dist/postfix/src/util/make_dirs.c index 12a485d37751..cf50aae2575c 100644 --- a/gnu/dist/postfix/src/util/make_dirs.c +++ b/gnu/dist/postfix/src/util/make_dirs.c @@ -1,5 +1,3 @@ -/* $NetBSD: make_dirs.c,v 1.1.1.5 2005/08/18 21:10:30 rpaulo Exp $ */ - /*++ /* NAME /* make_dirs 3 diff --git a/gnu/dist/postfix/src/util/make_dirs.h b/gnu/dist/postfix/src/util/make_dirs.h index 35af120264b5..0df6117d8e89 100644 --- a/gnu/dist/postfix/src/util/make_dirs.h +++ b/gnu/dist/postfix/src/util/make_dirs.h @@ -1,5 +1,3 @@ -/* $NetBSD: make_dirs.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef MAKE_DIRS_H_INCLUDED_ #define MAKE_DIRS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/mask_addr.c b/gnu/dist/postfix/src/util/mask_addr.c index 500cb9455ee5..cb37c66ee97f 100644 --- a/gnu/dist/postfix/src/util/mask_addr.c +++ b/gnu/dist/postfix/src/util/mask_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: mask_addr.c,v 1.1.1.2 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* mask_addr 3 diff --git a/gnu/dist/postfix/src/util/mask_addr.h b/gnu/dist/postfix/src/util/mask_addr.h index 36d358fe7791..0e70a41cd3a5 100644 --- a/gnu/dist/postfix/src/util/mask_addr.h +++ b/gnu/dist/postfix/src/util/mask_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: mask_addr.h,v 1.1.1.1 2005/08/18 21:10:55 rpaulo Exp $ */ - #ifndef _MASK_ADDR_H_INCLUDED_ #define _MASK_ADDR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/match_list.h b/gnu/dist/postfix/src/util/match_list.h index a3e14de46f5b..910ae713bf26 100644 --- a/gnu/dist/postfix/src/util/match_list.h +++ b/gnu/dist/postfix/src/util/match_list.h @@ -1,5 +1,3 @@ -/* $NetBSD: match_list.h,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MATCH_LIST_H_INCLUDED_ #define _MATCH_LIST_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/match_ops.h b/gnu/dist/postfix/src/util/match_ops.h index 8cebaae78dce..e147f7b50dd1 100644 --- a/gnu/dist/postfix/src/util/match_ops.h +++ b/gnu/dist/postfix/src/util/match_ops.h @@ -1,5 +1,3 @@ -/* $NetBSD: match_ops.h,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MATCH_OPS_H_INCLUDED_ #define _MATCH_OPS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/msg.c b/gnu/dist/postfix/src/util/msg.c index bf4881dc26bb..ae7798017184 100644 --- a/gnu/dist/postfix/src/util/msg.c +++ b/gnu/dist/postfix/src/util/msg.c @@ -1,5 +1,3 @@ -/* $NetBSD: msg.c,v 1.1.1.5 2006/12/21 02:35:05 rpaulo Exp $ */ - /*++ /* NAME /* msg 3 diff --git a/gnu/dist/postfix/src/util/msg.h b/gnu/dist/postfix/src/util/msg.h index c73b48f1ff63..42198a2a71b8 100644 --- a/gnu/dist/postfix/src/util/msg.h +++ b/gnu/dist/postfix/src/util/msg.h @@ -1,5 +1,3 @@ -/* $NetBSD: msg.h,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MSG_H_INCLUDED_ #define _MSG_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/msg_output.c b/gnu/dist/postfix/src/util/msg_output.c index 0d18252b2f45..0c34bb5db43a 100644 --- a/gnu/dist/postfix/src/util/msg_output.c +++ b/gnu/dist/postfix/src/util/msg_output.c @@ -1,5 +1,3 @@ -/* $NetBSD: msg_output.c,v 1.1.1.4 2007/02/05 17:43:16 rpaulo Exp $ */ - /*++ /* NAME /* msg_output 3 diff --git a/gnu/dist/postfix/src/util/msg_output.h b/gnu/dist/postfix/src/util/msg_output.h index 094b51e3e258..2ac4739e052f 100644 --- a/gnu/dist/postfix/src/util/msg_output.h +++ b/gnu/dist/postfix/src/util/msg_output.h @@ -1,5 +1,3 @@ -/* $NetBSD: msg_output.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MSG_OUTPUT_FN_ #define _MSG_OUTPUT_FN_ diff --git a/gnu/dist/postfix/src/util/msg_syslog.c b/gnu/dist/postfix/src/util/msg_syslog.c index 541c28b4c9e8..bbf2e8080b70 100644 --- a/gnu/dist/postfix/src/util/msg_syslog.c +++ b/gnu/dist/postfix/src/util/msg_syslog.c @@ -1,5 +1,3 @@ -/* $NetBSD: msg_syslog.c,v 1.1.1.6 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* msg_syslog 3 diff --git a/gnu/dist/postfix/src/util/msg_syslog.h b/gnu/dist/postfix/src/util/msg_syslog.h index a285f5972340..863fb2d51801 100644 --- a/gnu/dist/postfix/src/util/msg_syslog.h +++ b/gnu/dist/postfix/src/util/msg_syslog.h @@ -1,5 +1,3 @@ -/* $NetBSD: msg_syslog.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MSG_SYSLOG_H_INCLUDED_ #define _MSG_SYSLOG_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/msg_vstream.c b/gnu/dist/postfix/src/util/msg_vstream.c index 6efb33f4a2bd..b6e24e60902c 100644 --- a/gnu/dist/postfix/src/util/msg_vstream.c +++ b/gnu/dist/postfix/src/util/msg_vstream.c @@ -1,5 +1,3 @@ -/* $NetBSD: msg_vstream.c,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* msg_vstream 3 diff --git a/gnu/dist/postfix/src/util/msg_vstream.h b/gnu/dist/postfix/src/util/msg_vstream.h index dae511eb6371..a0dfc7048636 100644 --- a/gnu/dist/postfix/src/util/msg_vstream.h +++ b/gnu/dist/postfix/src/util/msg_vstream.h @@ -1,5 +1,3 @@ -/* $NetBSD: msg_vstream.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MSG_VSTREAM_H_INCLUDED_ #define _MSG_VSTREAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/mvect.c b/gnu/dist/postfix/src/util/mvect.c index 265304be4dce..ed03d2ad0af7 100644 --- a/gnu/dist/postfix/src/util/mvect.c +++ b/gnu/dist/postfix/src/util/mvect.c @@ -1,5 +1,3 @@ -/* $NetBSD: mvect.c,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* mvect 3 diff --git a/gnu/dist/postfix/src/util/mvect.h b/gnu/dist/postfix/src/util/mvect.h index 94f58f3920d1..23214d54761a 100644 --- a/gnu/dist/postfix/src/util/mvect.h +++ b/gnu/dist/postfix/src/util/mvect.h @@ -1,5 +1,3 @@ -/* $NetBSD: mvect.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MVECT_H_INCLUDED_ #define _MVECT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/myaddrinfo.c b/gnu/dist/postfix/src/util/myaddrinfo.c index a530fe5e2620..171528c22939 100644 --- a/gnu/dist/postfix/src/util/myaddrinfo.c +++ b/gnu/dist/postfix/src/util/myaddrinfo.c @@ -1,5 +1,3 @@ -/* $NetBSD: myaddrinfo.c,v 1.1.1.3 2006/11/07 02:59:27 rpaulo Exp $ */ - /*++ /* NAME /* myaddrinfo 3 diff --git a/gnu/dist/postfix/src/util/myaddrinfo.h b/gnu/dist/postfix/src/util/myaddrinfo.h index 7dab56097149..c567eb7d0f95 100644 --- a/gnu/dist/postfix/src/util/myaddrinfo.h +++ b/gnu/dist/postfix/src/util/myaddrinfo.h @@ -1,5 +1,3 @@ -/* $NetBSD: myaddrinfo.h,v 1.1.1.1 2005/08/18 21:10:58 rpaulo Exp $ */ - #ifndef _MYADDRINFO_H_INCLUDED_ #define _MYADDRINFO_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/myflock.c b/gnu/dist/postfix/src/util/myflock.c index 497876e7a54c..610f72ac5def 100644 --- a/gnu/dist/postfix/src/util/myflock.c +++ b/gnu/dist/postfix/src/util/myflock.c @@ -1,5 +1,3 @@ -/* $NetBSD: myflock.c,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* myflock 3 diff --git a/gnu/dist/postfix/src/util/myflock.h b/gnu/dist/postfix/src/util/myflock.h index 92c8c3e0f5af..624ea2d94040 100644 --- a/gnu/dist/postfix/src/util/myflock.h +++ b/gnu/dist/postfix/src/util/myflock.h @@ -1,5 +1,3 @@ -/* $NetBSD: myflock.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MYFLOCK_H_INCLUDED_ #define _MYFLOCK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/mymalloc.c b/gnu/dist/postfix/src/util/mymalloc.c index f9dd61b9696a..9e62213502ca 100644 --- a/gnu/dist/postfix/src/util/mymalloc.c +++ b/gnu/dist/postfix/src/util/mymalloc.c @@ -1,5 +1,3 @@ -/* $NetBSD: mymalloc.c,v 1.1.1.6 2007/05/19 16:28:47 heas Exp $ */ - /*++ /* NAME /* mymalloc 3 diff --git a/gnu/dist/postfix/src/util/mymalloc.h b/gnu/dist/postfix/src/util/mymalloc.h index c21eb6cdde0f..0c3216d5df60 100644 --- a/gnu/dist/postfix/src/util/mymalloc.h +++ b/gnu/dist/postfix/src/util/mymalloc.h @@ -1,5 +1,3 @@ -/* $NetBSD: mymalloc.h,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - #ifndef _MALLOC_H_INCLUDED_ #define _MALLOC_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/myrand.c b/gnu/dist/postfix/src/util/myrand.c index dbbec6e1cfbd..39fcbfd9e47e 100644 --- a/gnu/dist/postfix/src/util/myrand.c +++ b/gnu/dist/postfix/src/util/myrand.c @@ -1,5 +1,3 @@ -/* $NetBSD: myrand.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* myrand 3 diff --git a/gnu/dist/postfix/src/util/myrand.h b/gnu/dist/postfix/src/util/myrand.h index dd6e04daca75..4cc88db6440c 100644 --- a/gnu/dist/postfix/src/util/myrand.h +++ b/gnu/dist/postfix/src/util/myrand.h @@ -1,5 +1,3 @@ -/* $NetBSD: myrand.h,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _MYRAND_H_INCLUDED_ #define _MYRAND_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/mystrtok.c b/gnu/dist/postfix/src/util/mystrtok.c index 4bb354966e9b..a87a58cba97f 100644 --- a/gnu/dist/postfix/src/util/mystrtok.c +++ b/gnu/dist/postfix/src/util/mystrtok.c @@ -1,5 +1,3 @@ -/* $NetBSD: mystrtok.c,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* mystrtok 3 diff --git a/gnu/dist/postfix/src/util/name_code.c b/gnu/dist/postfix/src/util/name_code.c index 79e2779c89b1..0fd9f99cb42f 100644 --- a/gnu/dist/postfix/src/util/name_code.c +++ b/gnu/dist/postfix/src/util/name_code.c @@ -1,5 +1,3 @@ -/* $NetBSD: name_code.c,v 1.1.1.4 2008/06/22 14:04:06 christos Exp $ */ - /*++ /* NAME /* name_code 3 diff --git a/gnu/dist/postfix/src/util/name_code.h b/gnu/dist/postfix/src/util/name_code.h index b8dadcbf76d9..e08618d46446 100644 --- a/gnu/dist/postfix/src/util/name_code.h +++ b/gnu/dist/postfix/src/util/name_code.h @@ -1,5 +1,3 @@ -/* $NetBSD: name_code.h,v 1.1.1.3 2008/06/22 14:04:06 christos Exp $ */ - #ifndef _NAME_CODE_H_INCLUDED_ #define _NAME_CODE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/name_mask.c b/gnu/dist/postfix/src/util/name_mask.c index 722a8d67bfc6..9565461dbd49 100644 --- a/gnu/dist/postfix/src/util/name_mask.c +++ b/gnu/dist/postfix/src/util/name_mask.c @@ -1,5 +1,3 @@ -/* $NetBSD: name_mask.c,v 1.1.1.5 2008/06/22 14:04:06 christos Exp $ */ - /*++ /* NAME /* name_mask 3 diff --git a/gnu/dist/postfix/src/util/name_mask.h b/gnu/dist/postfix/src/util/name_mask.h index 88288cb65a8e..91df83f79b37 100644 --- a/gnu/dist/postfix/src/util/name_mask.h +++ b/gnu/dist/postfix/src/util/name_mask.h @@ -1,5 +1,3 @@ -/* $NetBSD: name_mask.h,v 1.1.1.5 2008/06/22 14:04:06 christos Exp $ */ - #ifndef _NAME_MASK_H_INCLUDED_ #define _NAME_MASK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/netstring.c b/gnu/dist/postfix/src/util/netstring.c index 3f48534b3540..55eaabcf59e1 100644 --- a/gnu/dist/postfix/src/util/netstring.c +++ b/gnu/dist/postfix/src/util/netstring.c @@ -1,5 +1,3 @@ -/* $NetBSD: netstring.c,v 1.1.1.4 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* netstring 3 diff --git a/gnu/dist/postfix/src/util/netstring.h b/gnu/dist/postfix/src/util/netstring.h index 50f096873fbc..e6908792ede0 100644 --- a/gnu/dist/postfix/src/util/netstring.h +++ b/gnu/dist/postfix/src/util/netstring.h @@ -1,5 +1,3 @@ -/* $NetBSD: netstring.h,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - #ifndef _NETSTRING_H_INCLUDED_ #define _NETSTRING_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/neuter.c b/gnu/dist/postfix/src/util/neuter.c index 3eb96d3fd653..53576fb7380d 100644 --- a/gnu/dist/postfix/src/util/neuter.c +++ b/gnu/dist/postfix/src/util/neuter.c @@ -1,5 +1,3 @@ -/* $NetBSD: neuter.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* neuter 3 diff --git a/gnu/dist/postfix/src/util/non_blocking.c b/gnu/dist/postfix/src/util/non_blocking.c index 4b3d17bb404c..6427cd80fc62 100644 --- a/gnu/dist/postfix/src/util/non_blocking.c +++ b/gnu/dist/postfix/src/util/non_blocking.c @@ -1,5 +1,3 @@ -/* $NetBSD: non_blocking.c,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* non_blocking 3 diff --git a/gnu/dist/postfix/src/util/nvtable.c b/gnu/dist/postfix/src/util/nvtable.c index 55cfc0bab6d1..693f693da680 100644 --- a/gnu/dist/postfix/src/util/nvtable.c +++ b/gnu/dist/postfix/src/util/nvtable.c @@ -1,5 +1,3 @@ -/* $NetBSD: nvtable.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* nvtable 3 diff --git a/gnu/dist/postfix/src/util/nvtable.h b/gnu/dist/postfix/src/util/nvtable.h index 8fa23c4abfd7..b2bccaf8ff4d 100644 --- a/gnu/dist/postfix/src/util/nvtable.h +++ b/gnu/dist/postfix/src/util/nvtable.h @@ -1,5 +1,3 @@ -/* $NetBSD: nvtable.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _NVTABLE_H_INCLUDED_ #define _NVTABLE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/open_as.c b/gnu/dist/postfix/src/util/open_as.c index ff9b712e8083..0fa84b797c7c 100644 --- a/gnu/dist/postfix/src/util/open_as.c +++ b/gnu/dist/postfix/src/util/open_as.c @@ -1,5 +1,3 @@ -/* $NetBSD: open_as.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* open_as 3 diff --git a/gnu/dist/postfix/src/util/open_as.h b/gnu/dist/postfix/src/util/open_as.h index 4cfecbfa9405..308e0094f3a5 100644 --- a/gnu/dist/postfix/src/util/open_as.h +++ b/gnu/dist/postfix/src/util/open_as.h @@ -1,5 +1,3 @@ -/* $NetBSD: open_as.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _OPEN_H_INCLUDED_ #define _OPEN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/open_limit.c b/gnu/dist/postfix/src/util/open_limit.c index f978eacb67d5..fa08b762bdf0 100644 --- a/gnu/dist/postfix/src/util/open_limit.c +++ b/gnu/dist/postfix/src/util/open_limit.c @@ -1,5 +1,3 @@ -/* $NetBSD: open_limit.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* open_limit 3 diff --git a/gnu/dist/postfix/src/util/open_lock.c b/gnu/dist/postfix/src/util/open_lock.c index 4ae9dd8b258f..87e852d9be6c 100644 --- a/gnu/dist/postfix/src/util/open_lock.c +++ b/gnu/dist/postfix/src/util/open_lock.c @@ -1,5 +1,3 @@ -/* $NetBSD: open_lock.c,v 1.1.1.3 2006/07/19 01:17:52 rpaulo Exp $ */ - /*++ /* NAME /* open_lock 3 diff --git a/gnu/dist/postfix/src/util/open_lock.h b/gnu/dist/postfix/src/util/open_lock.h index a3dba533bdb6..ada9f4d65242 100644 --- a/gnu/dist/postfix/src/util/open_lock.h +++ b/gnu/dist/postfix/src/util/open_lock.h @@ -1,5 +1,3 @@ -/* $NetBSD: open_lock.h,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - #ifndef _OPEN_LOCK_H_INCLUDED_ #define _OPEN_LOCK_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/peekfd.c b/gnu/dist/postfix/src/util/peekfd.c index d951f1e24c22..f142f262aa78 100644 --- a/gnu/dist/postfix/src/util/peekfd.c +++ b/gnu/dist/postfix/src/util/peekfd.c @@ -1,5 +1,3 @@ -/* $NetBSD: peekfd.c,v 1.1.1.4 2007/05/19 16:28:48 heas Exp $ */ - /*++ /* NAME /* peekfd 3 diff --git a/gnu/dist/postfix/src/util/percentm.c b/gnu/dist/postfix/src/util/percentm.c index a1734bc9270c..854f1869fe44 100644 --- a/gnu/dist/postfix/src/util/percentm.c +++ b/gnu/dist/postfix/src/util/percentm.c @@ -1,5 +1,3 @@ -/* $NetBSD: percentm.c,v 1.1.1.3 2006/07/19 01:17:54 rpaulo Exp $ */ - /*++ /* NAME /* percentm 3 diff --git a/gnu/dist/postfix/src/util/percentm.h b/gnu/dist/postfix/src/util/percentm.h index 6054b7e77592..d170e958661b 100644 --- a/gnu/dist/postfix/src/util/percentm.h +++ b/gnu/dist/postfix/src/util/percentm.h @@ -1,5 +1,3 @@ -/* $NetBSD: percentm.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _PERCENT_H_INCLUDED_ #define _PERCENT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/posix_signals.c b/gnu/dist/postfix/src/util/posix_signals.c index fe1eb19c6b5c..8ccddf0f7908 100644 --- a/gnu/dist/postfix/src/util/posix_signals.c +++ b/gnu/dist/postfix/src/util/posix_signals.c @@ -1,5 +1,3 @@ -/* $NetBSD: posix_signals.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* posix_signals 3 diff --git a/gnu/dist/postfix/src/util/posix_signals.h b/gnu/dist/postfix/src/util/posix_signals.h index cc4173cd249f..12c1664dba17 100644 --- a/gnu/dist/postfix/src/util/posix_signals.h +++ b/gnu/dist/postfix/src/util/posix_signals.h @@ -1,5 +1,3 @@ -/* $NetBSD: posix_signals.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _POSIX_SIGNALS_H_INCLUDED_ #define _POSIX_SIGNALS_H_INCLUDED_ /*++ diff --git a/gnu/dist/postfix/src/util/printable.c b/gnu/dist/postfix/src/util/printable.c index 010c666d234c..9e27f94d4bfa 100644 --- a/gnu/dist/postfix/src/util/printable.c +++ b/gnu/dist/postfix/src/util/printable.c @@ -1,5 +1,3 @@ -/* $NetBSD: printable.c,v 1.1.1.3 2005/08/18 21:10:35 rpaulo Exp $ */ - /*++ /* NAME /* printable 3 diff --git a/gnu/dist/postfix/src/util/rand_sleep.c b/gnu/dist/postfix/src/util/rand_sleep.c index bc4038ff46cf..69a8cc8ccaa6 100644 --- a/gnu/dist/postfix/src/util/rand_sleep.c +++ b/gnu/dist/postfix/src/util/rand_sleep.c @@ -1,5 +1,3 @@ -/* $NetBSD: rand_sleep.c,v 1.1.1.6 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* rand_sleep 3 diff --git a/gnu/dist/postfix/src/util/read_wait.c b/gnu/dist/postfix/src/util/read_wait.c index f84ea8d61e04..c94c1a06fd3e 100644 --- a/gnu/dist/postfix/src/util/read_wait.c +++ b/gnu/dist/postfix/src/util/read_wait.c @@ -1,5 +1,3 @@ -/* $NetBSD: read_wait.c,v 1.1.1.3 2007/05/19 16:28:48 heas Exp $ */ - /*++ /* NAME /* read_wait 3 diff --git a/gnu/dist/postfix/src/util/readable.c b/gnu/dist/postfix/src/util/readable.c index 2fd434eb8403..7d297403b03a 100644 --- a/gnu/dist/postfix/src/util/readable.c +++ b/gnu/dist/postfix/src/util/readable.c @@ -1,5 +1,3 @@ -/* $NetBSD: readable.c,v 1.1.1.3 2007/05/19 16:28:48 heas Exp $ */ - /*++ /* NAME /* readable 3 diff --git a/gnu/dist/postfix/src/util/readlline.c b/gnu/dist/postfix/src/util/readlline.c index c6bb93e31396..95bb29bb761c 100644 --- a/gnu/dist/postfix/src/util/readlline.c +++ b/gnu/dist/postfix/src/util/readlline.c @@ -1,5 +1,3 @@ -/* $NetBSD: readlline.c,v 1.1.1.6 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* readlline 3 diff --git a/gnu/dist/postfix/src/util/readlline.h b/gnu/dist/postfix/src/util/readlline.h index 46f701be1e66..8a8bd548711f 100644 --- a/gnu/dist/postfix/src/util/readlline.h +++ b/gnu/dist/postfix/src/util/readlline.h @@ -1,5 +1,3 @@ -/* $NetBSD: readlline.h,v 1.1.1.3 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _READLINE_H_INCLUDED_ #define _READLINE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/ring.c b/gnu/dist/postfix/src/util/ring.c index 0fa522a40807..d4c5f82aef1b 100644 --- a/gnu/dist/postfix/src/util/ring.c +++ b/gnu/dist/postfix/src/util/ring.c @@ -1,5 +1,3 @@ -/* $NetBSD: ring.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* ring 3 diff --git a/gnu/dist/postfix/src/util/ring.h b/gnu/dist/postfix/src/util/ring.h index 4bcfdff2ed66..47749e276af7 100644 --- a/gnu/dist/postfix/src/util/ring.h +++ b/gnu/dist/postfix/src/util/ring.h @@ -1,5 +1,3 @@ -/* $NetBSD: ring.h,v 1.1.1.4 2005/08/18 21:10:35 rpaulo Exp $ */ - #ifndef _RING_H_INCLUDED_ #define _RING_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/safe.h b/gnu/dist/postfix/src/util/safe.h index 4e80d521bf87..8b75bf43e321 100644 --- a/gnu/dist/postfix/src/util/safe.h +++ b/gnu/dist/postfix/src/util/safe.h @@ -1,5 +1,3 @@ -/* $NetBSD: safe.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _SAFE_H_INCLUDED_ #define _SAFE_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/safe_getenv.c b/gnu/dist/postfix/src/util/safe_getenv.c index 79ee9dcb447e..04ca6593536d 100644 --- a/gnu/dist/postfix/src/util/safe_getenv.c +++ b/gnu/dist/postfix/src/util/safe_getenv.c @@ -1,5 +1,3 @@ -/* $NetBSD: safe_getenv.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* safe_getenv 3 diff --git a/gnu/dist/postfix/src/util/safe_open.c b/gnu/dist/postfix/src/util/safe_open.c index b18d682b31d3..9cf5d0263033 100644 --- a/gnu/dist/postfix/src/util/safe_open.c +++ b/gnu/dist/postfix/src/util/safe_open.c @@ -1,5 +1,3 @@ -/* $NetBSD: safe_open.c,v 1.1.1.6 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* safe_open 3 @@ -85,6 +83,7 @@ #include #include #include +#include #include /* safe_open_exist - open existing file */ @@ -140,13 +139,29 @@ static VSTREAM *safe_open_exist(const char *path, int flags, * for symlinks owned by root. NEVER, NEVER, make exceptions for symlinks * owned by a non-root user. This would open a security hole when * delivering mail to a world-writable mailbox directory. + * + * Sebastian Krahmer of SuSE brought to my attention that some systems have + * changed their semantics of link(symlink, newpath), such that the + * result is a hardlink to the symlink. For this reason, we now also + * require that the symlink's parent directory is writable only by root. */ else if (lstat(path, &lstat_st) < 0) { vstring_sprintf(why, "file status changed unexpectedly: %m"); errno = EPERM; } else if (S_ISLNK(lstat_st.st_mode)) { - if (lstat_st.st_uid == 0) - return (fp); + if (lstat_st.st_uid == 0) { + VSTRING *parent_buf = vstring_alloc(100); + const char *parent_path = sane_dirname(parent_buf, path); + struct stat parent_st; + int parent_ok; + + parent_ok = (stat(parent_path, &parent_st) == 0 /* not lstat */ + && parent_st.st_uid == 0 + && (parent_st.st_mode & (S_IWGRP | S_IWOTH)) == 0); + vstring_free(parent_buf); + if (parent_ok) + return (fp); + } vstring_sprintf(why, "file is a symbolic link"); errno = EPERM; } else if (fstat_st->st_dev != lstat_st.st_dev diff --git a/gnu/dist/postfix/src/util/safe_open.h b/gnu/dist/postfix/src/util/safe_open.h index ee0d504f81b4..88b53449942a 100644 --- a/gnu/dist/postfix/src/util/safe_open.h +++ b/gnu/dist/postfix/src/util/safe_open.h @@ -1,5 +1,3 @@ -/* $NetBSD: safe_open.h,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - #ifndef _SAFE_OPEN_H_INCLUDED_ #define _SAFE_OPEN_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/sane_accept.c b/gnu/dist/postfix/src/util/sane_accept.c index ea489828c654..b1e6670d6f5d 100644 --- a/gnu/dist/postfix/src/util/sane_accept.c +++ b/gnu/dist/postfix/src/util/sane_accept.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_accept.c,v 1.1.1.8 2008/06/22 14:04:08 christos Exp $ */ - /*++ /* NAME /* sane_accept 3 diff --git a/gnu/dist/postfix/src/util/sane_accept.h b/gnu/dist/postfix/src/util/sane_accept.h index 246af9374fa9..84cc36034b5e 100644 --- a/gnu/dist/postfix/src/util/sane_accept.h +++ b/gnu/dist/postfix/src/util/sane_accept.h @@ -1,5 +1,3 @@ -/* $NetBSD: sane_accept.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _SANE_ACCEPT_H_ #define _SANE_ACCEPT_H_ diff --git a/gnu/dist/postfix/src/util/sane_basename.c b/gnu/dist/postfix/src/util/sane_basename.c index c5b2564aec12..6c3a4c19e430 100644 --- a/gnu/dist/postfix/src/util/sane_basename.c +++ b/gnu/dist/postfix/src/util/sane_basename.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_basename.c,v 1.1.1.1 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* sane_basename 3 diff --git a/gnu/dist/postfix/src/util/sane_connect.c b/gnu/dist/postfix/src/util/sane_connect.c index c95756e07880..513f97a03116 100644 --- a/gnu/dist/postfix/src/util/sane_connect.c +++ b/gnu/dist/postfix/src/util/sane_connect.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_connect.c,v 1.1.1.4 2008/06/22 14:04:08 christos Exp $ */ - /*++ /* NAME /* sane_connect 3 diff --git a/gnu/dist/postfix/src/util/sane_connect.h b/gnu/dist/postfix/src/util/sane_connect.h index 023e7fa3c72e..1f023b0e6e9d 100644 --- a/gnu/dist/postfix/src/util/sane_connect.h +++ b/gnu/dist/postfix/src/util/sane_connect.h @@ -1,5 +1,3 @@ -/* $NetBSD: sane_connect.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _SANE_CONNECT_H_ #define _SANE_CONNECT_H_ diff --git a/gnu/dist/postfix/src/util/sane_fsops.h b/gnu/dist/postfix/src/util/sane_fsops.h index d6a203f99205..0c9b3ac2a010 100644 --- a/gnu/dist/postfix/src/util/sane_fsops.h +++ b/gnu/dist/postfix/src/util/sane_fsops.h @@ -1,5 +1,3 @@ -/* $NetBSD: sane_fsops.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _SANE_FSOPS_H_ #define _SANE_FSOPS_H_ diff --git a/gnu/dist/postfix/src/util/sane_link.c b/gnu/dist/postfix/src/util/sane_link.c index e4f972f1512c..a094377ee322 100644 --- a/gnu/dist/postfix/src/util/sane_link.c +++ b/gnu/dist/postfix/src/util/sane_link.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_link.c,v 1.1.1.4 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* sane_link 3 diff --git a/gnu/dist/postfix/src/util/sane_rename.c b/gnu/dist/postfix/src/util/sane_rename.c index eb0e7503306e..7a458c3f263e 100644 --- a/gnu/dist/postfix/src/util/sane_rename.c +++ b/gnu/dist/postfix/src/util/sane_rename.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_rename.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* sane_rename 3 diff --git a/gnu/dist/postfix/src/util/sane_socketpair.c b/gnu/dist/postfix/src/util/sane_socketpair.c index 76573c457e32..a889934c38e9 100644 --- a/gnu/dist/postfix/src/util/sane_socketpair.c +++ b/gnu/dist/postfix/src/util/sane_socketpair.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_socketpair.c,v 1.1.1.3 2008/06/22 14:04:08 christos Exp $ */ - /*++ /* NAME /* sane_socketpair 3 diff --git a/gnu/dist/postfix/src/util/sane_socketpair.h b/gnu/dist/postfix/src/util/sane_socketpair.h index c1e553b5bd07..3c8e239a929e 100644 --- a/gnu/dist/postfix/src/util/sane_socketpair.h +++ b/gnu/dist/postfix/src/util/sane_socketpair.h @@ -1,5 +1,3 @@ -/* $NetBSD: sane_socketpair.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _SANE_SOCKETPAIR_H_ #define _SANE_SOCKETPAIR_H_ diff --git a/gnu/dist/postfix/src/util/sane_time.c b/gnu/dist/postfix/src/util/sane_time.c index 067e1c19f757..157c95e15bc2 100644 --- a/gnu/dist/postfix/src/util/sane_time.c +++ b/gnu/dist/postfix/src/util/sane_time.c @@ -1,5 +1,3 @@ -/* $NetBSD: sane_time.c,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - /*++ /* NAME /* sane_time 3 diff --git a/gnu/dist/postfix/src/util/sane_time.h b/gnu/dist/postfix/src/util/sane_time.h index 8d54446235d5..0fe50d90e113 100644 --- a/gnu/dist/postfix/src/util/sane_time.h +++ b/gnu/dist/postfix/src/util/sane_time.h @@ -1,5 +1,3 @@ -/* $NetBSD: sane_time.h,v 1.1.1.2 2004/05/31 00:25:00 heas Exp $ */ - #ifndef _SANE_TIME_H_ #define _SANE_TIME_H_ diff --git a/gnu/dist/postfix/src/util/scan_dir.c b/gnu/dist/postfix/src/util/scan_dir.c index 9eecd7ad0288..de124df5536d 100644 --- a/gnu/dist/postfix/src/util/scan_dir.c +++ b/gnu/dist/postfix/src/util/scan_dir.c @@ -1,5 +1,3 @@ -/* $NetBSD: scan_dir.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* scan_dir 3 diff --git a/gnu/dist/postfix/src/util/scan_dir.h b/gnu/dist/postfix/src/util/scan_dir.h index 8befc7d099a0..8f3bf8b98bc0 100644 --- a/gnu/dist/postfix/src/util/scan_dir.h +++ b/gnu/dist/postfix/src/util/scan_dir.h @@ -1,5 +1,3 @@ -/* $NetBSD: scan_dir.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _SCAN_DIR_H_INCLUDED_ #define _SCAN_DIR_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/select_bug.c b/gnu/dist/postfix/src/util/select_bug.c index deff5756901a..9b479ca451e2 100644 --- a/gnu/dist/postfix/src/util/select_bug.c +++ b/gnu/dist/postfix/src/util/select_bug.c @@ -1,5 +1,3 @@ -/* $NetBSD: select_bug.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* select_bug 1 diff --git a/gnu/dist/postfix/src/util/set_eugid.c b/gnu/dist/postfix/src/util/set_eugid.c index d7be637f7e2c..ef35380b503b 100644 --- a/gnu/dist/postfix/src/util/set_eugid.c +++ b/gnu/dist/postfix/src/util/set_eugid.c @@ -1,5 +1,3 @@ -/* $NetBSD: set_eugid.c,v 1.1.1.3 2008/06/22 14:04:09 christos Exp $ */ - /*++ /* NAME /* set_eugid 3 diff --git a/gnu/dist/postfix/src/util/set_eugid.h b/gnu/dist/postfix/src/util/set_eugid.h index ad351788e1fd..97a523e8c84c 100644 --- a/gnu/dist/postfix/src/util/set_eugid.h +++ b/gnu/dist/postfix/src/util/set_eugid.h @@ -1,5 +1,3 @@ -/* $NetBSD: set_eugid.h,v 1.1.1.3 2008/06/22 14:04:09 christos Exp $ */ - #ifndef _SET_EUGID_H_INCLUDED_ #define _SET_EUGID_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/set_ugid.c b/gnu/dist/postfix/src/util/set_ugid.c index 7ef378d9b376..bbcb901331c3 100644 --- a/gnu/dist/postfix/src/util/set_ugid.c +++ b/gnu/dist/postfix/src/util/set_ugid.c @@ -1,5 +1,3 @@ -/* $NetBSD: set_ugid.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* set_ugid 3 diff --git a/gnu/dist/postfix/src/util/set_ugid.h b/gnu/dist/postfix/src/util/set_ugid.h index 5f1ba84d54db..e752beb921a4 100644 --- a/gnu/dist/postfix/src/util/set_ugid.h +++ b/gnu/dist/postfix/src/util/set_ugid.h @@ -1,5 +1,3 @@ -/* $NetBSD: set_ugid.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _SET_UGID_H_INCLUDED_ #define _SET_UGID_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/sigdelay.c b/gnu/dist/postfix/src/util/sigdelay.c index da5c0eb3faf9..6f07a22acfc6 100644 --- a/gnu/dist/postfix/src/util/sigdelay.c +++ b/gnu/dist/postfix/src/util/sigdelay.c @@ -1,5 +1,3 @@ -/* $NetBSD: sigdelay.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* sigdelay 3 diff --git a/gnu/dist/postfix/src/util/sigdelay.h b/gnu/dist/postfix/src/util/sigdelay.h index 37a46311dd91..d3b4ea33b27f 100644 --- a/gnu/dist/postfix/src/util/sigdelay.h +++ b/gnu/dist/postfix/src/util/sigdelay.h @@ -1,5 +1,3 @@ -/* $NetBSD: sigdelay.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _SIGDELAY_H_INCLUDED_ #define _SIGDELAY_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/skipblanks.c b/gnu/dist/postfix/src/util/skipblanks.c index cdd440599b94..fc1928426da9 100644 --- a/gnu/dist/postfix/src/util/skipblanks.c +++ b/gnu/dist/postfix/src/util/skipblanks.c @@ -1,5 +1,3 @@ -/* $NetBSD: skipblanks.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* skipblanks 3 diff --git a/gnu/dist/postfix/src/util/sock_addr.c b/gnu/dist/postfix/src/util/sock_addr.c index 5039140e58a3..f80d082078b4 100644 --- a/gnu/dist/postfix/src/util/sock_addr.c +++ b/gnu/dist/postfix/src/util/sock_addr.c @@ -1,5 +1,3 @@ -/* $NetBSD: sock_addr.c,v 1.1.1.2 2006/11/07 02:59:30 rpaulo Exp $ */ - /*++ /* NAME /* sock_addr 3 diff --git a/gnu/dist/postfix/src/util/sock_addr.h b/gnu/dist/postfix/src/util/sock_addr.h index 027caaa64010..1f5407a4be9b 100644 --- a/gnu/dist/postfix/src/util/sock_addr.h +++ b/gnu/dist/postfix/src/util/sock_addr.h @@ -1,5 +1,3 @@ -/* $NetBSD: sock_addr.h,v 1.1.1.2 2006/11/07 02:59:30 rpaulo Exp $ */ - #ifndef _SOCK_ADDR_EQ_H_INCLUDED_ #define _SOCK_ADDR_EQ_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/spawn_command.c b/gnu/dist/postfix/src/util/spawn_command.c index 404d8d7ab22e..a45258224544 100644 --- a/gnu/dist/postfix/src/util/spawn_command.c +++ b/gnu/dist/postfix/src/util/spawn_command.c @@ -1,5 +1,3 @@ -/* $NetBSD: spawn_command.c,v 1.1.1.4 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* spawn_command 3 diff --git a/gnu/dist/postfix/src/util/spawn_command.h b/gnu/dist/postfix/src/util/spawn_command.h index 4cbda9ce07d8..9282528a6d16 100644 --- a/gnu/dist/postfix/src/util/spawn_command.h +++ b/gnu/dist/postfix/src/util/spawn_command.h @@ -1,5 +1,3 @@ -/* $NetBSD: spawn_command.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _SPAWN_COMMAND_H_INCLUDED_ #define _SPAWN_COMMAND_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/split_at.c b/gnu/dist/postfix/src/util/split_at.c index 140e2ccd299a..c75e90204da3 100644 --- a/gnu/dist/postfix/src/util/split_at.c +++ b/gnu/dist/postfix/src/util/split_at.c @@ -1,5 +1,3 @@ -/* $NetBSD: split_at.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* split_at 3 diff --git a/gnu/dist/postfix/src/util/split_at.h b/gnu/dist/postfix/src/util/split_at.h index 0f9a3726355e..2d03ebb2c71c 100644 --- a/gnu/dist/postfix/src/util/split_at.h +++ b/gnu/dist/postfix/src/util/split_at.h @@ -1,5 +1,3 @@ -/* $NetBSD: split_at.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _SPLIT_AT_H_INCLUDED_ #define _SPLIT_AT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/split_nameval.c b/gnu/dist/postfix/src/util/split_nameval.c index 6ce42f22c788..f3e519bad1e7 100644 --- a/gnu/dist/postfix/src/util/split_nameval.c +++ b/gnu/dist/postfix/src/util/split_nameval.c @@ -1,5 +1,3 @@ -/* $NetBSD: split_nameval.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* split_nameval 3 diff --git a/gnu/dist/postfix/src/util/stat_as.c b/gnu/dist/postfix/src/util/stat_as.c index d19630c2b7cf..0f578a541c3a 100644 --- a/gnu/dist/postfix/src/util/stat_as.c +++ b/gnu/dist/postfix/src/util/stat_as.c @@ -1,5 +1,3 @@ -/* $NetBSD: stat_as.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* stat_as 3 diff --git a/gnu/dist/postfix/src/util/stat_as.h b/gnu/dist/postfix/src/util/stat_as.h index 23e49af9ad86..aad37d30a057 100644 --- a/gnu/dist/postfix/src/util/stat_as.h +++ b/gnu/dist/postfix/src/util/stat_as.h @@ -1,5 +1,3 @@ -/* $NetBSD: stat_as.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _STAT_AS_H_INCLUDED_ #define _STAT_AS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/strcasecmp.c b/gnu/dist/postfix/src/util/strcasecmp.c index fb85019c0275..07e938191213 100644 --- a/gnu/dist/postfix/src/util/strcasecmp.c +++ b/gnu/dist/postfix/src/util/strcasecmp.c @@ -1,5 +1,3 @@ -/* $NetBSD: strcasecmp.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - /* * Copyright (c) 1987, 1993 * The Regents of the University of California. All rights reserved. diff --git a/gnu/dist/postfix/src/util/stream_connect.c b/gnu/dist/postfix/src/util/stream_connect.c index 9b61b2d2f50c..b8cc624222c2 100644 --- a/gnu/dist/postfix/src/util/stream_connect.c +++ b/gnu/dist/postfix/src/util/stream_connect.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream_connect.c,v 1.1.1.4 2007/05/19 16:28:48 heas Exp $ */ - /*++ /* NAME /* stream_connect 3 diff --git a/gnu/dist/postfix/src/util/stream_listen.c b/gnu/dist/postfix/src/util/stream_listen.c index 65a376f9c54d..5882c30d986b 100644 --- a/gnu/dist/postfix/src/util/stream_listen.c +++ b/gnu/dist/postfix/src/util/stream_listen.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream_listen.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* stream_listen 3 diff --git a/gnu/dist/postfix/src/util/stream_recv_fd.c b/gnu/dist/postfix/src/util/stream_recv_fd.c index 3dda253c4f41..185199c9c77a 100644 --- a/gnu/dist/postfix/src/util/stream_recv_fd.c +++ b/gnu/dist/postfix/src/util/stream_recv_fd.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream_recv_fd.c,v 1.1.1.2 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* stream_recv_fd 3 diff --git a/gnu/dist/postfix/src/util/stream_send_fd.c b/gnu/dist/postfix/src/util/stream_send_fd.c index 5bfcda0c4c5a..a056bb0a8937 100644 --- a/gnu/dist/postfix/src/util/stream_send_fd.c +++ b/gnu/dist/postfix/src/util/stream_send_fd.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream_send_fd.c,v 1.1.1.3 2007/05/19 16:28:48 heas Exp $ */ - /*++ /* NAME /* stream_send_fd 3 diff --git a/gnu/dist/postfix/src/util/stream_test.c b/gnu/dist/postfix/src/util/stream_test.c index dc2d786f1060..5c8f82fa4bf6 100644 --- a/gnu/dist/postfix/src/util/stream_test.c +++ b/gnu/dist/postfix/src/util/stream_test.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream_test.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - #include "sys_defs.h" #include #include diff --git a/gnu/dist/postfix/src/util/stream_trigger.c b/gnu/dist/postfix/src/util/stream_trigger.c index 3291cb39ff83..3d686e929759 100644 --- a/gnu/dist/postfix/src/util/stream_trigger.c +++ b/gnu/dist/postfix/src/util/stream_trigger.c @@ -1,5 +1,3 @@ -/* $NetBSD: stream_trigger.c,v 1.1.1.4 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* stream_trigger 3 diff --git a/gnu/dist/postfix/src/util/stringops.h b/gnu/dist/postfix/src/util/stringops.h index 8ad61f50eb06..8f96aa4b7a5c 100644 --- a/gnu/dist/postfix/src/util/stringops.h +++ b/gnu/dist/postfix/src/util/stringops.h @@ -1,5 +1,3 @@ -/* $NetBSD: stringops.h,v 1.1.1.5 2006/07/19 01:17:55 rpaulo Exp $ */ - #ifndef _STRINGOPS_H_INCLUDED_ #define _STRINGOPS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/sys_compat.c b/gnu/dist/postfix/src/util/sys_compat.c index 04ccb537bc6a..982798f50a6f 100644 --- a/gnu/dist/postfix/src/util/sys_compat.c +++ b/gnu/dist/postfix/src/util/sys_compat.c @@ -1,5 +1,3 @@ -/* $NetBSD: sys_compat.c,v 1.1.1.3 2005/08/18 21:10:41 rpaulo Exp $ */ - /*++ /* NAME /* sys_compat 3 diff --git a/gnu/dist/postfix/src/util/timed_connect.c b/gnu/dist/postfix/src/util/timed_connect.c index a63daa16f1ed..3446e4fa6bfc 100644 --- a/gnu/dist/postfix/src/util/timed_connect.c +++ b/gnu/dist/postfix/src/util/timed_connect.c @@ -1,5 +1,3 @@ -/* $NetBSD: timed_connect.c,v 1.1.1.4 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* timed_connect 3 diff --git a/gnu/dist/postfix/src/util/timed_connect.h b/gnu/dist/postfix/src/util/timed_connect.h index ac10d41215bf..76ac7159c602 100644 --- a/gnu/dist/postfix/src/util/timed_connect.h +++ b/gnu/dist/postfix/src/util/timed_connect.h @@ -1,5 +1,3 @@ -/* $NetBSD: timed_connect.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _TIMED_CONNECT_H_INCLUDED_ #define _TIMED_CONNECT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/timed_read.c b/gnu/dist/postfix/src/util/timed_read.c index b9a7b81bd866..fdae8fae401e 100644 --- a/gnu/dist/postfix/src/util/timed_read.c +++ b/gnu/dist/postfix/src/util/timed_read.c @@ -1,5 +1,3 @@ -/* $NetBSD: timed_read.c,v 1.1.1.4 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* timed_read 3 diff --git a/gnu/dist/postfix/src/util/timed_wait.c b/gnu/dist/postfix/src/util/timed_wait.c index 7a84e73baac9..45fbb69bf4cc 100644 --- a/gnu/dist/postfix/src/util/timed_wait.c +++ b/gnu/dist/postfix/src/util/timed_wait.c @@ -1,5 +1,3 @@ -/* $NetBSD: timed_wait.c,v 1.1.1.3 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* timed_wait 3 diff --git a/gnu/dist/postfix/src/util/timed_wait.h b/gnu/dist/postfix/src/util/timed_wait.h index 533da3ac51a0..bdbc270c6923 100644 --- a/gnu/dist/postfix/src/util/timed_wait.h +++ b/gnu/dist/postfix/src/util/timed_wait.h @@ -1,5 +1,3 @@ -/* $NetBSD: timed_wait.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _TIMED_WAIT_H_INCLUDED_ #define _TIMED_WAIT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/timed_write.c b/gnu/dist/postfix/src/util/timed_write.c index 87504610a94c..d46a8ab7030b 100644 --- a/gnu/dist/postfix/src/util/timed_write.c +++ b/gnu/dist/postfix/src/util/timed_write.c @@ -1,5 +1,3 @@ -/* $NetBSD: timed_write.c,v 1.1.1.4 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* timed_write 3 diff --git a/gnu/dist/postfix/src/util/translit.c b/gnu/dist/postfix/src/util/translit.c index 348289cb65ad..ba04bf22c5c1 100644 --- a/gnu/dist/postfix/src/util/translit.c +++ b/gnu/dist/postfix/src/util/translit.c @@ -1,5 +1,3 @@ -/* $NetBSD: translit.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* translit 3 diff --git a/gnu/dist/postfix/src/util/trigger.h b/gnu/dist/postfix/src/util/trigger.h index fa7edf8be100..bd3e45d4f3b3 100644 --- a/gnu/dist/postfix/src/util/trigger.h +++ b/gnu/dist/postfix/src/util/trigger.h @@ -1,5 +1,3 @@ -/* $NetBSD: trigger.h,v 1.1.1.4 2008/06/22 14:04:10 christos Exp $ */ - #ifndef _TRIGGER_H_INCLUDED_ #define _TRIGGER_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/trimblanks.c b/gnu/dist/postfix/src/util/trimblanks.c index 832521fbb6d3..8d0eae8a64f4 100644 --- a/gnu/dist/postfix/src/util/trimblanks.c +++ b/gnu/dist/postfix/src/util/trimblanks.c @@ -1,5 +1,3 @@ -/* $NetBSD: trimblanks.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* trimblanks 3 diff --git a/gnu/dist/postfix/src/util/unescape.c b/gnu/dist/postfix/src/util/unescape.c index 9a8f7ec25422..025df5674608 100644 --- a/gnu/dist/postfix/src/util/unescape.c +++ b/gnu/dist/postfix/src/util/unescape.c @@ -1,5 +1,3 @@ -/* $NetBSD: unescape.c,v 1.1.1.4 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* unescape 3 diff --git a/gnu/dist/postfix/src/util/unix_connect.c b/gnu/dist/postfix/src/util/unix_connect.c index 834927a5b394..68de86d32700 100644 --- a/gnu/dist/postfix/src/util/unix_connect.c +++ b/gnu/dist/postfix/src/util/unix_connect.c @@ -1,5 +1,3 @@ -/* $NetBSD: unix_connect.c,v 1.1.1.5 2008/06/22 14:04:10 christos Exp $ */ - /*++ /* NAME /* unix_connect 3 diff --git a/gnu/dist/postfix/src/util/unix_listen.c b/gnu/dist/postfix/src/util/unix_listen.c index af7ee0df539a..74e1a4f173e0 100644 --- a/gnu/dist/postfix/src/util/unix_listen.c +++ b/gnu/dist/postfix/src/util/unix_listen.c @@ -1,5 +1,3 @@ -/* $NetBSD: unix_listen.c,v 1.1.1.3 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* unix_listen 3 diff --git a/gnu/dist/postfix/src/util/unix_recv_fd.c b/gnu/dist/postfix/src/util/unix_recv_fd.c index 3360a33acbe0..7958489c4fe8 100644 --- a/gnu/dist/postfix/src/util/unix_recv_fd.c +++ b/gnu/dist/postfix/src/util/unix_recv_fd.c @@ -1,5 +1,3 @@ -/* $NetBSD: unix_recv_fd.c,v 1.1.1.2 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* unix_recv_fd 3 diff --git a/gnu/dist/postfix/src/util/unix_send_fd.c b/gnu/dist/postfix/src/util/unix_send_fd.c index f0f821cd5beb..a598b4496211 100644 --- a/gnu/dist/postfix/src/util/unix_send_fd.c +++ b/gnu/dist/postfix/src/util/unix_send_fd.c @@ -1,5 +1,3 @@ -/* $NetBSD: unix_send_fd.c,v 1.1.1.2 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* unix_send_fd 3 diff --git a/gnu/dist/postfix/src/util/unix_trigger.c b/gnu/dist/postfix/src/util/unix_trigger.c index e74c96f53257..ab1897a4513c 100644 --- a/gnu/dist/postfix/src/util/unix_trigger.c +++ b/gnu/dist/postfix/src/util/unix_trigger.c @@ -1,5 +1,3 @@ -/* $NetBSD: unix_trigger.c,v 1.1.1.4 2006/07/19 01:17:56 rpaulo Exp $ */ - /*++ /* NAME /* unix_trigger 3 diff --git a/gnu/dist/postfix/src/util/unsafe.c b/gnu/dist/postfix/src/util/unsafe.c index 9b01d85a7884..8d3f34ad02ac 100644 --- a/gnu/dist/postfix/src/util/unsafe.c +++ b/gnu/dist/postfix/src/util/unsafe.c @@ -1,5 +1,3 @@ -/* $NetBSD: unsafe.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* unsafe 3 diff --git a/gnu/dist/postfix/src/util/upass_connect.c b/gnu/dist/postfix/src/util/upass_connect.c index 2d2a1e6b980d..4efd837a9b3a 100644 --- a/gnu/dist/postfix/src/util/upass_connect.c +++ b/gnu/dist/postfix/src/util/upass_connect.c @@ -1,5 +1,3 @@ -/* $NetBSD: upass_connect.c,v 1.1.1.1 2008/06/22 14:04:11 christos Exp $ */ - /*++ /* NAME /* upass_connect 3 diff --git a/gnu/dist/postfix/src/util/upass_listen.c b/gnu/dist/postfix/src/util/upass_listen.c index 80aec3658ec9..5eab759cbc87 100644 --- a/gnu/dist/postfix/src/util/upass_listen.c +++ b/gnu/dist/postfix/src/util/upass_listen.c @@ -1,5 +1,3 @@ -/* $NetBSD: upass_listen.c,v 1.1.1.2 2007/05/19 16:28:49 heas Exp $ */ - /*++ /* NAME /* upass_listen 3 diff --git a/gnu/dist/postfix/src/util/upass_trigger.c b/gnu/dist/postfix/src/util/upass_trigger.c index 5ed4d07700e9..2532f2bf35ac 100644 --- a/gnu/dist/postfix/src/util/upass_trigger.c +++ b/gnu/dist/postfix/src/util/upass_trigger.c @@ -1,5 +1,3 @@ -/* $NetBSD: upass_trigger.c,v 1.1.1.1 2008/06/22 14:04:11 christos Exp $ */ - /*++ /* NAME /* upass_trigger 3 diff --git a/gnu/dist/postfix/src/util/uppercase.c b/gnu/dist/postfix/src/util/uppercase.c index f287ed813b1e..9c6162262dc5 100644 --- a/gnu/dist/postfix/src/util/uppercase.c +++ b/gnu/dist/postfix/src/util/uppercase.c @@ -1,5 +1,3 @@ -/* $NetBSD: uppercase.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* uppercase 3 diff --git a/gnu/dist/postfix/src/util/username.c b/gnu/dist/postfix/src/util/username.c index 0174782565f0..680161c256ab 100644 --- a/gnu/dist/postfix/src/util/username.c +++ b/gnu/dist/postfix/src/util/username.c @@ -1,5 +1,3 @@ -/* $NetBSD: username.c,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - /*++ /* NAME /* username 3 diff --git a/gnu/dist/postfix/src/util/username.h b/gnu/dist/postfix/src/util/username.h index 38bf3b99344f..648be45e6a4b 100644 --- a/gnu/dist/postfix/src/util/username.h +++ b/gnu/dist/postfix/src/util/username.h @@ -1,5 +1,3 @@ -/* $NetBSD: username.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _USERNAME_H_INCLUDED_ #define _USERNAME_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/valid_hostname.h b/gnu/dist/postfix/src/util/valid_hostname.h index 7f4cce7e31d1..8860153b595f 100644 --- a/gnu/dist/postfix/src/util/valid_hostname.h +++ b/gnu/dist/postfix/src/util/valid_hostname.h @@ -1,5 +1,3 @@ -/* $NetBSD: valid_hostname.h,v 1.1.1.4 2005/08/18 21:10:45 rpaulo Exp $ */ - #ifndef _VALID_HOSTNAME_H_INCLUDED_ #define _VALID_HOSTNAME_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/vbuf.c b/gnu/dist/postfix/src/util/vbuf.c index d7cf4f7f02f4..22eaffbc5f75 100644 --- a/gnu/dist/postfix/src/util/vbuf.c +++ b/gnu/dist/postfix/src/util/vbuf.c @@ -1,5 +1,3 @@ -/* $NetBSD: vbuf.c,v 1.1.1.3 2006/07/19 01:17:55 rpaulo Exp $ */ - /*++ /* NAME /* vbuf 3 diff --git a/gnu/dist/postfix/src/util/vbuf.h b/gnu/dist/postfix/src/util/vbuf.h index 17d425475c48..6052b4ed7542 100644 --- a/gnu/dist/postfix/src/util/vbuf.h +++ b/gnu/dist/postfix/src/util/vbuf.h @@ -1,5 +1,3 @@ -/* $NetBSD: vbuf.h,v 1.1.1.4 2007/05/19 16:28:49 heas Exp $ */ - #ifndef _VBUF_H_INCLUDED_ #define _VBUF_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/vbuf_print.c b/gnu/dist/postfix/src/util/vbuf_print.c index 66e862a0c66d..8b9878d33a79 100644 --- a/gnu/dist/postfix/src/util/vbuf_print.c +++ b/gnu/dist/postfix/src/util/vbuf_print.c @@ -1,5 +1,3 @@ -/* $NetBSD: vbuf_print.c,v 1.1.1.5 2006/12/21 02:35:19 rpaulo Exp $ */ - /*++ /* NAME /* vbuf_print 3 diff --git a/gnu/dist/postfix/src/util/vbuf_print.h b/gnu/dist/postfix/src/util/vbuf_print.h index 60d0106b59aa..32549c1423df 100644 --- a/gnu/dist/postfix/src/util/vbuf_print.h +++ b/gnu/dist/postfix/src/util/vbuf_print.h @@ -1,5 +1,3 @@ -/* $NetBSD: vbuf_print.h,v 1.1.1.2 2004/05/31 00:25:01 heas Exp $ */ - #ifndef _VBUF_PRINT_H_INCLUDED_ #define _VBUF_PRINT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/vstream.c b/gnu/dist/postfix/src/util/vstream.c index 39a5228efa5a..970beba62088 100644 --- a/gnu/dist/postfix/src/util/vstream.c +++ b/gnu/dist/postfix/src/util/vstream.c @@ -1,5 +1,3 @@ -/* $NetBSD: vstream.c,v 1.1.1.10 2008/06/22 14:04:14 christos Exp $ */ - /*++ /* NAME /* vstream 3 diff --git a/gnu/dist/postfix/src/util/vstream.h b/gnu/dist/postfix/src/util/vstream.h index 46bf6558abd4..b8cdca7a5e65 100644 --- a/gnu/dist/postfix/src/util/vstream.h +++ b/gnu/dist/postfix/src/util/vstream.h @@ -1,5 +1,3 @@ -/* $NetBSD: vstream.h,v 1.1.1.9 2008/06/22 14:04:14 christos Exp $ */ - #ifndef _VSTREAM_H_INCLUDED_ #define _VSTREAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/vstream_popen.c b/gnu/dist/postfix/src/util/vstream_popen.c index c6ccefcc9ae2..aace6c82cdcc 100644 --- a/gnu/dist/postfix/src/util/vstream_popen.c +++ b/gnu/dist/postfix/src/util/vstream_popen.c @@ -1,5 +1,3 @@ -/* $NetBSD: vstream_popen.c,v 1.1.1.4 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* vstream_popen 3 diff --git a/gnu/dist/postfix/src/util/vstring.c b/gnu/dist/postfix/src/util/vstring.c index 6c3da9c673b9..2a32343970cd 100644 --- a/gnu/dist/postfix/src/util/vstring.c +++ b/gnu/dist/postfix/src/util/vstring.c @@ -1,5 +1,3 @@ -/* $NetBSD: vstring.c,v 1.1.1.6 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* vstring 3 @@ -626,6 +624,7 @@ VSTRING *vstring_sprintf_prepend(VSTRING *vp, const char *format,...) result_len = VSTRING_LEN(vp); /* Construct: old|new|old|free */ + VSTRING_SPACE(vp, old_len); vstring_memcat(vp, vstring_str(vp), old_len); /* Construct: new|old|free */ diff --git a/gnu/dist/postfix/src/util/vstring.h b/gnu/dist/postfix/src/util/vstring.h index d0b5ba6c958e..30b463d1ec19 100644 --- a/gnu/dist/postfix/src/util/vstring.h +++ b/gnu/dist/postfix/src/util/vstring.h @@ -1,5 +1,3 @@ -/* $NetBSD: vstring.h,v 1.1.1.5 2006/07/19 01:17:57 rpaulo Exp $ */ - #ifndef _VSTRING_H_INCLUDED_ #define _VSTRING_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/vstring_vstream.c b/gnu/dist/postfix/src/util/vstring_vstream.c index 026cdbad9d90..36c9134725b2 100644 --- a/gnu/dist/postfix/src/util/vstring_vstream.c +++ b/gnu/dist/postfix/src/util/vstring_vstream.c @@ -1,5 +1,3 @@ -/* $NetBSD: vstring_vstream.c,v 1.1.1.5 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* vstring_vstream 3 diff --git a/gnu/dist/postfix/src/util/vstring_vstream.h b/gnu/dist/postfix/src/util/vstring_vstream.h index e5c377c43622..9bd9d7127cfc 100644 --- a/gnu/dist/postfix/src/util/vstring_vstream.h +++ b/gnu/dist/postfix/src/util/vstring_vstream.h @@ -1,5 +1,3 @@ -/* $NetBSD: vstring_vstream.h,v 1.1.1.4 2006/07/19 01:17:57 rpaulo Exp $ */ - #ifndef _VSTRING_VSTREAM_H_INCLUDED_ #define _VSTRING_VSTREAM_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/watchdog.c b/gnu/dist/postfix/src/util/watchdog.c index 225b34a478a8..a1ab0cf1edaf 100644 --- a/gnu/dist/postfix/src/util/watchdog.c +++ b/gnu/dist/postfix/src/util/watchdog.c @@ -1,5 +1,3 @@ -/* $NetBSD: watchdog.c,v 1.1.1.6 2007/05/19 16:28:50 heas Exp $ */ - /*++ /* NAME /* watchdog 3 diff --git a/gnu/dist/postfix/src/util/watchdog.h b/gnu/dist/postfix/src/util/watchdog.h index 06fa6bc29647..ee01faf9f813 100644 --- a/gnu/dist/postfix/src/util/watchdog.h +++ b/gnu/dist/postfix/src/util/watchdog.h @@ -1,5 +1,3 @@ -/* $NetBSD: watchdog.h,v 1.1.1.2 2004/05/31 00:25:02 heas Exp $ */ - #ifndef _WATCHDOG_H_INCLUDED_ #define _WATCHDOG_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/util/writable.c b/gnu/dist/postfix/src/util/writable.c index 312c4a00a272..f37eb22296c4 100644 --- a/gnu/dist/postfix/src/util/writable.c +++ b/gnu/dist/postfix/src/util/writable.c @@ -1,5 +1,3 @@ -/* $NetBSD: writable.c,v 1.1.1.4 2007/05/19 16:28:50 heas Exp $ */ - /*++ /* NAME /* writable 3 diff --git a/gnu/dist/postfix/src/util/write_buf.c b/gnu/dist/postfix/src/util/write_buf.c index 54f5e42f4f08..7674095da02c 100644 --- a/gnu/dist/postfix/src/util/write_buf.c +++ b/gnu/dist/postfix/src/util/write_buf.c @@ -1,5 +1,3 @@ -/* $NetBSD: write_buf.c,v 1.1.1.3 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* write_buf 3 diff --git a/gnu/dist/postfix/src/util/write_wait.c b/gnu/dist/postfix/src/util/write_wait.c index dd642d640676..1a42c126ef7d 100644 --- a/gnu/dist/postfix/src/util/write_wait.c +++ b/gnu/dist/postfix/src/util/write_wait.c @@ -1,5 +1,3 @@ -/* $NetBSD: write_wait.c,v 1.1.1.3 2007/05/19 16:28:50 heas Exp $ */ - /*++ /* NAME /* write_wait 3 diff --git a/gnu/dist/postfix/src/verify/verify.c b/gnu/dist/postfix/src/verify/verify.c index aeef657da5ab..bf1680cc2f56 100644 --- a/gnu/dist/postfix/src/verify/verify.c +++ b/gnu/dist/postfix/src/verify/verify.c @@ -1,5 +1,3 @@ -/* $NetBSD: verify.c,v 1.1.1.7 2008/06/22 14:04:15 christos Exp $ */ - /*++ /* NAME /* verify 8 diff --git a/gnu/dist/postfix/src/virtual/deliver_attr.c b/gnu/dist/postfix/src/virtual/deliver_attr.c index dc3ee1f3fa3f..3a5c0af3f9c2 100644 --- a/gnu/dist/postfix/src/virtual/deliver_attr.c +++ b/gnu/dist/postfix/src/virtual/deliver_attr.c @@ -1,5 +1,3 @@ -/* $NetBSD: deliver_attr.c,v 1.1.1.3 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* deliver_attr 3 diff --git a/gnu/dist/postfix/src/virtual/mailbox.c b/gnu/dist/postfix/src/virtual/mailbox.c index aebb5fb7ff42..f0ad6eb4a264 100644 --- a/gnu/dist/postfix/src/virtual/mailbox.c +++ b/gnu/dist/postfix/src/virtual/mailbox.c @@ -1,5 +1,3 @@ -/* $NetBSD: mailbox.c,v 1.1.1.5 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* mailbox 3 @@ -127,6 +125,12 @@ static int deliver_mailbox_file(LOCAL_STATE state, USER_ATTR usr_attr) msg_warn("recipient %s: destination %s is not a regular file", state.msg_attr.rcpt.address, usr_attr.mailbox); dsb_simple(why, "5.3.5", "mail system configuration error"); + } else if (var_strict_mbox_owner && st.st_uid != usr_attr.uid) { + vstream_fclose(mp->fp); + dsb_simple(why, "4.2.0", + "destination %s is not owned by recipient", usr_attr.mailbox); + msg_warn("specify \"%s = no\" to ignore mailbox ownership mismatch", + VAR_STRICT_MBOX_OWNER); } else { end = vstream_fseek(mp->fp, (off_t) 0, SEEK_END); mail_copy_status = mail_copy(COPY_ATTR(state.msg_attr), mp->fp, diff --git a/gnu/dist/postfix/src/virtual/maildir.c b/gnu/dist/postfix/src/virtual/maildir.c index b10c14dcc1ff..a44d09953826 100644 --- a/gnu/dist/postfix/src/virtual/maildir.c +++ b/gnu/dist/postfix/src/virtual/maildir.c @@ -1,5 +1,3 @@ -/* $NetBSD: maildir.c,v 1.1.1.8 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* maildir 3 diff --git a/gnu/dist/postfix/src/virtual/recipient.c b/gnu/dist/postfix/src/virtual/recipient.c index d36517e9361d..560a77a49578 100644 --- a/gnu/dist/postfix/src/virtual/recipient.c +++ b/gnu/dist/postfix/src/virtual/recipient.c @@ -1,5 +1,3 @@ -/* $NetBSD: recipient.c,v 1.1.1.3 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* recipient 3 diff --git a/gnu/dist/postfix/src/virtual/unknown.c b/gnu/dist/postfix/src/virtual/unknown.c index 9cc4fe1d5335..ad8d64a3c82a 100644 --- a/gnu/dist/postfix/src/virtual/unknown.c +++ b/gnu/dist/postfix/src/virtual/unknown.c @@ -1,5 +1,3 @@ -/* $NetBSD: unknown.c,v 1.1.1.4 2006/07/19 01:17:57 rpaulo Exp $ */ - /*++ /* NAME /* unknown 3 diff --git a/gnu/dist/postfix/src/virtual/virtual.c b/gnu/dist/postfix/src/virtual/virtual.c index 56341b5642d2..835f53bf7b42 100644 --- a/gnu/dist/postfix/src/virtual/virtual.c +++ b/gnu/dist/postfix/src/virtual/virtual.c @@ -1,5 +1,3 @@ -/* $NetBSD: virtual.c,v 1.1.1.10 2008/06/22 14:04:16 christos Exp $ */ - /*++ /* NAME /* virtual 8 @@ -185,6 +183,10 @@ /* .IP "\fBvirtual_transport (virtual)\fR" /* The default mail delivery transport and next-hop destination for /* final delivery to domains listed with $virtual_mailbox_domains. +/* .PP +/* Available in Postfix version 2.5.3 and later: +/* .IP "\fBstrict_mailbox_ownership (yes)\fR" +/* Defer delivery when a mailbox file is not owned by its recipient. /* LOCKING CONTROLS /* .ad /* .fi @@ -331,6 +333,7 @@ char *var_virt_mailbox_base; char *var_virt_mailbox_lock; int var_virt_mailbox_limit; char *var_mail_spool_dir; /* XXX dependency fix */ +bool var_strict_mbox_owner; /* * Mappings. @@ -506,6 +509,10 @@ int main(int argc, char **argv) VAR_VIRT_MAILBOX_LOCK, DEF_VIRT_MAILBOX_LOCK, &var_virt_mailbox_lock, 1, 0, 0, }; + static const CONFIG_BOOL_TABLE bool_table[] = { + VAR_STRICT_MBOX_OWNER, DEF_STRICT_MBOX_OWNER, &var_strict_mbox_owner, + 0, + }; /* * Fingerprint executables and core dumps. @@ -515,6 +522,7 @@ int main(int argc, char **argv) single_server_main(argc, argv, local_service, MAIL_SERVER_INT_TABLE, int_table, MAIL_SERVER_STR_TABLE, str_table, + MAIL_SERVER_BOOL_TABLE, bool_table, MAIL_SERVER_PRE_INIT, pre_init, MAIL_SERVER_POST_INIT, post_init, MAIL_SERVER_PRE_ACCEPT, pre_accept, diff --git a/gnu/dist/postfix/src/virtual/virtual.h b/gnu/dist/postfix/src/virtual/virtual.h index 170426c339b7..75dd6cd2ede1 100644 --- a/gnu/dist/postfix/src/virtual/virtual.h +++ b/gnu/dist/postfix/src/virtual/virtual.h @@ -1,5 +1,3 @@ -/* $NetBSD: virtual.h,v 1.1.1.5 2006/07/19 01:17:58 rpaulo Exp $ */ - /*++ /* NAME /* virtual 3h diff --git a/gnu/dist/postfix/src/xsasl/xsasl.h b/gnu/dist/postfix/src/xsasl/xsasl.h index f4f7e30dcfd6..291ff8edd0a2 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl.h +++ b/gnu/dist/postfix/src/xsasl/xsasl.h @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl.h,v 1.1.1.1 2006/07/19 01:17:58 rpaulo Exp $ */ - #ifndef _XSASL_H_INCLUDED_ #define _XSASL_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/xsasl/xsasl_client.c b/gnu/dist/postfix/src/xsasl/xsasl_client.c index 3220ce6c743f..d45e28dc17af 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_client.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_client.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_client.c,v 1.1.1.2 2008/06/22 14:04:17 christos Exp $ */ - /*++ /* NAME /* xsasl_client 3 diff --git a/gnu/dist/postfix/src/xsasl/xsasl_cyrus.h b/gnu/dist/postfix/src/xsasl/xsasl_cyrus.h index 85ff4d73598d..5e78dcd2b8db 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_cyrus.h +++ b/gnu/dist/postfix/src/xsasl/xsasl_cyrus.h @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_cyrus.h,v 1.1.1.1 2006/07/19 01:17:58 rpaulo Exp $ */ - #ifndef _XSASL_CYRUS_H_INCLUDED_ #define _XSASL_CYRUS_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_client.c b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_client.c index 1f73c6d5f9eb..c496f8f334b6 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_client.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_client.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_cyrus_client.c,v 1.1.1.4 2008/06/22 14:04:17 christos Exp $ */ - /*++ /* NAME /* xsasl_cyrus_client 3 diff --git a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_common.h b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_common.h index a53c4188abbc..544737822894 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_common.h +++ b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_common.h @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_cyrus_common.h,v 1.1.1.1 2006/07/19 01:17:58 rpaulo Exp $ */ - #ifndef _CYRUS_COMMON_H_INCLUDED_ #define _CYRUS_COMMON_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_log.c b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_log.c index 6c0e30cedaf7..7bf25c368e52 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_log.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_log.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_cyrus_log.c,v 1.1.1.1 2006/07/19 01:17:58 rpaulo Exp $ */ - /*++ /* NAME /* xsasl_cyrus_log 3 diff --git a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_security.c b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_security.c index d6d97c0146ca..617ff2fd9871 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_security.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_security.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_cyrus_security.c,v 1.1.1.2 2008/06/22 14:04:17 christos Exp $ */ - /*++ /* NAME /* xsasl_cyrus_security 3 diff --git a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_server.c b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_server.c index d8e9fc0c0c65..d3b802107918 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_cyrus_server.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_cyrus_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_cyrus_server.c,v 1.1.1.2 2008/06/22 14:04:18 christos Exp $ */ - /*++ /* NAME /* xsasl_cyrus_server 3 diff --git a/gnu/dist/postfix/src/xsasl/xsasl_dovecot.h b/gnu/dist/postfix/src/xsasl/xsasl_dovecot.h index dc39724e4f13..f99850e922a8 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_dovecot.h +++ b/gnu/dist/postfix/src/xsasl/xsasl_dovecot.h @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_dovecot.h,v 1.1.1.1 2006/07/19 01:17:58 rpaulo Exp $ */ - #ifndef _XSASL_DOVECOT_H_INCLUDED_ #define _XSASL_DOVECOT_H_INCLUDED_ diff --git a/gnu/dist/postfix/src/xsasl/xsasl_dovecot_server.c b/gnu/dist/postfix/src/xsasl/xsasl_dovecot_server.c index ee9dfd5258f9..810cb8c7f7a6 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_dovecot_server.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_dovecot_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_dovecot_server.c,v 1.1.1.2 2008/06/22 14:04:18 christos Exp $ */ - /*++ /* NAME /* xsasl_dovecot_server 3 diff --git a/gnu/dist/postfix/src/xsasl/xsasl_server.c b/gnu/dist/postfix/src/xsasl/xsasl_server.c index c8e5f500b490..28204f7bb8e9 100644 --- a/gnu/dist/postfix/src/xsasl/xsasl_server.c +++ b/gnu/dist/postfix/src/xsasl/xsasl_server.c @@ -1,5 +1,3 @@ -/* $NetBSD: xsasl_server.c,v 1.1.1.2 2008/06/22 14:04:18 christos Exp $ */ - /*++ /* NAME /* xsasl-server 3