pkgsrc/mail
abs 76adf9c72e Update exim to 4.44 and exim-exiscan to 4.44_28.
Changes in Exim version 4.44

 1. Change 4.43/35 introduced a bug that caused file counts to be
    incorrectly computed when quota_filecount was set in an appendfile
    transport

 2. Closing a stable door: arrange to panic-die if setitimer() ever fails. The
    bug fixed in 4.43/37 would have been diagnosed quickly if this had been in
    place.

 3. Give more explanation in the error message when the command for a transport
    filter fails to execute.

 4. There are several places where Exim runs a non-Exim command in a
    subprocess. The SIGUSR1 signal should be disabled for these processes. This
    was being done only for the command run by the queryprogram router. It is
    now done for all such subprocesses. The other cases are: ${run, transport
    filters, and the commands run by the lmtp and pipe transports.

 5. Some older OS have a limit of 256 on the maximum number of file
    descriptors. Exim was using setrlimit() to set 1000 as a large value
    unlikely to be exceeded. Change 4.43/17 caused a lot of logging on these
    systems. I've change it so that if it can't get 1000, it tries for 256.

 6. "control=submission" was allowed, but had no effect, in a DATA ACL. This
    was an oversight, and furthermore, ever since the addition of extra
    controls (e.g. 4.43/32), the checks on when to allow different forms of
    "control" were broken. There should now be diagnostics for all cases when a
    control that does not make sense is encountered.

 7. $recipients is now available in the predata ACL (oversight).

 8. Tidy the search cache before the fork to do a delivery from a message
    received from the command line. Otherwise the child will trigger a lookup
    failure and thereby defer the delivery if it tries to use (for example) a
    cached ldap connection that the parent has called unbind on.

 9. If verify=recipient was followed by verify=sender in a RCPT ACL, the value
    of $address_data from the recipient verification was clobbered by the
    sender verification.

10. If FIXED_NEVER_USERS was defined, but empty, Exim was assuming the uid 0
    was its contents. (It was OK if the option was not defined at all.)

11. A "Completed" log line is now written for messages that are removed from
    the spool by the -Mrm option.

12. $host_address is now set to the target address during the checking of
    ignore_target_hosts.

13. When checking ignore_target_hosts for an ipliteral router, no host name was
    being passed; this would have caused $sender_host_name to have been used if
    matching the list had actually called for a host name (not very likely,
    since this list is usually IP addresses). A host name is now passed as
    "[x.x.x.x]".

14. Changed the calls that set up the SIGCHLD handler in the daemon to use the
    code that specifies a non-restarting handler (typically sigaction() in
    modern systems) in an attempt to fix a rare and obscure crash bug.

15. Narrowed the window for a race in the daemon that could cause it to ignore
    SIGCHLD signals. This is not a major problem, because they are used only to
    wake it up if nothing else does.

16. A malformed maildirsize file could cause Exim to calculate negative values
    for the mailbox size or file count. Odd effects could occur as a result.
    The maildirsize information is now recalculated if the size or filecount
    end up negative.

17. Added HAVE_SYS_STATVFS_H to the os.h file for Linux, as it has had this
    support for a long time. Removed HAVE_SYS_VFS_H.

18. Updated exipick to current release from John Jetmore.

19. Allow an empty sender to be matched against a lookup in an address list.
    Previously the only cases considered were a regular expression, or an
    empty pattern.

20. Exim went into a mad DNS lookup loop when doing a callout where the
    host was specified on the transport, if the DNS lookup yielded more than
    one IP address.

21. The RFC2047 encoding function was originally intended for short strings
    such as real names; it was not keeping to the 75-character limit for
    encoded words that the RFC imposes. It now respects the limit, and
    generates multiple encoded words if necessary. To be on the safe side, I
    have increased the buffer size for the ${rfc2047: expansion operator from
    1024 to 2048 bytes.

22. Failure to deliver a bounce message always caused it to be frozen, even if
    there was an errors_to setting on the router. The errors_to setting is now
    respected.

23. If an IPv6 address is given for -bh or -bhc, it is now converted to the
    canonical form (fully expanded) before being placed in
    $sender_host_address.

24. Updated eximstats to version 1.33

25. Include certificate and key file names in error message when GnuTLS fails
    to set them up, because the GnuTLS error message doesn't include the name
    of the failing file when there is a problem reading it.

26. Expand error message when OpenSSL has problems setting up cert/key files.
    As per change 25.

27. Reset the locale to "C" after calling embedded Perl, in case it was changed
    (this can affect the format of dates).

28. exim_tidydb, when checking for the continued existence of a message for
    which it has found a message-specific retry record, was not finding
    messages that were in split spool directories. Consequently, it was
    deleting retry records that should have stayed in existence.

29. eximstats updated to version 1.35
    1.34 - allow eximstats to parse syslog lines as well as mainlog lines
    1.35 - bugfix such that pie charts by volume are generated correctly

30. The SPA authentication driver was not abandoning authentication and moving
    on to the next authenticator when an expansion was forced to fail,
    contradicting the general specification for all authenticators. Instead it
    was generating a temporary error. It now behaves as specified.

31. The default ordering of permitted cipher suites for GnuTLS was pessimal
    (the order specifies the preference for clients). The order is now AES256,
    AES128, 3DES, ARCFOUR128.

31. Small patch to Sieve code - explicitly set From: when generating an
    autoreply.

32. Exim crashed if a remote delivery caused a very long error message to be
    recorded - for instance if somebody sent an entire SpamAssassin report back
    as a large number of 550 error lines. This bug was coincidentally fixed by
    increasing the size of one of Exim's internal buffers (big_buffer) that
    happened as part of the Exiscan merge. However, to be on the safe side, I
    have made the code more robust (and fixed the comments that describe what
    is going on).

33. Some experimental protocols are using DNS PTR records for new purposes. The
    keys for these records are domain names, not reversed IP addresses. The
    dnsdb PTR lookup now tests whether its key is an IP address. If not, it
    leaves it alone. Component reversal etc. now happens only for IP addresses.
    CAN-2005-0021

34. The host_aton() function is supposed to be passed a string that is known
    to be a valid IP address. However, in the case of IPv6 addresses, it was
    not checking this. This is a hostage to fortune. Exim now panics and dies
    if the condition is not met. A case was found where this could be provoked
    from a dnsdb PTR lookup with an IPv6 address that had more than 8
    components; fortuitously, this particular loophole had already been fixed
    by change 4.50/55 or 4.44/33 above.

    If there are any other similar loopholes, the new check in host_aton()
    itself should stop them being exploited. The report I received stated that
    data on the command line could provoke the exploit when Exim was running as
    exim, but did not say which command line option was involved. All I could
    find was the use of -be with a bad dnsdb PTR lookup, and in that case it is
    running as the user.
    CAN-2005-0021

35. There was a buffer overflow vulnerability in the SPA authentication code
    (which came originally from the Samba project). I have added a test to the
    spa_base64_to_bits() function which I hope fixes it.
    CAN-2005-0022

36. The daemon start-up calls getloadavg() while still root for those OS that
    need the first call to be done as root, but it missed one case: when
    deliver_queue_load_max is set with deliver_drop_privilege. This is
    necessary for the benefit of the queue runner, because there is no re-exec
    when deliver_drop_privilege is set.

37. Caching of lookup data for "hosts =" ACL conditions, when a named host list
    was in use, was not putting the data itself into the right store pool;
    consequently, it could be overwritten for a subsequent message in the same
    SMTP connection. (Fix 4.40/11 dealt with the non-cache case, but overlooked
    the caching.)

38. Sometimes the final signoff response after QUIT could fail to get
    transmitted in the non-TLS case. Testing !tls_active instead of tls_active
    < 0 before doing a fflush(). This bug looks as though it goes back to the
    introduction of TLS in release 3.20, but "sometimes" must have been rare
    because the tests only now provoked it.
2005-02-03 12:58:03 +00:00
..
anomy-sanitizer Update to anomy-sanitizer 1.69: 2004-12-29 18:45:49 +00:00
archivemail Patch to suppress some warning - from FreeBSD 2004-06-30 19:16:07 +00:00
autorespond Replace dependencies on "qmail or netqmail" with dependencies on qmail. 2004-08-22 00:23:55 +00:00
balsa Bump PKGREVISION for aspell dependency update. 2004-12-24 04:32:54 +00:00
balsa2 Bump PKGREVISION for aspell dependency update. 2004-12-24 04:32:54 +00:00
bbmail USE_LANGUAGES= c++ 2004-11-22 21:02:33 +00:00
bmf Use BSD_INSTALL_* instead of mkdir/cp to set ownership and permission 2004-12-13 23:18:12 +00:00
bogofilter Fix patch-ac (db4 patch). From UHO Yaranaika. Closes PR 28949, 2005-01-17 15:22:33 +00:00
bulk_mailer Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
clamav Bump PKGREVISION because of curl dependency bump. 2005-01-03 15:59:12 +00:00
clamsmtp Update to 1.3. 2005-02-01 00:39:19 +00:00
columba Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
coolmail
courier-auth Create a pam.buildlink3.mk file that is used by PAM-using packages. 2005-01-14 05:15:39 +00:00
courier-authldap Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
courier-authmysql use mk/mysql.buildlink3.mk instead of databases/mysql-client/buildlink3.mk, 2004-10-29 05:59:23 +00:00
courier-authpgsql Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL 2004-07-24 22:45:14 +00:00
courier-imap The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
courier-maildir Fix error in sharedindexupdate script where @DATADIR@ wasn't being 2004-07-15 06:49:33 +00:00
cucipop Rework the Berkeley DB detection in buildlink3: 2004-11-15 17:54:49 +00:00
cue update to 20050110. hide more sender-ID/SPF related fields by default. 2005-01-18 09:02:21 +00:00
cyrus-imapd Use VARBASE. 2004-12-29 15:42:37 +00:00
cyrus-imapd21 Use VARBASE. 2004-12-29 15:42:37 +00:00
cyrus-imapd22 Install fetchnews.8 as cyrus-fetchnews.8 to avoid a conflict with leafnode. 2005-01-11 03:58:22 +00:00
dbmail A config file and some rc.d scripts might help. Bump PKGREVISION. 2005-01-09 04:17:39 +00:00
deliver Add patches from Jim Bernard to make this build on -current and fix 2004-05-28 01:09:01 +00:00
demime Update demime to 1.1d. 2004-08-17 19:19:27 +00:00
distribute GNU patch needs "-p1" to handle patches for this package. 2004-12-06 22:34:35 +00:00
dot-forward Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
dovecot I'm the new maintainer. 2005-01-24 08:00:40 +00:00
drac Always create a ${TOOLS_DIR}/bin/rpcgen to wrap the real rpcgen. 2004-12-18 19:24:26 +00:00
dspam Update to 3.2.6 2005-01-19 22:33:59 +00:00
elm Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
elm-me Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
elmo Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
etach Use emacs.mk. 2004-05-08 15:10:58 +00:00
evolution apply a patch from evution CVS: 2005-01-25 15:23:46 +00:00
evolution-data-server Update to 1.0.3: 2004-12-28 21:48:12 +00:00
evolution12 as with 2.0.3: 2005-01-31 17:33:57 +00:00
evolution14 as with 2.0.3: 2005-01-25 19:08:55 +00:00
exim Update exim to 4.44 and exim-exiscan to 4.44_28. 2005-02-03 12:58:03 +00:00
exim-exiscan Update exim to 4.44 and exim-exiscan to 4.44_28. 2005-02-03 12:58:03 +00:00
exim-html Update exim to 4.43 from 4.42 2004-10-07 17:29:16 +00:00
exim3 The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
exmh We don't have the tk80 category; replace it with tk. 2005-01-22 15:45:59 +00:00
ezmlm Move -fno-builtin-log hack from Makefile to hacks.mk. 2005-01-08 17:54:34 +00:00
ezmlm-idx Update to 0.433. Changes from 0.432nb1: 2005-01-10 04:50:23 +00:00
faces Backout last change which broke building this package. 2004-12-04 04:43:12 +00:00
fastforward Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
fetchmail Remove definition of CRYPTO. It is no longer needed if 2005-01-21 20:45:09 +00:00
fetchmailconf fix URL for primary master site. 2005-01-19 16:28:37 +00:00
fix-mime-charset Update to 0.5.3: 2004-09-21 00:20:54 +00:00
fromto Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
getmail Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
gld This needs mysqld in REQUIRE as well. 2005-01-19 15:48:41 +00:00
gmime Remove inet6 from PKG_DEFAULT_OPTIONS. When USE_INET6 is defined it will set 2005-01-10 20:59:43 +00:00
GNUMail Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gnus Remove info files entries from PLIST. 2004-03-07 20:09:06 +00:00
grepmail Update grepmail to 5.30. Now requires p5-Mail-Mbox-MessageParser>=1.20. 2004-06-23 15:43:42 +00:00
hypermail patch-ab was removed from distinfo during last 2004-12-16 17:03:01 +00:00
ifile Correct checksum, distfile changed without version bump. 2004-12-12 23:39:36 +00:00
ifile-procmail Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
imap-uw fix my previous attempt to clarify a comment at the start 2005-01-31 11:38:22 +00:00
imap-uw-utils Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
imapfilter Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
imapproxy Convert to buildlink3. 2004-04-18 05:31:35 +00:00
imp - Add CONFICTS for newly imported imp 4.x packages 2005-01-16 21:46:05 +00:00
imp4 IMP is a set of PHP scripts that implement an IMAP/POP based webmail system. 2005-01-16 21:36:27 +00:00
incm Add trailing / to HOMEPAGEs 2003-12-30 17:27:31 +00:00
isync Enable pkgviews installation. 2004-12-26 17:49:35 +00:00
ja-mh Overhaul ja-mh package, update to ja-mh6-3.05. 2004-11-29 05:09:42 +00:00
ja-squirrelmail Make sure to change current directory to ${WRKSRC} before removing files 2005-01-26 15:02:34 +00:00
jchkmail Tweak an include file slighly so that it does not conflict with the 2004-12-11 14:13:34 +00:00
kbiff locale files moved to under ${PKGLOCALEDIR}/locale/... 2004-12-10 06:40:11 +00:00
libesmtp build fixes on irix 5: 2004-12-18 16:05:11 +00:00
libetpan Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libmilter Remove useless command that breaks on read-only pkgsrc trees. I wonder 2004-10-28 06:36:51 +00:00
libmilter812 Rename of current libmilter package to libmilter812 to make way for 2004-08-30 20:53:20 +00:00
libsieve Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libsnert No longer used. 2004-04-24 22:57:38 +00:00
libspf-alt Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
mail-notification Update to 1.0: 2004-12-05 08:44:09 +00:00
mailagent
mailcrypt Remove info files entries from PLIST. 2004-03-07 20:51:55 +00:00
maildrop Rework the Berkeley DB detection in buildlink3: 2004-11-15 17:54:49 +00:00
mailgraph Add mailgraph 1.10 2004-12-31 21:36:59 +00:00
mailman Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
mailscanner The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
mailserv Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
mailsync - Update mailsync from 4.4.4 -> 5.2.1 2004-11-16 18:56:46 +00:00
mailwrapper Fix installation if NO_MTREE is defined, as in the case for pkgviews. 2004-08-10 21:49:04 +00:00
mairix Initial import of mairix, a program for indexing and searching email 2005-01-25 00:19:40 +00:00
majordomo Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
mdfrm Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
mess822 Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
metamail Do not try to install a nonexistent file; it stops installation on 2004-06-20 02:52:28 +00:00
mew Run s|/usr/local|${PREFIX}|g substitution during configure stage, since it 2004-11-30 02:50:52 +00:00
mew3 * Take maintainership. 2004-11-30 02:49:38 +00:00
mhonarc Update MASTER_SITES 2004-06-26 16:22:04 +00:00
milter-greylist The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
milter-regex Take over maintainership of milter-regex (OKed by manu) 2004-06-11 23:17:50 +00:00
milter-sender Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
milter-spamc Convert to buildlink3. 2004-04-24 22:56:32 +00:00
mimedefang The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
mini_sendmail bl3ify and allow pkgviews installation. 2004-01-23 11:27:30 +00:00
msmtp Changes 1.2.4: 2005-01-19 15:30:25 +00:00
mush Move WRKSRC definition away from the first paragraph in a Makefile. 2004-01-20 12:18:15 +00:00
mutt apply patch from Jason Lingohr to add "buffy-size" option. 2005-01-01 22:05:26 +00:00
mutt-devel Remove obsolete variables. You'll want to use: 2004-11-17 19:56:49 +00:00
nail Use the buildlink for openssl and libiconv. This allows nail to build 2005-01-13 16:04:00 +00:00
newmail use bl3 so that gcc specific flags are stripped out. 2004-06-17 12:49:01 +00:00
nmh Make this package honour PKG_SYSCONFDIR by copying the configuration files 2005-01-16 19:19:46 +00:00
nullmailer Use VARBASE. 2004-12-29 15:21:50 +00:00
oe2mbx Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
offlineimap Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
p5-Email-Valid since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-IMAP-Admin since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-Audit since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-ClamAV Bump PKGREVISION because of curl dependency bump. 2005-01-03 15:59:12 +00:00
p5-Mail-IMAPClient since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-ListDetector since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-Mbox-MessageParser since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-Milter since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-Sendmail since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-SPF-Query since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Mail-SRS since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-MailTools since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-MIME-Lite since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-MIME-tools since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-MIME-Types - Update to 1.13 2004-12-29 13:21:44 +00:00
p5-razor-agents since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Sendmail-AccessDB since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Sendmail-PMilter since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-User-Identity - Update to 0.90 2004-12-29 13:16:59 +00:00
Pantomime Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
pear-Mail_Mime update for DIST_SUBDIR=pear 2004-11-27 13:33:52 +00:00
pfqueue Initial import of pfqueue-0.1.4. 2004-12-28 15:51:16 +00:00
php-imap now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safe 2004-11-05 17:11:39 +00:00
pine Fix botched update: The shlib major of libpico was supposed to be bumped. 2005-01-31 19:09:16 +00:00
pine-pgp-filters Import of pine-pgp-filters from pkgsrc-wip. (I packaged this.) 2004-06-05 21:42:36 +00:00
popa3d The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
poppassd Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
poppy Update HOMEPAGE and MASTER_SITES 2004-07-23 14:28:56 +00:00
postfix Apply NI_WITHSCOPEID patch only if the inet6 option is enabled. 2004-12-28 16:13:28 +00:00
postfix-current The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
postgrey The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
prayer Update to 1.0.12. From the changelog: 2005-01-09 00:07:46 +00:00
procmail Bump pkgrevision (to procmail-3.22nb1), for simonb's memory allocation 2004-01-20 03:24:44 +00:00
proxsmtp The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
pulsar Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qcheck
qgreylist Initial import of qgreylist-0.2, simple greylisting for qmail. 2004-08-29 15:32:12 +00:00
qmail Update URL to Paul Jarc's realrcptto patch. 2005-01-26 03:48:21 +00:00
qmail-conf Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
qmail-lint Update MASTER_SITES. 2004-08-30 16:49:45 +00:00
qmail-qfilter Update to 2.0. From the changelog: 2004-12-21 00:14:13 +00:00
qmail-run Move "User-settable rc.conf variables and their default values" 2004-12-29 16:18:41 +00:00
qmail-users Enable pkgviews installation. 2004-07-22 00:01:52 +00:00
qmailanalog Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
qmHandle The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
qpopper Update qpopper package to 4.0.5nb7. 2005-01-30 04:41:16 +00:00
qtools As with djbdns, patch the installer to avoid setting unusual 2004-12-22 18:36:50 +00:00
queue-fix Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
queue_repair Whitespace. 2004-08-30 12:39:19 +00:00
rblcheck Set USE_BUILDLINK3. Might fix SunOS build. 2004-12-16 15:42:58 +00:00
ripmime Set USE_BUILDLINK3. 2005-01-04 14:51:05 +00:00
rmail-mime
rss2email Update to 2.54 (and html2text-2.21). Bug fixes. 2004-08-28 07:50:24 +00:00
ruby-tmail Add RUBY_HAS_ARCHLIB which have machine dependent extention libraries. 2005-01-28 14:08:01 +00:00
safecat Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
sendmail Remove inet6 from PKG_DEFAULT_OPTIONS as this can cause the package 2005-01-02 11:59:36 +00:00
sendmail812 Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sigrot Convert to buildlink3. 2004-04-18 04:55:29 +00:00
sma Portability fix from Georg Schwarz in PR 28818; 2005-01-04 15:34:23 +00:00
smtpfeed
solid-pop3d Reset maintainer on his request. 2004-12-04 01:49:17 +00:00
spamass-milter The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
spamassassin Update to 3.0.2. From the changelog: 2005-01-15 21:44:55 +00:00
spamprobe Update spamprobe to 1.0a, patch sent via IRC by the maintainer. 2004-11-18 12:46:53 +00:00
spruce Reset maintainer on his request. 2004-11-27 21:02:02 +00:00
squirrelmail Make sure to change current directory to ${WRKSRC} before removing files 2005-01-26 15:38:40 +00:00
squirrelmail-locales Fixed WRKSRC 2005-01-24 20:40:44 +00:00
sqwebmail The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
ssmtp Update to 2.61, and obey USE_INET6. Change highlights: 2004-10-22 14:45:47 +00:00
sylpheed Bump PKGREVISIONs due to libtiff update. 2004-12-28 23:18:15 +00:00
sylpheed-claws Bump PKGREVISION for aspell dependency update. 2004-12-24 04:32:54 +00:00
sylpheed-claws-dillo-viewer Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sylpheed-claws-ghostscript-viewer Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sylpheed-claws-image-viewer Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sylpheed-claws-trayicon Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
sylpheed-gtk2 Update sylpheed-gtk2 to 1.0.0.20041224. 2004-12-26 04:12:58 +00:00
sympa 'if [ false ]; then ...' Yeah right... Fix my own stupidity. 2004-10-10 15:09:23 +00:00
teapop The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
thunderbird Update thunderbird & thunderbird-gtk2 to 1.0 2004-12-14 23:35:34 +00:00
thunderbird-bin-nightly the filename has a -gtk2 suffix. 2004-05-25 13:42:35 +00:00
thunderbird-gtk2 Update thunderbird & thunderbird-gtk2 to 1.0 2004-12-14 23:35:34 +00:00
tmda Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
tnef Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
tnef2txt Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
vm Remove info files entries from PLIST. 2004-03-07 21:46:31 +00:00
wl Update to 2.10.1, provided by Kouichirou Hiratsuka in PR 26956. 2004-09-19 13:41:24 +00:00
wmbiff Correct my e-mail address. 2004-11-27 11:28:59 +00:00
wmmail replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make. 2004-01-24 13:51:13 +00:00
xbuffy
xfmail Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xmailbox Convert to buildlink3. 2004-04-18 04:41:12 +00:00
xmailwatcher
yatsvrs Move gcc specific options to configure script; address to pkg PR/28900. 2005-01-08 09:39:56 +00:00
YoSucker PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
Makefile Add and enable mairix. 2005-01-25 00:20:25 +00:00