Commit Graph

810 Commits

Author SHA1 Message Date
jakob
4004bc894c add HOMEPAGE 2001-02-18 15:26:43 +00:00
jakob
d760b16c91 remove some unneeded include-files. add c-client.h. 2001-02-18 15:24:39 +00:00
avsm
a64fe6cf40 Use standard format for flavor list; brad@ 2001-02-16 21:56:46 +00:00
brad
fd150571b0 upgrade to fetchmail 5.6.5 2001-02-15 21:21:37 +00:00
naddy
e5209847ea Various fixes. Contributions from Vladimir Popov <pva48@mail.ru> and
Cameron Lerch <opcode@skylab.saturn5.yi.org>.
2001-02-15 18:51:30 +00:00
wilfried
0ac18f22ff + wmpop3 2001-02-14 15:46:40 +00:00
wilfried
26e02d6b8b Import of WMPop3-0.5.6a
WMPop3 is a POP3 mail box checker dock app for Window Maker
ok danh@
2001-02-14 15:45:19 +00:00
naddy
03f910b7b1 make this port configure without tty 2001-02-13 13:02:55 +00:00
kevlo
5c521d3706 Update MASTER_SITES 2001-02-13 06:51:36 +00:00
danh
dad9790d2c - /etc -> SYSCONFDIR
- cleanup DESCR
- cleanup DEINSTALL/INSTALL scripts
2001-02-13 01:31:23 +00:00
avsm
767ea8b36b - update to maildrop-1.3.0
- bump NEED_VERSION
2001-02-09 12:22:44 +00:00
avsm
4489a0170c - update to courier-imap-1.3.3
- explicity disable authmysql and authldap until they are spin off into
  separate FLAVORs
2001-02-09 12:06:40 +00:00
espie
2c89675e7c Add missing ${SUDO}. qmail still does not package as non-root, but it
goes further.
2001-02-08 20:06:23 +00:00
brad
6eb17884c5 another distsite 2001-02-07 02:16:15 +00:00
jakob
e2c042567d update to snapshot-20010202
--
The mailbox file size limits for the local and virtual delivery
agents can be disabled by setting mailbox_size_limit and/or
virtual_mailbox_limit to zero.
2001-02-06 22:40:05 +00:00
naddy
7f45ae808b Update to 0.4.61; from maintainer. 2001-02-06 06:23:42 +00:00
naddy
797c4bcb6e Update to 0.4.60; from maintainer. 2001-02-03 15:41:25 +00:00
jakob
2bfe93201d remove unintended MAKE_FLAGS change 2001-02-02 19:36:28 +00:00
jakob
2f28487f72 update to imap-2000c; bugfix release 2001-02-02 19:35:35 +00:00
brad
4caa06ae70 upgrade to Pine 4.33 2001-02-02 16:47:13 +00:00
brad
f42c93caf0 upgrade to c-client 2000c 2001-02-02 16:43:55 +00:00
avsm
8cfcb15707 indent, minor corrections in DESCR 2001-02-02 00:22:48 +00:00
jakob
111b30b4db update to postfix snapshot-20010130.
Incompatible changes with snapshot-20010128
===========================================

REJECT in header/body_checks is now flagged as policy violation
rather than bounce, for consistency in postmaster notifications.

The mailbox size limit for local delivery is no longer controlled
by the message_size_limit paramater, but by a separate parameter
called mailbox_size_limit (default: 20MBytes).

The default RBL (real-time blackhole lists) domain examples have
been updated from *.vix.com to *.mail-abuse.org.

Major changes with snapshot-20010128
====================================

Updated nqmgr (experimental queue manager with clever queueing
strategy) by Patrik Rak. This code is still new. Once it stops
changing (for a long time!) it will become part of the non-beta
release.

Virtual mailbox delivery agent by Andrew McNamara. This delivery
agent can deliver mail for any number of domains.  See the file
VIRTUAL_README for detailed examples. This code is still new. Once
it stops changing it will become part of the non-beta release.

Many "valid_hostname" warnings were eliminated. The complaints that
were not eliminated were replaced by something more informative.

SASL support (RFC 2554) for the LMTP delivery agent. This is required
by recent Cyrus implementations when delivering mail over TCP
sockets. The LMTP_README file has been updated but still contains
some obsolete information.

Workarounds for non-standard RFC 2554 (AUTH command) implementations.
Specify "broken_sasl_auth_clients = yes" to enable SMTP server
support for old Microsoft client applications. The Postfix SMTP
client supports non-standard RFC 2554 servers by default.
2001-02-01 07:28:12 +00:00
avsm
c146349fd2 - upgrade to courier-imap-1.3.2
- bump NEED_VERSION

This is a bugfix release:
o Fix big5/gb2312 conversion logic.
o Fix authldap connection failure recovery
o Update INSTALL to reflect new upgrade instructions.
2001-01-26 00:42:03 +00:00
danh
ce71595312 - updates from maintainer, Daniel Hartmeier <daniel@reichardt.ch>.
- style changes to match other ports.
- shorten line length in DESCR.
- remove Majordomo reference from COMMENT.
- sort PLIST.
2001-01-21 23:34:58 +00:00
brad
c016c47789 set myself as maintainer 2001-01-21 21:07:16 +00:00
jakob
3ae50c4607 add ldap flavour 2001-01-21 19:19:59 +00:00
jakob
f8c53526cd add patch for fallback-relay loop. info from Wietse below.
Summary
-------
This patch fixes a problem in the Postfix SMTP client's fallback
relay feature in snapshot releases after 20001005.

By default, Postfix does not use the fallback_relay feature. To
find out if your system uses it, issue the command:

    postconf fallback_relay

The result is "fallback_relay =" when the feature is turned off.

Description
-----------
As of 20001005, the Postfix SMTP client will send mail to a fallback
relay host (if one is configured) even when the local machine is
a backup MX host for the final destination.

This causes a loop when the primary MX host is down. Postfix receives
the mail, because it's a backup MX host for the destination. Postfix
then sends the mail to the fallback relay, because the primary MX
host is down.  The fallback sends the mail back to Postfix, because
it's a backup MX host. Mail then bounces after 25 or so iterations.

Laurent Wacrenier had the, um, pleasure, of finding this one.

Solution
--------
If the local machine is listed as MX host for the final destination,
do not send undeliverable mail to the fallback relay.  That is how
releases prior to 20001005 work, including 19991231.

This patch should apply to all snapshots since 20001005, but I have
tested this only with 20001217.

To apply, step into the src/smtp source directory, feed this text
into the patch command, and rebuild. The "make install" command
replaces only the smtp client program.
2001-01-21 11:52:59 +00:00
brad
067c670b6a don't redefine MAX. 2001-01-19 01:07:52 +00:00
brad
d196f368da upgrade to c-client 2000b 2001-01-19 01:05:05 +00:00
naddy
65a52debff +sylpheed 2001-01-18 21:18:17 +00:00
naddy
29563282da Import sylpheed 0.4.52.
Submitted by Couderc Damien <couderc.damien@wanadoo.fr>.

Sylpheed is an e-mail client (and news reader) based on GTK+.
2001-01-18 21:15:35 +00:00
jakob
a2072581e8 update to imap-uw-2000b 2001-01-18 20:21:18 +00:00
brad
92b6b501f6 upgrade to Pine 4.32 2001-01-18 18:51:36 +00:00
naddy
a12cc4bd9b add "x11/windowmaker" to CATEGORIES; requested by espie@ 2001-01-18 16:09:59 +00:00
avsm
18172c6e27 - upgrade to courier-imap-1.3.1
Contains bugfixes to most outstanding issues.
2001-01-15 23:37:18 +00:00
avsm
4ed14d8877 bye bye .packlist 2001-01-08 21:10:45 +00:00
avsm
b3adc86e20 + p5-Mail-Alias 2001-01-07 21:59:56 +00:00
avsm
c384652988 initial import of p5-Mail-Alias-1.12
--
This module allows direct manipulation of various types of e-mail
alias files.

The primary use of Mail::Alias is for manipulating alias files in
the SENDMAIL alias file format. Additionally it is possible to read
some other formats and to convert between various alias file formats.

The following actions are available:

o Set the name of the current aliases file being accessed
o Verify the presence of aliases
o Retrieve an alias line from the file
o Add aliases
o Change the addresses for aliases
o Delete aliases
2001-01-07 21:58:35 +00:00
avsm
3522769e1e - update to p5-Mail-Tools-1.15
- add a patch to correct some man page typos (fed back to author)

Note that Mail::Alias is no longer part of this package, and is now a
separate CPAN module.
2001-01-07 21:55:13 +00:00
brad
c7881f6a8a bye bye NO_CDROM and MIRROR_DISTFILE 2001-01-05 16:35:58 +00:00
brad
96a51a9884 trim 2001-01-03 19:39:47 +00:00
avsm
1bd1e0e511 - update to p5-Mail-POP3Client-2.7
- clean up DESCR with fmt(1)
- no capital in first letter of COMMENT
- revert MAINTAINER to ports@, angelos doesn't want it anymore
  (angelos@ ok)
2001-01-02 23:58:20 +00:00
brad
8aa042370f add patch to make sure cucipop returns the correct port number specified
by the -p option if it fails to bind to the port, otherwise it will always
print port 110 instead of the real port number.
Based on a patch from: Ian Darwin <ian@darwinsys.com>
2001-01-02 18:11:38 +00:00
reinhard
09b96be987 .)update to abook-0.4.11
.)NEED_VERSION
.)+mail2abook.py/vcard2abook.pl
2000-12-31 10:37:16 +00:00
brad
1c1cebc32b upgrade to Pine 4.31 2000-12-31 04:49:37 +00:00
avsm
d6b7ea47c8 - upgrade to courier-imap-1.3.0
- regenerate patches and name them consistently.  Note that the
  configuration file format and names have changed with this release

- add an INSTALL shell fragment to detect old versions of the config
files and warn the user to regenerate them

- config files now live in /etc/courier-imap, as they are very
  generic names, and this avoid conflict with other imap daemons

Summary of changes:

This release fixes some bugs in the POP3 server, adds optional
support for gb2312 and big5 text search, and introduces a new
configuration file format.

The new configuration file format will allow future upgrades
to automatically preserve the existing system configuration data,
instead of installing a default set of configuration files
2000-12-29 18:51:56 +00:00
brad
8b1dfbc7a1 ensure that paths in the manpages are not hardcoded to /usr/local 2000-12-25 06:52:22 +00:00
brad
90d98d6193 add KAME IPv6 patch 2000-12-25 06:37:18 +00:00
naddy
abfa9851a8 If HOMEPAGE is defined in Makefile, reference it in DESCR, too.
authorized by espie@

Fix a few minor cosmetic issues along the way.
2000-12-21 21:20:34 +00:00
espie
fb1581f8f2 fuck cvs 2000-12-19 15:27:54 +00:00
jakob
fead52a0c0 update to snapshot-20001217.
Extract from RELEASE_NOTES:
===========================

    Major changes with snapshot-20001217
    ====================================

    This release involves little change in functionality and a lot of
    small changes to lots of files. The code is put out as a separate
    snapshot release so that I have a tested baseline for further work.

    All time-related configuration parameters now accept a one-letter
    suffix to indicate the time unit (s: second, m: minute, h: hour,
    d: day, w: week). The exceptions are the LDAP and MYSQL modules
    which are maintained separately.

    The mysql client was partially rewritten in order to elimimate some
    memory allocation/deallocation problems. The code needs more work,
    and needs to be tested in a real production environment.

    The local_transport and default_transport configuration parameters
    can now be specified in transport:destination notation, just like
    the mailbox_transport and fallback_transport parameters.  The
    :destination part is optional.  However, these parameters take only
    one destination, unlike relayhost and fallback-relay which take
    any number of destinations.
2000-12-18 10:52:32 +00:00
avsm
f7d48ea2b9 add vmailmgr to subdir list 2000-12-14 15:49:49 +00:00
avsm
1c7eea7f04 import of vmailmgr-0.96.7
--
VMailMgr (short for Virtual MAIL ManaGeR) is a package of programs
designed to manage multiple domains of mail addresses and mailboxes
on a single host. It co-operates with qmail for mail delivery
and program control. It features:

* A password checking interface between qmail-popup and qmail-pop3d
which replaces the usual checkpassword, as well as an authentication
module for [15]Courier IMAP, that provide access to the virtual
mailboxes by one of three methods:

 + IP-based virtual server access (invisible to the POP3 user)
 + username-based access (username-virtualuser)
 + hostname-based access (virtualuser@virtual.host or
   virtualuser:virtual.host)

* CDB-based password tables to speed up access for domains of any
size.

* Tools to setup a virtual domain, add and delete individual virtual
users and aliases, and to change passwords.

* CGI programs to accomplish the above tasks from a set of web
pages.

* A native PHP library to compliment or replace the CGIs.

* A daemon process that securely directs the operation of the CGIs
and PHP code.

* A separate delivery agent that automatically deals with any address
inside a virtual domain from a single .qmail-default file.
2000-12-14 15:47:11 +00:00
brad
c787d6c9d7 upgrade to fetchmail 5.6.1 2000-12-14 15:20:28 +00:00
espie
c5af8657b0 Bye, bye, EXTRACT_CMD, EXTRACT_BEFORE_ARGS, EXTRACT_AFTER_ARGS 2000-12-14 13:22:59 +00:00
brad
34b8b09e5d don't complain about mailbox perms being wrong. 2000-12-12 17:28:11 +00:00
brad
d40d395c55 upgrade to c-client 2000a 2000-12-12 14:44:24 +00:00
jakob
f130f5f039 update to snapshot-20001210.
Extract from the RELEASE_NOTES file:

    Incompatible changes with snapshot-20001210
    ===========================================

    If this release does not work for you, you can go back to a previous
    Postfix version without losing your mail, subject to the "incompatible
    changes" listed for previous Postfix releases below.

    When delivering to /file/name (as directed in an alias or .forward
    file), the local delivery agent now logs a warning when it is unable
    to create a /file/name.lock file. Mail is still delivered as before.

    The "sun_mailtool_compatibility" feature is going away (a compatibility
    mode that turns off kernel locks on mailbox files). It still works,
    but a warning is logged. Instead of using "sun_mailtool_compatibility",
    specify the mailbox locking strategy as "mailbox_delivery_lock =
    dotlock".

    The Postfix SMTP client now skips SMTP server replies that do not
    start with "CODE SPACE" or with "CODE HYPHEN" and flags them as
    protocol errors. Older Postfix SMTP clients silently treated "CODE
    TEXT" as "CODE SPACE TEXT", i.e. as a valid SMTP reply.

    This snapshot does not yet change default relay settings. That
    change alone affects a dozen files, most of which documentation.
    This may be an incompatibility with some people's expectations,
    but such are my rules - between code freeze and release no major
    functionality changes are allowed.

    Several interfaces of libutil and libglobal routines have changed.
    This may break third-party code written for Postfix. In particular,
    the safe_open() routine has changed, the way the preferred locking
    method is specified in the sys_defs.h file, as well as all routines
    that perform file locking. When compiling third-party code written
    for Postfix, the incompatibilities will be detected by the compiler
    provided that #include file dependencies are properly maintained.

    Major changes with snapshot-20001210
    ====================================

    This snapshot includes bugfixes that were already released as
    patches 12 and 13 for the 19991231 "stable" release:

      - The queue manager could deadlock for 10 seconds when bouncing
        mail under extreme load from one-to-one mass mailings.

      - Local delivery performance was substandard, because the per-user
        concurrency limit accidentally applied to the entire local
        domain.

    The mailbox locking style is now fully configurable at runtime.
    The new configuration parameter is called "mailbox_delivery_lock".
    Depending on the operating system type, mailboxes can be locked
    with one or more of "flock", "fcntl" or "dotlock".  The command
    "postconf -l" shows the available locking styles.  The default
    mailbox locking style is system dependent.  This change affects
    all mailbox and all "/file/name" deliveries by the Postfix local
    delivery agent.

    The new "import_environment" and "export_environment" configuration
    parameters now provide explicit control over what environment
    variables Postfix will import, and what environment variables
    Postfix will pass on to a non-Postfix process. This is better than
    hard-coding my debugging environment into public releases.

    The "mailbox_transport" and "fallback_transport" parameters now
    understand the form "transport:nexthop", with suitable defaults
    when either transport or nexthop are omitted, just like in the
    Postfix transport map. This allows you to specify for example,
    "mailbox_transport = lmtp:unix:/file/name".

    The MYSQL client now supports server connections over UNIX-domain
    sockets.  Code provided by Piotr Klaban. See the file MYSQL_README
    for examples of "host" syntax.
2000-12-11 03:17:50 +00:00
jakob
b4c391c3ff update to 19991231-pl13 2000-12-10 18:55:53 +00:00
peter
e89621d1b3 Add common flavors to Makefile and document flavors (as per last commit)
in DESCR file. Thanks to Marc for prompting.
2000-12-08 12:01:07 +00:00
peter
5ea3176f9c stupid CVS missed this again - but I expected it this time. 2000-12-07 15:27:33 +00:00
peter
36ff9ee78a Update exim to version 3.20
See ChangeLog and documentation for a full list of bugs fixes and
new features. Release highlights include the addition of STARTTLS
extensions to SMTP and callback SMTP checks to verify sender addresses
on lightly loaded mail servers - prevent spam from made-up addresses.

This port includes the following flavors:

no_x11	- do not build eximon which requires X11
no_perl	- do not include perl support
no_tls	- do not include SSL/TLS support
mysql	- support mysql queries for lookups
pgsql	- support pgsql queries for lookups
ldap	- support ldap (OpenLDAP) queries for lookups

All these queries are independent.

Maintainer has been temporarily chaged to me for feedback, until
Sebastian is back and available to support the port.

Testing has been limited to i386.
2000-12-07 15:27:10 +00:00
jakob
895756d34c update to imap-uw-2000a 2000-12-06 19:22:20 +00:00
avsm
671df797ab - update to maildrop-1.2.2
- bump NEED_VERSION
- remove maildirmake from PLIST due to conflicts
2000-11-30 15:08:26 +00:00
jakob
a3cfc26c7d update to postfix-19991231-pl11
--
Postfix official release 19991231 patchlevel 11 is available.

This release folds in code changes from recent snapshot releases.
These changes track changes in RedHat Linux, fix two minor bugs in
the Postfix queue manager scheduling behavior that were spotted by
Patrik Rak, and turn off one misfeature.

- On RedHat Linux 7.0, you must install the db3-devel RPM before
  you can compile the Postfix source code.

- The queue manager could schedule too many connections to the same
  destination (domain name spelled in upper and lower case).

- The queue manager could schedule too few connections to the same
  destination (back off even in case of successful delivery).

- The confusing site_hog_factor feature is disabled by default. It
  caused unnecessary mail delivery delays on inbound mail gateways.
2000-11-22 16:26:51 +00:00
avsm
906791ac15 add courier-imap:pop3 2000-11-22 11:43:45 +00:00
avsm
1d03bb0ebf Upgrade to Courier-IMAP 1.2.3
This introduces a new 'pop3' flavour, since the package bundles a POP3
server that can read from maildirs and use the same authmodules also.

And a number of stability fixes, including leaking file descriptions,
maildir handling, and also compliance with the latest IETF IMAP drafts.
2000-11-22 11:42:31 +00:00
jakob
5d3c7e4471 update to snapshot-20001121.
Quote from the RELEASE_NOTES file:

    Incompatible changes with snapshot-20001121
    ===========================================

    If this release does not work for you, you can go back to a previous
    Postfix version without losing your mail, subject to the "incompatible
    changes" listed for previous Postfix releases below.

    Major changes with snapshot-20001121
    ====================================

    Support for RedHat Linux 7.0.  On RedHat Linux 7.0, you must install
    the db3-devel RPM before you can compile the Postfix source code.

    The mailbox_transport feature works again. It was broken when the
    "require_home_directory" feature was added.

    More general virtual domain support.  Postfix now supports both
    Sendmail-style virtual domains and Postfix-style virtual domains.
    Details and examples are given in the revised virtual manual page.

    - With Sendmail-style virtual domains, local users/aliases/mailing
      lists are visible as localname@virtual.domain. This is convenient
      if you want to host mailing lists under virtual domains.

    - With Postfix-style virtual domains, local users/aliases/mailing
      lists are not visible as localname@virtual.domain. Each virtual
      domain has its own separate name space.

    More general "soft bounce" feature.  Specify "soft_bounce = yes"
    in main.cf to prevent the SMTP server from bouncing mail while you
    are testing configurations. Until this release the SMTP server was
    not aware of soft bounces.
2000-11-21 19:45:36 +00:00
espie
d176915fb5 Synch with 2.8. 2000-11-21 13:19:17 +00:00
danh
718df683ae fixed plist for apop flavor; reported by Kamil Andrusz <wizz@mniam.net> 2000-11-20 22:31:53 +00:00
jakob
8ac75f43be update to snapshot-20001030 2000-11-18 09:29:52 +00:00
jakob
205764f7ad update to postfix-19991231-pl10 2000-11-18 09:27:17 +00:00
brad
2996ab835f upgrade to fetchmail 5.5.6 2000-11-17 21:56:33 +00:00
espie
544898518f formatted manpages don't belong under /usr/local/man/man? 2000-11-12 15:20:09 +00:00
brad
7b416ba91c upgrade to c-client 2000 2000-11-11 16:32:45 +00:00
espie
b5cc3e16d4 Repair links. From Anil 2000-11-04 21:13:36 +00:00
jakob
9e370563b7 update to imap-2000. ok espie@. 2000-11-01 18:41:35 +00:00
jakob
43beac1045 correct PLIST 2000-11-01 16:44:18 +00:00
kevlo
c05bb313b5 - Add HOMEPAGE
- Add @comment and reorder packing list
2000-10-30 14:03:09 +00:00
espie
52537c18bc old gnu, oops 2000-10-30 13:53:02 +00:00
espie
7987406fd0 MAINTAINER address 2000-10-27 12:56:09 +00:00
espie
a4a6163243 Fix, noticed by marc@ 2000-10-25 10:28:27 +00:00
espie
e115fc8eed MAINTAINER 2000-10-22 18:03:31 +00:00
espie
57f6a68b97 Hunting through the ports ml to find full names. 2000-10-22 17:05:04 +00:00
espie
46b5f232b5 Kill
FAKE=Yes
HAS_CONFIGURE, GNU_CONFIGURE, USE_IMAKE, NO_INSTALL_MANPAGES, USE_AUTOCONF
and bump NEED_VERSION accordingly.
2000-10-22 15:41:23 +00:00
espie
aa4a7733cc Complete a few MAINTAINER names. 2000-10-22 14:02:46 +00:00
brad
70f361ffb8 - respect CFLAGS.
- pass the pic flag along to the compiler when linking the shared library.
2000-10-16 23:23:10 +00:00
fgsch
45aeb71d96 add real names to MAINTAINER. 2000-10-16 13:30:30 +00:00
espie
54848dabf9 Fix my address. Dust off details. 2000-10-10 00:40:20 +00:00
avsm
4ed4208e5e add maildrop to subdir list 2000-10-09 22:32:53 +00:00
avsm
57feb4541b import maildrop-1.2
This one has been pending for around two months because
it installs root suid files.  The port strips these out
by default, and pkg/SECURITY has details on if they need
to be reenabled. qmail at least doesnt need it, others can
probably be configured to not.
(naddy@ and avsm@ discussed this)
--

maildrop is a replacement for your local mail delivery agent. It
reads a mail message from standard input, then delivers the message
to your mailbox. maildrop knows how to deliver mail to mbox-style
mailboxes, and maildirs.

maildrop will optionally read instructions from a file, which
describes how to filter incoming mail. Instructions can be provided
having mail delivered to alternate mailboxes, or forwarded somewhere
else. Unlike procmail, maildrop uses a structured filtering language.

maildrop is written in C++, and is significantly larger than procmail
in compiled form.  However, it uses resources much more efficiently.
Unlike procmail, maildrop will not read a 10 megabyte mail message
into memory. Large messages are saved in a temporary file, and are
filtered from the temporary file.
2000-10-09 22:29:05 +00:00
form
74c70bebef add full name to MAINTAINER 2000-10-09 06:06:06 +00:00
fgsch
96964027f4 simplify; damn cvs. i thought i've commit this long ago. 2000-10-08 07:50:16 +00:00
jakob
22e34598a0 add LDAP flavour 2000-10-06 23:10:43 +00:00
jakob
e99f62433e fix sasl when used as single flavour 2000-10-05 21:16:50 +00:00
jakob
ecc71015a0 add pcre flavour 2000-10-05 21:15:50 +00:00
jakob
2419cdbca9 add pcre flavour, rework MAKE_{CCARGS,AUXLIBS} 2000-10-05 21:13:23 +00:00
jakob
4263003c99 - remove MAKE_FLAGS
- add do-configure target
2000-10-05 21:08:38 +00:00
jakob
87adbef166 make MAKE_FLAGS additive 2000-10-05 20:58:34 +00:00
jakob
48628f40f6 update to postfix snapshot 20001005 2000-10-05 19:42:23 +00:00
marc
c4f888bae2 Even though the port is broken, fix sub-package generation
This allows, for example, pico to be installed using the format
    make NO_IGNORE=Yes SUBPACKAGE=-pico install
2000-10-05 18:01:49 +00:00
marc
7456a1c981 BROKEN="remote access exploit" 2000-10-05 00:15:36 +00:00
jakob
ce7dadcdb0 add fullname to MAINTAINER 2000-10-04 21:53:59 +00:00
marc
fad2b79bc0 install example files referenced by packing list 2000-10-03 19:27:02 +00:00
avsm
2a81ee3d26 - update to v1.1
(notable changes: better locking, improved RC scripts, THREAD semantics
   updated to latest IETF draft, unicode support, bug fixes)
- bump NEED_VERSION, MAINTAINER real name added
- regenerate RC patch
- PLIST tweaked to not delete libexec/authlib, which is being
  used by other applications now (e.g. vmailmgr)
2000-10-01 13:27:13 +00:00
kevlo
e5d2657201 - Upgrade to version 1.13
- Add HOMEPAGE
- Take over maintainership, ok angelos@
2000-09-30 14:20:30 +00:00
kevlo
327617e456 Update to version 0.4.10.
Ok maintainer <reinhard@>
2000-09-29 03:00:58 +00:00
kevlo
d473116630 Update to version 3.52 2000-09-29 02:53:55 +00:00
brad
e6a2e84f68 MAKE_FLAGS -> MAKE_ENV 2000-09-27 14:56:31 +00:00
fgsch
f47b90ef75 update to release 5.5.3. 2000-09-27 07:14:31 +00:00
jakob
7d9995930b split port into stable and snapshot versions 2000-09-25 21:02:29 +00:00
fgsch
d396786bcb install examples by default. 2000-09-25 09:02:25 +00:00
camield
47cf7cd07d add real name to MAINTAINER, plus a few nits 2000-09-25 07:40:09 +00:00
danh
1aa3d48c3f added real name to MAINTAINER 2000-09-23 19:59:51 +00:00
danh
088dbfe32b add solid-pop3d flavor 2000-09-22 23:58:35 +00:00
fgsch
476f78adc7 Update to release 3.15. Add NEED_VERSION. Rename patch. 2000-09-22 22:54:22 +00:00
jakob
9e22a1c042 add comment 2000-09-21 15:32:23 +00:00
jakob
0628f44d3a rename patches 2000-09-21 15:32:04 +00:00
brad
5dca194f6e typo 2000-09-21 06:10:28 +00:00
brad
4919ce7f76 do not try to use "size" on nonexistent binaries 2000-09-19 21:07:43 +00:00
brad
cd78d1a70c don't build utils we do not use nor do we install 2000-09-19 20:43:47 +00:00
jakob
a4c46581ab Update to Postfix 19991231 patch 09.
--
Postfix 19991231 patch 09 fixes a memory corruption problem, and
includes a long list of minor bugfixes and robustness improvements
that already featured in snapshot releases (or that will feature
in the next one).

  - When propagating an address extension to the right-hand side
    of a virtual or canonical mapping, the cleanup server could
    access memory that was no longer allocated and die with signal
    11. This would happen when the result address length was more
    than about 100 characters.  Credit to Adi Prasaja @ satunet.com
    for coming up with a small reproducible demo.
2000-09-18 18:43:35 +00:00
brad
860a85553b update the pine port to utilize the c-client port.
Pine has historically built against an internal copy
of the c-client library, however c-client development
has progressed beyond what is shipped with pine.
(It would appear that all new development work is
being done via UW's imap server codebase.) This change
allows pine to utilize improvements/bugfixes in the
c-client library. A consequence of this change is
that the recently reported vulnerability to BugTraq
regarding malformed X-keywords header has been fixed.
2000-09-17 14:56:26 +00:00
brad
6977f6387b *** empty log message *** 2000-09-17 13:19:57 +00:00
camield
67aefb1cc5 - rename patch-aa to something more descriptive 2000-09-15 13:31:53 +00:00
camield
bf66b0e64f - add RCS id to PLIST 2000-09-15 12:21:24 +00:00
camield
09784b078d - convert wonky shellcode to [user|group][add|info] utils
- add RCS id to PLIST
2000-09-15 12:08:20 +00:00
brad
c311f66750 use better filenames for patches 2000-09-15 10:06:36 +00:00
brad
c0401714ff create a shared library 2000-09-15 09:44:12 +00:00
brad
87c271a25e add patch to fix mailbox permissions when using c-client's mx driver.
unix-mx driver doesn't set file permissions properly for non-private
messages (e.g. public#). The problem caused by mx_append procedure,
where the driver doesn't call set_mbx_permissions for just created
message file.
--
From: FreeBSD
2000-09-15 09:05:42 +00:00
avsm
9fd37ec8b1 add OpenBSD tag 2000-09-13 13:57:42 +00:00
brad
4a454a2989 just use --without-threads when we want to disable threads, there never
was an --enable-threads option. --with/--without-threads both seem to
disable threads, arrgghhh. also mark threads FLAVOR BROKEN on SPARC.
2000-09-13 08:43:40 +00:00
brad
8e7dc483c2 yuck, bye bye partial autoconf cache file 2000-09-13 08:38:52 +00:00
brad
830303b9f5 - use better filename for patch
- change -lpthread -> -pthread consistantly throughout the autoconf script
2000-09-13 08:37:15 +00:00
brad
114b5a68e6 remove the "(unknown)" string beside the OS name in XFMail 2000-09-13 08:35:55 +00:00
kevlo
67691f38ff - Trivial fake
- Bump NEED_VERSION
- USE_IMAKE -> CONFIGURE_STYLE
- Add @comment to PLIST
2000-09-13 03:02:39 +00:00
fgsch
2ac24dcce1 update to release 5.5.2 and bump NEED_VERSION. 2000-09-12 22:27:34 +00:00
brad
26c1abc58b - use new extraction framework: remove USE_BZIP2 and set EXTRACT_SUFX
- fix brokeness with threads FLAVOR, --enable-threads -> --with-threads
2000-09-12 15:54:35 +00:00
camield
87b9ac35e8 rblsmtpd has been incorporated in net/ucspi-tcp 2000-09-12 14:26:03 +00:00
avsm
0939ee2710 - Update to v1.0
- Change the maintainer address
- Remove redundant Makefile.in patch and regenerate others
2000-09-10 20:38:10 +00:00
form
a2a5ea28e7 upgrade to 2b30 2000-09-10 05:52:52 +00:00
brad
309ecb60bc - add missing non-flavored fetchmail
- remove ssl FLAVORs for fetchmail
2000-09-07 06:50:09 +00:00
brad
2befad4360 enable ssl by default 2000-09-07 06:48:01 +00:00
brad
39f4ba63e7 remove SYSCONFDIR from SUBST_VARS and SUBST_VARS too if no other variables
are listed
2000-09-06 05:48:47 +00:00
espie
4c8a9cb2ba Multi-package pine.
This leads to three packages:
pine, pine+pico, pico

Note that pine does not depend on pico, since it links with the static
libpico library.

The old pine package corresponds to the newer pine+pico package.
2000-09-03 17:20:33 +00:00
marc
cf6494846d fix OpenBSD tag 2000-09-03 03:28:22 +00:00
kevlo
2fd6e902be - Add threads FLAVOR 2000-09-02 13:06:19 +00:00
turan
a75df11dfc broken. posted to ports@ a while ago. no one seems interested. 2000-09-02 01:21:24 +00:00
camield
4c8dceaf9e sync, add ezmlm-idx flavor 2000-08-30 12:54:10 +00:00
camield
7178edd4bb add ezmlm-idx, an enhanced version of ezmlm, as a flavor
From Anil Madhavapeddy <anil@recoil.org>
2000-08-30 12:47:10 +00:00
brad
7bfb932996 oops, fix Makefile so that its possible to use both FLAVORs at once 2000-08-30 03:40:23 +00:00
danh
eb8b2e496b remove ipv6 FLAVOR. 2000-08-29 23:41:56 +00:00
danh
c08771e297 - re-organized Makefile.
- made ipv6 a FLAVOR instead of compiled in by default.
2000-08-29 16:52:13 +00:00
brad
9116186a1e upgrade to fetchmail 5.5.1 2000-08-26 18:12:53 +00:00
kevlo
31b27c7874 - Update lastest patched version
- Change maintainer to me
- Support pthread
- Add HOMEPAGE
2000-08-22 03:10:54 +00:00
brad
ad025ddc78 fix order of categories 2000-08-21 02:25:46 +00:00
brad
9d6e9a72d1 upgrade to POP3Client 2.6 2000-08-21 02:17:43 +00:00
jakob
6b98dfe003 add note about sendmail_flags and /etc/rc.conf.local 2000-08-18 05:57:17 +00:00
camield
4669678476 allow PREFIX (default /var/qmail) to be overridden
(req. by Martin Portmann)
2000-08-16 08:56:40 +00:00
danh
55d552afcc general port cleanup; added apop flavor; changed default syslog facility and level 2000-08-15 20:36:57 +00:00
jakob
21d743600b - move examples from lib/postfix to share/examples/postfix
- use user/group commands
- ${FOO} -> $FOO om INSTALL/DEINSTAL
- add HOMEPAGE

work by Brad and myself
2000-08-15 17:01:22 +00:00
fgsch
ce0653c2c3 Update to release 5.5.0. 2000-08-15 06:31:31 +00:00
naddy
de4154f558 - update to 3.16; submitted by seb@gosh.todesplanet.de
- move config file handling to (DE)INSTALL; requested by brad@
- switch maintainer; offered by Peter
2000-08-12 23:57:45 +00:00
brad
db58c7154a use variable substitution to remove the hard coded CONFIG_DIR in the
DEINSTALL/INSTALL scripts.
2000-08-12 13:29:55 +00:00
danh
fe14c909c5 update to version 0.99 from maintainer 2000-08-10 21:12:48 +00:00
brad
2722ffd6b2 remove extra if loop and replace with elif 2000-08-09 00:45:27 +00:00
brad
627e4c19ff bump NEED_VERSION 2000-08-07 03:59:10 +00:00
fgsch
9cd135dff7 add fetchmail flavors. 2000-08-04 23:42:23 +00:00
fgsch
3d5568106c use @ on tbl and -f on cp. 2000-08-04 23:41:33 +00:00
fgsch
114def9ea9 use tbl to format the manpage prior installation; now fetchmail(1) can
be viewed properly.
2000-08-04 22:49:55 +00:00
brad
b16f63751c ${FOO} -> $FOO 2000-08-04 18:30:39 +00:00
brad
47675bec35 - move config file from lib/mutt to share/examples/mutt
- ${FOO} -> FOO in INSTALL/DEINSTALL
2000-08-04 17:55:26 +00:00
reinhard
cfb6fbd046 missed 2000-08-03 20:02:40 +00:00
reinhard
310d299532 update to 0.4.9
author integrated ncurses->curses
2000-08-03 19:47:45 +00:00
naddy
a84fee811c - add no_x11 flavor
- make build respect CC and CFLAGS
- add HOMEPAGE
- move example configuration to ${PREFIX}/share/examples/
- add RCS IDs
ok peter@
2000-08-02 15:44:11 +00:00
brad
a1a3efa756 upgrade to mutt 1.2.5i 2000-07-29 11:15:24 +00:00
brad
23bfac841a almost forgot this, patch from naddy@ to fix issue when enabling SSL
support. An auto-generated header not being generated when it's supposed
to be.
2000-07-27 22:31:10 +00:00
brad
25fdf11cc2 - add optional SSL transport layer encryption for IMAP
- switch mailbox locking to flock()
- add RCS id to patch-configure
- fix offsets in patch_mbox_c
- mention IMAP support in DESCR
--
from naddy@
2000-07-27 22:27:59 +00:00
brad
375a48faec add wrapper for fetchmailconf to check for Python and if it does not exist
point the user in the right direction.
2000-07-23 22:42:52 +00:00
brad
f1cc03c27e upgrade to fetchmail 5.4.4 2000-07-23 22:08:23 +00:00
brad
d10da77a34 config files should be installed in /etc/mutt, deal with this correctly. 2000-07-22 23:51:19 +00:00
brad
9b04f7f8ed gettext related changes were unnecessary 2000-07-22 17:26:08 +00:00
rohee
df16120bbe Should fix installation using the port, that had the effect of changing
/var/mail mode. The package should be identical.
2000-07-22 17:20:51 +00:00
jakob
f4839c6a7d add c-client 2000-07-20 10:10:29 +00:00
brad
0c7a16985e add #!/bin/sh 2000-07-19 09:31:17 +00:00
jakob
74c46144aa - do not install c-client libraries, as it's now supported through
a separate c-client port
- add comment to PLIST
- remove fake
2000-07-18 21:58:50 +00:00
jakob
1efbf5f793 University of Washington's c-client mail access routines -
split out from imap-uw port
2000-07-18 21:52:43 +00:00
espie
9784fa604e Typo 2000-07-17 03:44:47 +00:00
brad
3e025283d0 force creation of proper symlink durring post-install and remove
unnecessary patch
2000-07-15 07:18:01 +00:00
espie
d192e013ac Fix eager DESTDIR... reported by maintainer. 2000-07-14 22:52:08 +00:00
brad
64793a7845 - assume ispell is installed by default, end user can add the ispell
port/package to use it
- add missing CONFIGURE_ENV options to bring in gettext support
- add a few patches to ensure mutt does not use its own gettext headers
but the headers installed on the system instead
- remove install message from Makefile and put it into pkg/MESSAGE so it's
displayed properly once this port is made into a package
- rename one patch, patch-fix_DOTLOCK_group -> patch-configure
2000-07-11 07:15:00 +00:00
kevlo
80d2cf31fb Add wmbiff 2000-07-11 03:37:13 +00:00
kevlo
4b97e2b744 Initial import of wmbiff-0.2.
wmbiff is an xbiff-like Window Maker dock app.

Submitted by:	opcode@skylab.2y.net
2000-07-11 03:36:35 +00:00
espie
a908b6f237 Forgot to fix @ARCH@ -> ${ARCH} there. Thanks turan@ 2000-07-10 23:13:40 +00:00
brad
a0711d7430 - add HOMEPAGE
- remove FAKE=Yes and license type
- remove configure script and integrate it into the Makefile
- add #!/bin/sh to DEINSTALL
- re-arrange INSTALL script a bit and remove bogus PIDFILE variable
2000-07-10 22:54:33 +00:00
danh
a112b59d1e updated MAINTAINER 2000-07-10 20:28:00 +00:00
angelos
a99a21022b Release ports@openbsd.org, as I can no longer maintain ports that
depend on XFree86 3.3.6
2000-07-10 02:06:46 +00:00
brad
77a1035118 add HOMEPAGE to DESCR 2000-07-09 03:21:09 +00:00
brad
b618b2b778 add missing file 2000-07-09 03:14:52 +00:00
fgsch
bd4eee1408 Add HOMEPAGE. 2000-07-08 08:55:59 +00:00
fgsch
0e61be7afd use dest in CONFIGURE_STYLE, thus simplifying patch-aa. 2000-07-08 08:54:01 +00:00
fgsch
07f1899658 remove unwanted patch. there is no need for this. check the manual
if you want to turn the automove feature off.
2000-07-08 08:47:39 +00:00
fgsch
9017fbc039 update to 1.2.4i. change default flavor to curses since we ship with it. 2000-07-08 08:45:36 +00:00
fgsch
53727054e2 change the maintainer to myself; ok turan@ 2000-07-04 04:23:36 +00:00
krw
472efe57bb Change PFRAG.shared ldconfig invocation(s) to
DYNLIBDIR() invocations.

Bump NEED_VERSION to 1.310 so DYNLIBDIR() works.

As requested by espie@
2000-07-04 00:20:51 +00:00
fgsch
027802ed5a update to release 5.4.3. 2000-07-03 15:08:04 +00:00
kevlo
433ea0f2b4 Add courier-imap. 2000-07-03 08:12:23 +00:00
kevlo
c2f0ceec01 Initial import of courier-imap version 0.35.
courier-imap is an imap server for maildir format mailboxes.

Submitted by:	Anil Madhavapeddy <anil@recoil.org>
2000-07-03 08:11:24 +00:00
turan
8ebe7b332a import
IMAP server for Maildir format mailboxes
2000-07-03 03:42:55 +00:00
fgsch
435aff5976 update to 1.2.2i. remove deprecated `if defined' statements.
bump NEED_VERSION. change a few master sites.
2000-06-29 23:18:10 +00:00
fgsch
3d1e4517a0 remove extra :. remove FAKE=yes and use CONFIGURE_STYLE.
bump NEED_VERSION. still waiting turan@ reply for update.
2000-06-28 22:28:20 +00:00
fgsch
46da5f10b2 Update to release 5.4.2. 2000-06-28 17:13:53 +00:00
espie
0b01af1690 Kill PLIST.sed 2000-06-28 13:55:03 +00:00
fgsch
ff5ea93935 Use flavors. bump NEED_VERSION. 2000-06-27 23:22:03 +00:00
brad
326bb87828 upgrade to asmail 0.56 2000-06-26 22:03:46 +00:00
brad
2b434e1a6c - replace do-extract target with proper use of EXTRACT_ variables
- change lots of whitespace to tabs
- add HOMEPAGE
- remove license type
- add @comment with RCS id to PLIST
- use better filename for patch and change it to a unified diff
2000-06-26 20:05:18 +00:00
brad
47f6ba09b8 - patch configure directly since this patch is specific to OpenBSD and
most likely will not get integrated back in ... removes unnecessary
dependency on autoconf.
- remove unnecessary CONFIGURE_ARGS
- add HOMEPAGE to DESCR
2000-06-26 19:52:51 +00:00
reinhard
f00a19ac85 missed 2000-06-22 13:19:27 +00:00
reinhard
7dedf20191 update port to 0.4.8
- CONFIGURE_STYLE
- bump LICENSE_TYPE
2000-06-22 13:10:22 +00:00
camield
8aee8c2521 - resolve package conflict with daemontools (setlock from daemontools
is now preferred and installed as a dependency)
- add RCS id to PLIST
2000-06-21 06:00:57 +00:00
brad
f05d3aea04 upgrade to solid-pop3d 0.15, from port maintainer 2000-06-20 20:23:59 +00:00
espie
8e4c3a0948 Register conflict (compface is a subset of faces).
New style
2000-06-20 16:20:59 +00:00
espie
f100c128f9 Remove NO_CONFIGURE/NO_PATCH/NO_EXTRACT/NO_MTREE
Kill corresponding FAKE=Yes and switch to CONFIGURE_STYLE while I'm at it.
2000-06-16 23:06:03 +00:00
form
88ead615d7 remove FAKE=yes
GNU_CONFIGURE -> CONFIGURE_STYLE
2000-06-14 16:57:40 +00:00
kevlo
0ef74d7cac - Upgrade to version 1.4.6
- Remove FAKE=Yes
- Add @comment with PLIST
2000-06-13 03:59:25 +00:00
brad
b81f61b294 add HOMEPAGE 2000-06-12 15:38:34 +00:00
fgsch
1d2addab8b CONFIGURE_STYLE and tag. add NEED_VERSION too (is this really needed?) 2000-06-11 01:25:45 +00:00
reinhard
4ae608dc18 http://www.linuxstart.com/ -> http://members.linuxstart.com/ 2000-06-10 07:50:21 +00:00
espie
8a385378cb Use COMMENT to indicate supersedes. 2000-06-09 17:14:40 +00:00
brad
7deefa4d46 upgrade to fetchmail 5.4.1 2000-06-08 16:58:54 +00:00
jakob
8a65c2ef6d Install c-client header-files and libraries. 2000-06-05 08:45:09 +00:00
espie
c9685a9d2d Fix & fake 2000-06-05 01:09:24 +00:00
espie
ed8131e081 Fake 2000-06-05 00:42:58 +00:00
espie
21033bdb8f Fake
Repackage popclient patches
2000-06-05 00:31:33 +00:00
espie
37bc688c36 Fix pgpsendmail installation so that it no longer ka-blam! replaces
sendmail...
Need some work yet to be repaired and work elegantly with mailwrapper.
2000-06-05 00:04:02 +00:00
espie
7887fbf29e Fake, fix PLIST, repackage patches. 2000-06-04 23:08:33 +00:00
espie
bc21c8fe35 Fake, slightly non-trivial, as this involves fixing up the packaging. 2000-06-04 22:42:05 +00:00
espie
19bb09282e Fake 2000-06-04 22:06:30 +00:00
espie
b1512ec2c7 Trivial fakes.
Clarify bulk_mailer license, there is an obvious license blurb that says
use is free.
2000-06-04 21:40:43 +00:00
espie
1630c0e9ee Link in & fix name. 2000-06-02 14:16:19 +00:00
espie
f341e469ca Modules suite to handle mail 2000-06-02 14:15:26 +00:00
espie
b1d3ea2163 Forgot NEED_VERSION 2000-06-02 13:02:18 +00:00
espie
a5b5853ecd Convert to CONFIGURE_STYLE perl 2000-06-02 11:56:22 +00:00
form
8b29955cbe fix manpages 2000-05-31 16:09:52 +00:00
jakob
da4b2c6251 update to v4.7c2, maintenace update; <jeffb@ops.tamu.edu>
SUNET mirror removed
2000-05-31 07:29:36 +00:00
reinhard
d95cd2eba7 fixed $(DESTDIR), diff reported back to author 2000-05-30 11:37:40 +00:00
reinhard
a38ef0160d remove unneeded USE_GMAKE; thanks espie@ 2000-05-29 17:15:37 +00:00
reinhard
6efab61df2 enable abook.
ok espie@
2000-05-29 17:11:43 +00:00
reinhard
0ebe126c9d abook is an addressbook program with mutt support. 2000-05-29 16:46:51 +00:00