summaryrefslogtreecommitdiff
path: root/mail
AgeCommit message (Collapse)AuthorFilesLines
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam16-32/+32
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam16-16/+32
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-07Update to 8.13.7; changelog below. (8.13.6nb3 already had the securitytv7-166/+29
fixes by patch.) While here, fix PR pkg/33821 by substituting pkgsrc's BINOWN, BINGRP, and INSTALL definitions into the installed share/sendmail/cf/Makefile. 8.13.7/8.13.7 2006/06/14 A malformed MIME structure with many parts can cause sendmail to crash while trying to send a mail due to a stack overflow, e.g., if the stack size is limited (ulimit -s). This happens because the recursion of the function mime8to7() was not restricted. The function is called for MIME 8 to 7 bit conversion and also to enforce MaxMimeHeaderLength. To work around this problem, recursive calls are limited to a depth of MAXMIMENESTING (20); message content after this limit is treated as opaque and is not checked further. Problem noted by Frank Sheiness. The changes to the I/O layer in 8.13.6 caused a regression for SASL mechanisms that use the security layer, e.g., DIGEST-MD5. Problem noted by Robert Stampfli. If a timeout occurs while reading a message (during the DATA phase) a df file might have been left behind in the queue. This was another side effect of the changes to the I/O layer made in 8.13.6. Several minor problems have been fixed that were found by a Coverity scan of sendmail 8 as part of the NetBSD distribution. See http://scan.coverity.com/ Note: the scan generated also a lot of "false positives", e.g., "error" reports about situations that cannot happen. Most of those code places are marked with lint(1) comments like NOTREACHED, but Coverity does not understand those. Hence an explicit assertion has been added in some cases to avoid those false positives. If the start of the sendmail daemon fails due to a configuration error then in some cases shared memory segments or pid files were not removed. If DSN support is disabled via access_db, then related ESMTP parameters for MAIL and RCPT should be rejected. Problem reported by Akihiro Sagawa. Enabling zlib compression in OpenSSL 0.9.8[ab] breaks the padding bug work-around. Hence if sendmail is linked against either of these versions and compression is available, the padding bug work-around is turned off. Based on patch from Victor Duchovni of Morgan Stanley. CONFIG: FEATURE(`dnsbl') and FEATURE(`enhdnsbl') used blackholes.mail-abuse.org as default domain for lookups, however, that list is no longer available. To avoid further problems, no default value is available anymore, but an argument must be specified. Portability: Fix compilation on OSF/1 for sfsasl.c. Patch from Pieter Bowman of the University of Utah.
2006-07-07LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... justjlam1-2/+2
set OVERRIDE_DIRDEPTH to find any libtool scripts deeper in the WRKSRC tree unless they're named something other than "libtool". SHLIBTOOL_OVERRIDE generally doesn't need to be specified either -- just define it to the empty list and shlibtool-override will look for libtool scripts.
2006-07-07Remove debugging and optimization options on Darwin, to be consistent withminskim2-11/+20
other platforms. No PKGREVISION bump because this package currently does not build on Darwin.
2006-07-07Make this package build with gcc-4.minskim2-1/+25
2006-07-05Sweep pkgsrc and convert packages that included intltool/buildlink3.mkjlam5-15/+10
to use instead "USE_TOOLS+=intltool". Remove now unused intltool/buildlink3.mk
2006-07-04Upgrade Dovecot to 1.0rc2. Changes:ghen2-6/+6
* disable_plaintext_auth=yes: Removed hardcoded 127.* and ::1 IP checks. Now we just assume that the connection is secure if the local IP matches the remote IP address. * SSL code rewrite which hopefully makes it work better than before. Seems to work correctly, but if you suddently have trouble with SSL connections this is likely the reason. + verbose_ssl=yes: Log also SSL alerts and BIO errors - If namespace's location field wasn't set, the default location was supposed to be used but it wasn't. - When copying ssl-parameters.dat file from /var/lib to /var/run its permissions went wrong if it couldn't be copied with hard linking. - Fixed filesystem quota plugin to work with BSDs. - Maildir: Saving mails didn't work if quota plugin was enabled (again) - Maildir: Messages' received time wasn't saved properly when saving/copying multiple messages at a time. Also if using quota plugin the S= size was only set for the first saved file, and even that was wrong. - passdb passwd-file: Don't require valid uid/gid fields if file isn't also being used as a userdb. - PostgreSQL: Handle failures better so that there won't be "invalid fd" errors in logs. - Don't try to expunge messages if the mailbox is read-only. It'll just cause our index files to go out of sync with the real mailbox and cause errors. - ANONYMOUS authentication mechanism couldn't work because anonymous_username setting wasn't passed from master process.
2006-07-04Fixed those pkglint warnings that concern the SUBST blocks.rillig1-5/+4
2006-07-04dovecot's ./configure wants pkg-config. Fixes PR pkg/33881.ghen1-1/+2
2006-07-02Update to 0.88.3:xtraeme2-7/+7
This version fixes handling of large binhex files and multiple alternatives in virus signatures.
2006-07-02Fixed pkglint warnings.rillig3-16/+16
2006-07-02Upgrade dovecot to 1.0rc1. Changes:ghen4-32/+12
* PAM: If user's password is expired, give "Password expired" error message to the user. Now actually working thanks to Vaidas Pilkauskas * Relicensed dovecot-auth, lib-sql and lib-ntlm to MIT license. See COPYING file for more information. * Abuse prevention: When creating a mailbox, limit the number of hierarchies (up to 20) and the length of the mailbox name within a hierarchy (up to 200 characters). * mbox: If saved mail doesn't end with LF, add it ourself so that the mails always have one empty line before the next From-line. + Added --with-statedir configure option which defaults to $localstatedir/lib/dovecot. ssl-parameters.dat is permanently stored in that directory and is copied to login_dirs from there. + IMAP: Support SASL-IR extension (SASL initial response) + Support initial SASL response with LOGIN mechanism. Patch by Anders Karlsson + Added PLAIN-MD4 password scheme. Patch by Andrey Panin. + Added support for XFS disk quotas. Patch by Pawel Jarosz + If another process deletes the opened mailbox, try to handle it without writing errors to log file. Handles the most common cases. + Added TLS support for LDAP if the library supports it. - SEARCH command was more or less broken with OR and NOT conditions - Dovecot corrupted mbox files which had CR+LF linefeeds in headers - MySQL code could have crashed while escaping strings - MD4 code with NTLM authentication was broken with 64bit systems. Patch by Andrey Panin - Plugin loading was broken in some OSes (eg. FreeBSD) - Several fixes to handling empty values in configuration file - Several fixes to dictionary quota backend and dict server. Also changed how they're configured. - deliver: Fixed plugin handling settings - mbox_min_index_size handling was somewhat broken - passdb passwd-file: extra_args field wasn't read unless the file was also used as userdb.
2006-07-01Update to 4.6.3. From the changelog:schmonz2-6/+6
- fix regression introduced in 4.6.0 where atime on mbox files would get updated (i.e. not set back), making it difficult for other programs to tell if there was new mail or not without actually opening the mbox. Thanks: Tim van der Molen. - fix regression: spurious errors thrown when required multidrop retriever parameter "envelope_recipient" not present in getmailrc file. Thanks: Elliot Schlegelmilch. - fix regression: getmail_fetch no longer properly supported external MDAs because of problems parsing the arguments to them. Thanks: ?. - change getmail's handling of regular expressions in the "locals" parameter of MultiSorter destination to allow it to handle backslashes correctly. Unfortunately this means complicating the configuration syntax slightly. Thanks: Tim van der Molen. - update filters to use new configuration code. Remove obsolete code.
2006-07-01Update to 1.03. From the changelog:schmonz5-33/+19
- Fixed the SMTP protocol module to send QUIT on protocol failures. - Added support for the SMTP AUTH LOGIN method. Thanks to Sean MacLennan for the suggestion. - Fixed the SMTP protocol module to send EHLO instead of HELO when doing authentication. Thanks to Norbert Tretkowski for pointing this out. - Fixed compile breakage on Solaris due to use of setenv. - Fixed netstring length bug in QMQP sending module. - If the sender name cannot be determined from the environment variables, try to pull it from /etc/passwd before using "unknown". Thanks Roderick Schertler.
2006-07-01Update to 2.59. From the changelog:schmonz4-38/+27
- Total rewrite of email code that should fix encoding problems - Added configurable timeout for nonresponsive feeds - Fixed incorrectly using text summary_detail instead of html content - Fixed bug with deleting feed 0 if no default email was set - Print name of feed that is being deleted - Finally added oft-requested support for enclosures. Any enclosures, such as a podcast MP3, will be listed under the entry URL - Made feed timeout compatible with Python versions 2.2 and higher, instead of v2.4 only - Added optional, configurable CSS styling to HTML mail. Set USE_CSS_STYLING=1 in your config.py to enable this. If you want to tweak the look, modify STYLE_SHEET. - Improved empty feed checking - Improved invalid feed messages - Unfortunately, rss2email is no longer compatible with Python v2.1. Two of the most serious lingering issues with rss2email were waiting forever for non-responsive feeds and its inablility to properly handle feeds with international characters. To properly fix these once and for all, rss2email now depends on functionality that was not available until Python v2.2. Hopefully this does not unduly inconvenience anyone that has not yet upgraded to a more current version of Python.
2006-06-29Needs msgfmt.joerg1-2/+2
2006-06-28Ensure that db4 is actually linked. Since it used -ldb on DragonFlyjoerg3-3/+17
before and might have picked up a wrong version, bump revision.
2006-06-27Fix default value of smtp_sasl_tls_security_options to usejlam3-3/+26
$smtp_sasl_security_options (as documented in postconf(5)) instead of $var_smtp_sasl_opts, which is never defined. This is a bug that exists in the Postfix-2.2.x series but has been fixed in the (current) Postfix-2.3.x series. This fixes PR pkg/29631 by Christoph Badura. Bump the PKGREVISION to 1.
2006-06-26Install couriertcpd into sbin, which is the location expected by stockjlam2-6/+6
courier-mta and courier-imap. Bump the PKGREVISION on all three packages.
2006-06-25www/horde3 has moved to www/hordedmcmahill1-2/+3
2006-06-25I will be the maintainer. I use this software frequently for a few months.reed1-2/+2
It seg faults (with some double free() it looks like) when DNS is not working. So after the freeze I will explore this more. I also see a new version is available -- maybe it fixes it...
2006-06-24Fix path to horde3 package in DEPENDS.wiz1-2/+2
2006-06-21Remove conflicting declaration of malloc(), realloc(), and free(); includeminskim2-6/+25
stdlib.h instead.
2006-06-20USE_TOOLS+=yaccminskim3-4/+8
2006-06-20add rcvar to freshclamd rcd script so that it obeys "freshclamd=NO" injnemeth2-2/+4
/etc/rc.conf
2006-06-20Force "nm -D" for DragonFly, otherwise symbol extraction from libcjoerg2-6/+15
doesn't work correctly.
2006-06-20The patch for imap/browsetonio1-0/+29
2006-06-20Add fix for imap code from mutt's cvs repository:tonio2-3/+4
A malicious IMAP server could cause at least DoS Bomp PKGREVISION
2006-06-20Add fix from the "mutt" CVS repository for a buffer overflow in thetron4-8/+42
IMAP code which could be exploited by a malicious IMAP server. Bump package revision.
2006-06-191.0beta9 didn't start when ssl_listen wasn't explicitly set in the config file.ghen3-3/+22
Add a fix from Dovecot's CVS, and bump PKGREVISION.
2006-06-18-imp4.wiz1-2/+1
2006-06-18Update to 3.6.8:xtraeme3-7/+8
BUGFIX: PostgreSQL fails to connect (always) BUGFIX: LDAP client will not build due to header missing from makefile
2006-06-18Removed an empty line to make the SUBST block appear in a singlerillig2-4/+2
paragraph.
2006-06-18Inserted an empty line after the SUBST block, for visual clarity.rillig1-1/+2
2006-06-17Fix substitution error... "user" instead of "owner".jlam4-8/+8
2006-06-17Modify the Courier services rc.d scripts so that:jlam15-54/+156
(1) they are more likely to do the right thing if the user sets rc_fast_and_loose; and (2) they pre-create any necessary directories prior to start the respective services. Also, fix the path to the courierwebadmin binary in SPECIAL_PERMS for the courier-mta package. Bump the PKGREVISION.
2006-06-16Modify (finally!) to use pkginstall framework. Bump PKGREVISION to 2.jlam5-147/+44
2006-06-16Remove some extraneous lines from the MESSAGE.jlam1-5/+1
2006-06-16Formatting nits for DESCR file.jlam1-6/+6
2006-06-16Needs pkg-config.joerg1-2/+2
2006-06-16Move mail/imp4 to mail/impadrianp7-704/+0
2006-06-16Add options.mk missed during the package moveadrianp1-0/+27
2006-06-16The old mail/imp4 package is now mail/impadrianp6-184/+331
The 3.x tree has been retired from pkgsrc
2006-06-15Pluralize INSTALL_TEMPLATE and DEINSTALL_TEMPLATE variable names as perjlam1-3/+3
the pkglint warning: As {INSTALL,DEINSTALL}_TEMPLATE is modified using "+=", its name should indicate plural. This does make the variables a bit more suggestive of the fact that they hold lists of values.
2006-06-15Add code to allow multiple -s options, so it can try several mail relays.martin2-7/+109
2006-06-15Split out deinstall portions of INSTALL scripts into DEINSTALL scripts.jlam6-14/+18
This avoids the need for a confusing line of the form: DEINSTALL_TEMPLATE+= path/to/INSTALL in the package Makefile, and actually removes the need to specify it altogether since by convention, the existence of the DEINSTALL script is enough to add it to DEINSTALL_TEMPLATE.
2006-06-15Fixed spelling.heinz1-1/+1
2006-06-15Remove USE_LANGUAGES; it is unneeded. (All libtoolized programs look fortv1-5/+2
C++ and Fortran by default, but doing so does not bomb configure or build, so there's no harm in the pkgsrc warnings.) Because this changes the dependencies on systems using pkgsrc-supplied gcc, bump PKGREVISION. <sigh>
2006-06-15Drop maintainership, I don't use them any longer.wiz1-2/+2