pkgsrc/mail/mess822/patches/patch-aa
schmonz fd4b1ade8d Initial import of mess822-0.58.
mess822 is a library for parsing Internet mail messages. The mess822
package contains several applications that work with qmail:

* ofmipd rewrites messages from dumb clients. It supports a database
    of recognized senders and From lines, using cdb for fast lookups.

* new-inject is an experimental new version of qmail-inject. It
    includes a flexible user-controlled hostname rewriting mechanism.

* iftocc can be used in .qmail files. It checks whether a known
    address is listed in To or Cc.

* 822header, 822field, 822date, and 822received extract various
    pieces of information from a mail message.

* 822print converts a message into an easier-to-read format.

mess822 supports the full complexity of RFC 822 address lists,
including address groups, source routes, spaces around dots, etc.
It also supports common RFC 822 extensions: backslashes in atoms,
dots in phrases, addresses without host names, etc. It extracts
each address as an easy-to-use string, with a separate string for
the accompanying comment.
2004-07-26 23:26:27 +00:00

45 lines
1.5 KiB
Text

$NetBSD: patch-aa,v 1.1.1.1 2004/07/26 23:26:27 schmonz Exp $
--- hier.c.orig 1998-09-04 22:33:37.000000000 -0400
+++ hier.c
@@ -2,20 +2,20 @@
void hier()
{
- h(auto_home,-1,-1,02755);
+ h(auto_home,-1,-1,0755);
- d(auto_home,"bin",-1,-1,02755);
- d(auto_home,"lib",-1,-1,02755);
- d(auto_home,"include",-1,-1,02755);
- d(auto_home,"man",-1,-1,02755);
- d(auto_home,"man/man1",-1,-1,02755);
- d(auto_home,"man/man3",-1,-1,02755);
- d(auto_home,"man/man5",-1,-1,02755);
- d(auto_home,"man/man8",-1,-1,02755);
- d(auto_home,"man/cat1",-1,-1,02755);
- d(auto_home,"man/cat3",-1,-1,02755);
- d(auto_home,"man/cat5",-1,-1,02755);
- d(auto_home,"man/cat8",-1,-1,02755);
+ d(auto_home,"bin",-1,-1,0755);
+ d(auto_home,"lib",-1,-1,0755);
+ d(auto_home,"include",-1,-1,0755);
+ d(auto_home,"man",-1,-1,0755);
+ d(auto_home,"man/man1",-1,-1,0755);
+ d(auto_home,"man/man3",-1,-1,0755);
+ d(auto_home,"man/man5",-1,-1,0755);
+ d(auto_home,"man/man8",-1,-1,0755);
+ d(auto_home,"man/cat1",-1,-1,0755);
+ d(auto_home,"man/cat3",-1,-1,0755);
+ d(auto_home,"man/cat5",-1,-1,0755);
+ d(auto_home,"man/cat8",-1,-1,0755);
c(auto_home,"lib","mess822.a",-1,-1,0644);
c(auto_home,"include","mess822.h",-1,-1,0644);
@@ -66,5 +66,5 @@ void hier()
c(auto_home,"man/cat3","mess822_token.0",-1,-1,0644);
c(auto_home,"man/cat3","mess822_when.0",-1,-1,0644);
- c("/etc",".","leapsecs.dat",-1,-1,0644);
+ c(auto_home,"share/examples/mess822","leapsecs.dat",-1,-1,0644);
}