This commit is contained in:
camield 2000-03-14 08:17:39 +00:00
parent 27792fbd72
commit 4c39e9f407
3 changed files with 44 additions and 25 deletions

View File

@ -1,24 +1,27 @@
# $OpenBSD: Makefile,v 1.4 2000/03/05 18:30:32 espie Exp $
# $OpenBSD: Makefile,v 1.5 2000/03/14 08:17:39 camield Exp $
DISTNAME= mess822-0.58
HOMEPAGE= http://cr.yp.to/mess822.html
CATEGORIES= mail
NEED_VERSION= 1.223
MAINTAINER= cd@sentia.nl
MASTER_SITES= ftp://ftp.net.ohio-state.edu/pub/networking/mail/qmail/ \
MASTER_SITES= http://cr.yp.to/software/ \
ftp://ftp.net.ohio-state.edu/pub/networking/mail/qmail/ \
ftp://ftp.ntnu.no/pub/unix/mail/qmail/ \
ftp://ftp.mira.net.au/unix/mail/qmail/ \
ftp://ftp.id.wustl.edu/pub/qmail/ \
ftp://mirror.uk.uu.net/pub/qmail/ \
ftp://ftp.jp.qmail.org/qmail/ \
http://ftp.rifkin.technion.ac.il/pub/qmail/ \
http://koobera.math.uic.edu/www/software/ \
http://pobox.com/~djb/software/
http://koobera.math.uic.edu/www/software/
QMAILDIR= /var/qmail
NO_CONFIGURE= Yes
ALL_TARGET= default
ALL_TARGET= it install WRKINST=${WRKINST}
INSTALL_TARGET= setup check
FAKE= Yes
RUN_DEPENDS= ${QMAILDIR}/bin/qmail-local:mail/qmail
pre-build:

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-Makefile,v 1.1 2000/03/14 08:17:39 camield Exp $
Needed for fake installation.
--- Makefile.orig Tue Mar 14 09:10:25 2000
+++ Makefile Tue Mar 14 09:10:42 2000
@@ -122,7 +122,7 @@
auto_home.c: \
auto-str conf-home
- ./auto-str auto_home `head -1 conf-home` > auto_home.c
+ ./auto-str auto_home ${WRKINST}`head -1 conf-home` > auto_home.c
auto_home.o: \
compile auto_home.c

View File

@ -1,29 +1,30 @@
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.
* 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.
* 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.
* 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.
* 822header, 822field, 822date, and 822received extract various
pieces of information from a mail message.
* 822print converts a message into an easier-to-read format.
* 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.
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.
mess822 converts RFC 822 dates into libtai's struct caltime format. It
supports numeric time zones, the standard old-fashioned time zones, and
many nonstandard time zones.
mess822 converts RFC 822 dates into libtai's struct caltime format.
It supports numeric time zones, the standard old-fashioned time
zones, and many nonstandard time zones.
mess822 is fast. For example, extracting 10000 addresses from a 160KB To
field takes less than a second on a Pentium-100.
mess822 is fast. For example, extracting 10000 addresses from a
160KB To field takes less than a second on a Pentium-100.