pkgsrc/mail
abs 214bbd8234 Update mail/exim to 4.67:
Prompted by report from Peter Avalos that exim 4.66 would not build
	against openssl 0.9.8e

Changelog:

MH/01 Fix for bug #448, segfault in Dovecot authenticator when interface_address
      is unset (happens when testing with -bh and -oMi isn't used). Thanks to
      Jan Srzednicki.

PH/01 Added a new log selector smtp_no_mail, to log SMTP sessions that do not
      issue a MAIL command.

PH/02 In an ACL statement such as

        deny dnslists = X!=127.0.0.2 : X=127.0.0.2

      if a client was not listed at all, or was listed with a value other than
      127.0.0.2, in the X list, but was listed with 127.0.0.2 in the Y list,
      the condition was not true (as it should be), so access was not denied.
      The bug was that the ! inversion was incorrectly passed on to the second
      item. This has been fixed.

PH/03 Added additional dnslists conditions == and =& which are different from
      = and & when the dns lookup returns more than one IP address.

PH/04 Added gnutls_require_{kx,mac,protocols} to give more control over the
      cipher suites used by GnuTLS. These options are ignored by OpenSSL.

PH/05 After discussion on the list, added a compile time option ENABLE_DISABLE_
      FSYNC, which compiles an option called disable_fsync that allows for
      bypassing fsync(). The documentation is heavily laced with warnings.

SC/01 Updated eximstats to collate all SpamAssassin rejects into one bucket.

PH/06 Some tidies to the infrastructure of the Test Suite that is concerned
      with the auxiliary C programs that it uses: (1) Arrange for BIND_8_COMPAT
      to be defined when compiling on OSX (Darwin); (2) Tidies to the Makefile,
      including adding "make clean"; (3) Added -fPIC when compiling the test
      dynamically loaded module, to get rid of a warning.

MH/02 Fix for bug #451, causing paniclog entries to be written if a bounce
      message fails, move_frozen_messages = true and ignore_bounce_errors_after
      = 0s. The bug is otherwise harmless.

PH/07 There was a bug in the dovecot authenticator such that the value of
      $auth1 could be overwritten, and so not correctly preserved, after a
      successful authentication. This usually meant that the value preserved by
      the server_setid option was incorrect.

PH/08 Added $smtp_count_at_connection_start, deliberately with a long name.

PH/09 Installed PCRE release 7.0.

PH/10 The acl_not_smtp_start ACL was, contrary to the documentation, not being
      run for batched SMTP input. It is now run at the start of every message
      in the batch. While fixing this I discovered that the process information
      (output by running exiwhat) was not always getting set for -bs and -bS
      input. This is fixed, and it now also says "batched" for BSMTP.

PH/11 Added control=no_pipelining.

PH/12 Added $sending_ip_address and $sending_port (mostly Magnus Holmgren's
      patch, slightly modified), and move the expansion of helo_data till after
      the connection is made in the smtp transport (so it can use these
      values).

PH/13 Added ${rfc2047d: to decoded RFC 2047 strings.

PH/14 Added log_selector = +pid.

PH/15 Flush SMTP output before delaying, unless control=no_delay_flush is set.

PH/16 Add ${if forany and ${if forall.

PH/17 Added dsn_from option to vary the From: line in DSNs.

PH/18 Flush SMTP output before performing a callout, unless control =
      no_callout_flush is set.

PH/19 Change 4.64/PH/36 introduced a bug: when address_retry_include_sender
      was true (the default) a successful delivery failed to delete the retry
      item, thus causing premature timeout of the address. The bug is now
      fixed.

PH/20 Added hosts_avoid_pipelining to the smtp transport.

PH/21 Long custom messages for fakedefer and fakereject are now split up
      into multiline reponses in the same way that messages for "deny" and
      other ACL rejections are.

PH/22 Applied Jori Hamalainen's speed-up changes and typo fixes to exigrep,
      with slight modification.

PH/23 Applied sieve patches from the maintainer "tracking the latest notify
      draft, changing the syntax and factoring some duplicate code".

PH/24 When the log selector "outgoing_port" was set, the port was shown as -1
      for deliveries of the second and subsequent messages over the same SMTP
      connection.

PH/25 Applied Magnus Holmgren's patch for ${addresses, ${map, ${filter, and
      ${reduce, with only minor "tidies".

SC/02 Applied Daniel Tiefnig's patch to improve the '($parent) =' pattern match.

PH/26 Added a "continue" ACL modifier that does nothing, for the benefit of its
      expansion side effects.

PH/27 When a message times out after an over-quota error from an Exim-imposed
      quota, the bounce message says "mailbox is full". This message was not
      being given when it was a system quota that was exceeded. It now should
      be the same.

MH/03 Made $recipients available in local_scan(). local_scan() already has
      better access to the recipient list through recipients_list[], but
      $recipients can be useful in postmaster-provided expansion strings.

PH/28 The $smtp_command and $smtp_command_argument variables were not correct
      in the case of a MAIL command with additional options following the
      address, for example: MAIL FROM:<foo@bar> SIZE=1234. The option settings
      were accidentally chopped off.

PH/29 SMTP synchronization checks are implemented when a command is read -
      there is a check that no more input is waiting when there shouldn't be
      any. However, for some commands, a delay in an ACL can mean that it is
      some time before the response is written. In this time, more input might
      arrive, invalidly. So now there are extra checks after an ACL has run for
      HELO/EHLO and after the predata ACL, and likewise for MAIL and RCPT when
      pipelining has not been advertised.

PH/30 MH's patch to allow iscntrl() characters to be list separators.

PH/31 Unlike :fail:, a custom message specified with :defer: was not being
      returned in the SMTP response when smtp_return_error_details was false.
      This has been fixed.

PH/32 Change the Dovecot authenticator to use read() and write() on the socket
      instead of the C I/O that was originally supplied, because problems were
      reported on Solaris.

PH/33 Compile failed with OpenSSL 0.9.8e. This was due to a coding error in
      Exim which did not show up earlier: it was assuming that a call to
      SSL_CTX_set_info_callback() might give an error value. In fact, there is
      no error. In previous releases of OpenSSL, SSL_CTX_set_info_callback()
      was a macro that became an assignment, so it seemed to work. This has
      changed to a proper function call with a void return, hence the compile
      error. Exim's code has been fixed.

PH/34 Change HDA_SIZE in oracle.c from 256 to 512. This is needed for 64-bit
      cpus.

PH/35 Applied a patch from the Sieve maintainer which fixes a bug in "notify".

PH/36 Applied John Jetmore's patch to add -v functionality to exigrep.

PH/37 If a message is not accepted after it has had an id assigned (e.g.
      because it turns out to be too big or there is a timeout) there is no
      "Completed" line in the log. When some messages of this type were
      selected by exigrep, they were listed as "not completed". Others were
      picked up by some special patterns. I have improved the selection
      criteria to be more general.

PH/38 The host_find_failed option in the manualroute router can now be set
      to "ignore", to completely ignore a host whose IP address cannot be
      found. If all hosts are ignored, the behaviour is controlled by the new
      host_all_ignored option.

PH/39 In a list of hosts for manualroute, if one item (either because of multi-
      homing or because of multiple MX records with /mx) generated more than
      one IP address, and the following item turned out to be the local host,
      all the secondary addresses of the first item were incorrectly removed
      from the list, along with the local host and any following hosts (which
      is what is supposed to happen).

PH/40 When Exim receives a message, it writes the login name, uid, and gid of
      whoever called Exim into the -H file. In the case of the daemon it was
      behaving confusingly. When first started, it used values for whoever
      started the daemon, but after a SIGHUP it used the Exim user (because it
      calls itself on a restart). I have changed the code so that it now always
      uses the Exim user.

PH/41 (Following a suggestion from Tony Finch) If all the RCPT commands in a
      message are rejected with the same error (e.g. no authentication or bad
      sender address), and a DATA command is nevertheless sent (as can happen
      with PIPELINING or a stupid MUA), the error message that was given to the
      RCPT commands is included in the rejection of the DATA command. This is
      intended to be helpful for MUAs that show only the final error to their
      users.

PH/42 Another patch from the Sieve maintainer.

SC/02 Eximstats - Differentiate between permanent and temporary rejects.
      Eximstats - Fixed some broken HTML links and added missing column headers
                  (Jez Hancock).
      Eximstats - Fixed Grand Total Summary Domains, Edomains, and Email
                  columns for Rejects, Temp Rejects, Ham, and Spam rows.

SC/03 Eximstats - V1.58 Fix to get <> and blackhole to show in edomain tables.

PH/43 Yet another patch from the Sieve maintainer.

PH/44 I found a way to check for a TCP/IP connection going away before sending
      the response to the final '.' that terminates a message, but only in the
      case where the client has not sent further data following the '.'
      (unfortunately, this is allowed). However, in many cases there won't be
      any further data because there won't be any more messages to send. A call
      to select() can be used: if it shows that the input is "ready", there is
      either input waiting, or the socket has been closed. An attempt to read
      the next input character can distinguish the two cases. Previously, Exim
      would have sent an OK response which the client would never have see.
      This could lead to message repetition. This fix should cure that, at
      least in a lot of common cases.

PH/45 Do not advertise STARTTLS in response to HELP unless it would be
      advertised in response to EHLO.
2007-06-24 10:55:40 +00:00
..
alpine Fix spool directory default for *BSD. Add DragonFly support. 2007-06-12 13:29:50 +00:00
anomy-sanitizer Oops, some files had been installed with mode 600. Take 644 instead. 2006-12-21 19:33:28 +00:00
archivemail PKGMANDIR support. 2006-11-14 13:50:42 +00:00
autorespond Quell pkglint: add QMAILDIR to BUILD_DEFS. 2007-03-24 06:28:22 +00:00
avenger PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
balsa2 opencdk shlib major changed; bump ABI depends and PKGREVISIONs of 2007-06-05 05:36:59 +00:00
bbmail Modular Xorg support. 2007-02-15 14:46:27 +00:00
bmf
bogofilter PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
bulk_mailer Update bulk_mailer to 1.13nb1: 2007-04-24 22:31:19 +00:00
clamav Fix path to pidfile. Noted by Peter Avalos. 2007-06-17 22:06:33 +00:00
clamsmtp Added clamsmtpd_maxwait (default is 600 seconds). This makes it possible 2007-06-15 09:47:06 +00:00
columba Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
coolmail Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
courier-analog This is an optional package, the Courier log analyzer. Courier-analog generates 2007-01-03 12:56:13 +00:00
courier-imap Move handling of the "fam" option directly into the Courier packages 2007-06-07 07:50:57 +00:00
courier-maildir DESTDIR support. 2006-11-03 19:14:25 +00:00
courier-mta Move common definitions of UUCP_{GROUP,USER} from mail/courier-mta and 2007-06-19 21:29:09 +00:00
cucipop Use the subst framework instead of a manual sed loop. 2007-06-20 02:22:33 +00:00
cue Update cue to 20061225. 2007-01-02 12:47:22 +00:00
cyrus-imapd Fix to build with db4>=4.5. 2007-06-12 11:34:29 +00:00
cyrus-imapd21 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
dbmail Update DBMail to 2.0.11, the latest bugfix maintenance release on the 2.0.x 2007-03-19 12:51:56 +00:00
deliver Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
demime Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
distribute Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
dk-milter Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
dkim-milter Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
dot-forward
dovecot Update to Dovecot 1.0.1. Lots of small fixes: 2007-06-16 15:01:17 +00:00
drac Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
dspam Fix breakage caused by me when I renamed some PKG_OPTIONS incompletly 2007-06-22 13:14:22 +00:00
elm Fix NO_MTREE 2007-04-04 13:01:23 +00:00
elm-me Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
elmo USE_TOOLS+=flex 2006-06-09 16:03:23 +00:00
esmtp Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
etach
etpan PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
evolution opencdk shlib major changed; bump ABI depends and PKGREVISIONs of 2007-06-05 05:36:59 +00:00
evolution-data-server opencdk shlib major changed; bump ABI depends and PKGREVISIONs of 2007-06-05 05:36:59 +00:00
evolution-exchange opencdk shlib major changed; bump ABI depends and PKGREVISIONs of 2007-06-05 05:36:59 +00:00
exim Update mail/exim to 4.67: 2007-06-24 10:55:40 +00:00
exim-html Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
exim3 Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
exmh Modular Xorg support. 2007-02-15 14:46:27 +00:00
ezmlm Quell pkglint: don't forcibly hide output of shell commands. 2007-03-24 06:29:28 +00:00
ezmlm-idx Quell pkglint: don't forcibly hide output of shell commands. 2007-03-24 06:29:28 +00:00
faces Modular Xorg support. 2007-02-15 14:46:27 +00:00
fastforward
fetchmail Update "fetchmail" and "fetchmailconf" packages to version 6.3.8. 2007-04-14 22:14:29 +00:00
fetchmailconf Update "fetchmail" and "fetchmailconf" packages to version 6.3.8. 2007-04-14 22:14:29 +00:00
fetchyahoo Import fetchyahoo version 2.10.6. 2007-01-13 15:38:52 +00:00
fix-mime-charset Depend on enca to get more features. Bump PKGREVISION. 2007-03-18 18:56:47 +00:00
freepops Fix pthread linkage. 2007-06-12 22:38:52 +00:00
fromto Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
getmail Update to 4.7.5. From the changelog: 2007-06-07 01:35:15 +00:00
gld Update to gld-1.7. Only one change over 1.6: 2007-04-18 17:06:16 +00:00
gmime Update to 2.2.8: 2007-05-03 11:54:33 +00:00
GNUMail Make this compile on Solaris by using -Wl,-L instead of -L as pointed out 2007-05-25 23:56:55 +00:00
gnus pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
gotmail Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
greetdelay Update to 0.03. From the changelog: 2007-01-30 22:09:06 +00:00
grepmail Update grepmail to 5.3032. 2006-10-15 10:43:36 +00:00
hypermail USE_TOOLS+=yacc 2006-06-20 22:12:59 +00:00
ifile
ifile-procmail
imap-uw Since I'm more-or-less actively maintaining pine, might as well take its 2007-03-21 19:39:08 +00:00
imap-uw-utils Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
imapfilter Update mail/imapfilter to 1.3 2007-06-10 21:55:39 +00:00
imapproxy Update MASTER_SITES/HOMEPAGE -- mostly disappeared. 2007-03-04 11:29:57 +00:00
imapsync Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
imp Update to 4.1.4 2007-03-18 12:15:48 +00:00
incm
ingo Update to 1.1.3 2007-03-18 12:09:33 +00:00
isync PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
ja-mh Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
jchkmail Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
kbiff Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
libesmtp Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libetpan PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
libmilter fix a few pkglint complaints 2007-04-26 06:47:06 +00:00
libspf-alt Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
libsylph I'm not maintaining these packages anymore. 2007-05-22 11:03:49 +00:00
mail-notification opencdk shlib major changed; bump ABI depends and PKGREVISIONs of 2007-06-05 05:36:59 +00:00
mailagent Use variables instead of interactively asking the user to provide values. 2007-03-01 18:04:48 +00:00
mailcrypt emacs22 is ok. 2007-06-20 11:42:23 +00:00
maildrop Document why SPECIAL_PERMS is set the way it is. 2007-06-15 18:20:05 +00:00
mailfront Pass the runtime path to bglibs to the linker, now that they're dynamic. 2006-08-02 02:42:22 +00:00
mailgraph Use relational dependency instead of rrdtool-1*. Bump revision. 2007-05-21 09:59:56 +00:00
mailman Release maintenership; I will hopefully not have to use this software any more. 2007-03-28 20:55:58 +00:00
mailscanner Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mailserv Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
mailsync pkglint USE_LANGUAGES cleanup. Patch from Sergey Svishchev. 2007-02-22 19:30:02 +00:00
mailwrapper Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mairix Update mail/mairix to 0.20 (ok simonb@) 2007-06-12 15:23:48 +00:00
majordomo Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
mb2md
mdfrm Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
mess822 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
metamail Add missing RCS Id. 2006-09-16 15:29:35 +00:00
mew Teach emacs22{,nox11}. 2007-02-20 12:41:53 +00:00
mhonarc Update mhonarc to version 2.6.16. 2007-02-28 16:04:16 +00:00
milter-greylist Don't assume time_t and long are the same (on sparc64, they aren't). 2007-03-07 17:33:51 +00:00
milter-regex Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mimedefang Update mimedefang to 2.61. 2007-03-14 11:21:33 +00:00
mini_sendmail Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mpop Update to mpop-1.0.7. Install new locale file. Remove all patches. 2007-03-16 19:05:15 +00:00
msmtp List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-05 16:41:34 +00:00
mush The directory share/misc must be pre-created, otherwise it will be a 2006-10-09 02:41:11 +00:00
mutt Update "mutt" package to version 1.4.2.3. The new version fixes the 2007-05-27 13:34:16 +00:00
mutt-devel Update mail/mutt-devel to 1.15.16 2007-06-10 20:01:34 +00:00
nail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
newmail
newspipe Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
nmh Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
nullmailer Do SUBST_SED in post-configure rather than post-patch to ease patch 2007-03-24 06:49:02 +00:00
oe2mbx Update MASTER_SITES and HOMEPAGE. Mark as not for Linux, 2007-02-22 19:20:05 +00:00
offlineimap Update mail/offlineimap to 4.0.16 2007-02-16 15:46:21 +00:00
p5-Email-Abstract Updated to version 2.132. 2007-05-27 09:24:06 +00:00
p5-Email-MIME Changed MAINTAINER, Roman Kulik can no longer work on the packages. 2007-04-22 20:46:39 +00:00
p5-Email-MIME-ContentType Changed MAINTAINER, Roman Kulik can no longer work on the packages. 2007-04-22 20:46:39 +00:00
p5-Email-MIME-Encodings Changed MAINTAINER, Roman Kulik can no longer work on the packages. 2007-04-22 20:46:39 +00:00
p5-Email-Simple Updated to version 1.999. 2007-04-21 14:30:23 +00:00
p5-Email-Valid Updated to version 0.179. 2007-04-21 15:32:52 +00:00
p5-GMail-IMAPD Initial import of p5-GMail-IMAPD, version 0.93: 2006-08-09 08:03:33 +00:00
p5-IMAP-Admin Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Mail-Audit Updated to version 2.219. 2007-06-16 11:42:50 +00:00
p5-Mail-Box p5-File-Spec has gone (superseded by p5-PathTools), but the version in 2007-01-13 21:24:58 +00:00
p5-Mail-ClamAV Update to 0.20: 2007-02-21 22:10:47 +00:00
p5-Mail-DKIM Updated to version 0.26. 2007-06-12 15:27:21 +00:00
p5-Mail-Ezmlm Quell pkglint: add QMAILDIR to BUILD_DEFS. 2007-03-24 06:52:22 +00:00
p5-Mail-IMAPClient Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Mail-ListDetector Updated to version 1.01. 2007-05-27 09:41:24 +00:00
p5-Mail-Mbox-MessageParser Update to 1.5000: 2007-02-24 23:08:35 +00:00
p5-Mail-Milter give away to pkgsrc-users 2007-03-19 16:36:41 +00:00
p5-Mail-Sender Import mail/p5-Mail-Sender-0.8.13 into pkgsrc 2007-03-02 10:43:21 +00:00
p5-Mail-Sender-Easy Import mail/p5-Mail-Sender-Easy-0.0.5 into pkgsrc 2007-03-02 10:53:59 +00:00
p5-Mail-Sendmail Marked the package as supporting installation to DESTDIR. 2007-04-30 21:39:11 +00:00
p5-Mail-SPF-Query Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Mail-SRS give away to pkgsrc-users 2007-03-19 16:36:41 +00:00
p5-Mail-Webmail-Gmail Initial import of p5-Mail-Webmail-Gmail, version 1.08: 2006-08-09 07:59:11 +00:00
p5-MailTools Update to 1.77: 2007-06-01 20:46:53 +00:00
p5-MIME-Lite
p5-MIME-Lite-HTML Initial import of p5-MIME-Lite-HTML, version 1.21, into the NetBSD 2006-04-18 18:55:18 +00:00
p5-MIME-tools DESTDIR support. 2006-11-05 17:06:43 +00:00
p5-MIME-Types Update mail/p5-MIME-Types to 1.16. Changes from version 1.15 include: 2006-05-02 04:33:51 +00:00
p5-Net-LMTP
p5-Net-SMTP_auth Initial import of p5-Net-SMTP_auth version 0.08 into the NetBSD Packages 2006-10-01 21:44:17 +00:00
p5-razor-agents Updated to version 2.84. 2007-05-23 20:04:52 +00:00
p5-Sendmail-AccessDB
p5-Sendmail-PMilter give away to pkgsrc-users 2007-03-19 16:36:41 +00:00
p5-User-Identity
Pantomime Make this compile on Solaris by using -Wl,-L instead of -L as pointed out 2007-05-25 23:37:10 +00:00
pear-Mail PKGREVISION++ for the recent PEAR/PHP changes so that all child packages 2007-05-05 22:09:18 +00:00
pear-Mail_Mime PKGREVISION++ for the recent PEAR/PHP changes so that all child packages 2007-05-05 22:09:18 +00:00
perdition Give this away to pkgsrc-users. I don't have a use for this anymore, so I 2007-03-02 23:44:13 +00:00
perdition-bdb PKGREVISION bump for db4 shlib name change. 2007-06-08 13:11:53 +00:00
perdition-gdbm
perdition-ldap The databases/openldap package has been split in -client and -server component 2006-05-31 18:52:38 +00:00
perdition-mysql
perdition-odbc
perdition-postgresql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
pfqueue Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
php-imap Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pine Add an option fancythreads' to add Eduardo Chappa's fancy threading' UI 2007-03-03 21:54:23 +00:00
pine-pgp-filters
popa3d Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
poppassd Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
poppy Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
postfix Updated mail/postfix to 2.4.3 2007-06-01 03:34:06 +00:00
postfix-current Updated mail/postfix-current to 2.5-20070529 2007-05-30 07:58:29 +00:00
postgrey PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
prayer Update to 1.0.18. 2007-06-15 23:28:16 +00:00
procmail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
proxsmtp
pulsar Use BSD_INSTALL_* to set permission correctly. 2006-06-06 01:30:25 +00:00
py-libgmail Initial import of libgmail version 0.1.5.1, a python API to access 2007-05-04 20:08:54 +00:00
pymsgauth
qcheck Update MASTER_SITES. Set DIST_SUBDIR as distfile changed without 2007-03-15 04:41:39 +00:00
qgreylist Quell pkglint: add QMAILDIR to BUILD_DEFS. 2007-03-24 06:52:22 +00:00
qmail * Change some instances of ROOT_USER and ROOT_GROUP to BINOWN and BINGRP 2007-06-15 18:15:06 +00:00
qmail-conf Rename "SITES_* to "SITES.*" for file-specific lists of sites from which 2006-07-27 18:48:02 +00:00
qmail-lint Quell pkglint: add QMAILDIR to BUILD_DEFS. 2007-03-24 07:05:26 +00:00
qmail-qfilter Quell pkglint: add QMAILDIR and QMAIL_QFILTER_TMPDIR to BUILD_DEFS. 2007-03-24 07:06:43 +00:00
qmail-run Quell pkglint: add QMAIL_QUEUE_EXTRA to BUILD_DEFS. 2007-03-24 07:08:35 +00:00
qmailanalog
qmHandle Update to 1.2.3. From the changelog: 2007-06-01 15:25:04 +00:00
qmqtool Non-set[ug]id permssions are not so special. Get rid of SPECIAL_PERMS 2007-06-15 14:57:10 +00:00
qpopper Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
qtools
queue-fix
queue-repair This package is incompatible with mail/qmail, as it does not follow 2006-12-29 06:44:00 +00:00
rblcheck Forgot to remove that patch after rblcheck update; it is no longer 2006-09-13 05:13:29 +00:00
relay-ctrl Up too late last night. Dovecot's imap-login exports IP, so we can 2007-03-01 06:12:06 +00:00
ripmime Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
rmail-mime
roundcube s/\/roundcube\//\/roundcube/ from justin (at) shiningsilence.com 2007-06-06 18:40:16 +00:00
rss2email Update to 2.60. From the changelog: 2007-01-19 00:57:03 +00:00
ruby-actionmailer Update ruby-actionmailer to 1.3.3. 2007-03-17 11:14:29 +00:00
ruby-tmail Add a patch to fix RFC2231 encoding bug. 2007-04-02 13:36:21 +00:00
safecat Update to 1.13. From the changelog: 2007-01-15 11:01:24 +00:00
sendmail create manpage directories 2007-06-19 17:10:55 +00:00
sendmail813 create manpage directories 2007-06-19 17:10:55 +00:00
sendymail Import sendymail version 0.5.8. 2007-01-14 14:05:34 +00:00
serialmail
sigrot Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
sma Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
smtpfeed Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
solid-pop3d
spamass-milter Update spamass-milter to 0.3.1, based on patch provided by Jaap Boender 2006-10-12 12:19:09 +00:00
spamassassin Updated to version 3.2.1. 2007-06-12 21:43:30 +00:00
spamd Add _HAVE_SYSLOG_R to prevent conflicts. 2007-06-14 22:02:45 +00:00
spamdyke Update to 2.6.3. From the changelog: 2007-06-21 19:08:45 +00:00
spamprobe Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
squirrelmail Define PATCH files related variables strictly. 2007-05-23 12:17:12 +00:00
squirrelmail-decode Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
squirrelmail-locales Updated mail/squirrelmail-locales to 1.4.9 (20070106). 2007-01-10 14:24:26 +00:00
sqwebmail Use REAL_ROOT_{USER,GROUP} in INSTALL scripts. 2007-06-15 18:30:31 +00:00
ssmtp
sylpheed Update to 2.4.2: 2007-05-21 05:07:00 +00:00
sylpheed-claws PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
sylpheed-devel Update to 2.4.0rc: 2007-04-18 14:13:38 +00:00
sympa * Change some instances of ROOT_USER and ROOT_GROUP to BINOWN and BINGRP 2007-06-15 18:15:06 +00:00
t-prot Initial import of mail/t-prot-2.4 to the packages collection. 2007-04-15 21:18:46 +00:00
teapop Needs perl. Bump revision. 2006-12-06 19:44:46 +00:00
thunderbird Include sqlite3 locking patch from Firefox. 2007-06-15 16:11:41 +00:00
thunderbird-bin-nightly Use Makefile.common from seamonkey-bin-nightly dir instead of 2006-09-24 16:44:36 +00:00
thunderbird-gtk1 Update thunderbrd and thunderbird-gtk1 to 2.0.0.4. 2007-06-15 08:55:29 +00:00
thunderbird15 Update thunderbird15 and thunderbird15-gtk1 to 1.5.0.12 (they skipped .11 to stay 2007-05-31 21:36:52 +00:00
thunderbird15-gtk1 Update thunderbird15 and thunderbird15-gtk1 to 1.5.0.12 (they skipped .11 to stay 2007-05-31 21:36:52 +00:00
tmda Improve interface to tofmipd rc.d script, akin to that of qmail-run. 2007-02-27 00:18:46 +00:00
tnef Update to 1.4.3: 2006-11-18 21:08:17 +00:00
tnef2txt
turba Update to 2.1.4 2007-03-18 12:14:05 +00:00
up-imapproxy Update up-imapproxy pacakge to 1.2.5. 2007-06-07 15:12:01 +00:00
vm Use a common PLIST by taking advantage of the variables exported by 2006-04-05 15:50:27 +00:00
wl Fix dependeny on emacs-w3m -- there is no version 1.19, and the 2007-04-01 08:37:29 +00:00
wmbiff opencdk shlib major changed; bump ABI depends and PKGREVISIONs of 2007-06-05 05:36:59 +00:00
wmmail Modular Xorg support. 2007-02-06 18:53:45 +00:00
xbiff Fix man page section on Linux. from Ole Andre Rodlie on pkgsrc-users. 2007-06-19 09:39:10 +00:00
xbuffy Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
xfmail Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
xmailbox Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
xmailwatcher Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
yatsvrs Fix build on DragonFly 1.6+. 2006-09-22 18:58:59 +00:00
YoSucker
Makefile Add and enable freepops. 2007-06-05 05:57:24 +00:00