summaryrefslogtreecommitdiff
path: root/mail
AgeCommit message (Collapse)AuthorFilesLines
2005-07-22Update sylpheed-devel to 2.0rc, main changes are:chris2-6/+6
* The IMAP4rev1 code conversion was fixed so that it can handle folder names that include '+' correctly. * The correct row is selected after moving or deleting a message now when sorting is enabled. * The line-wrap of composition was modified so that it doesn't break line after '/' (slash) to protect file path etc. * The duplicated insertion when a text file is dragged onto the composition window was fixed. * The cache discrepancy problem of the draft folder was fixed. * Temporary files are now cleaned up also on startup.
2005-07-22Include patch for fetchmail 6.2.5.2 because of CAN-2005-2335.frueauf3-3/+188
For more details have a look at http://fetchmail.berlios.de/fetchmail-SA-2005-01.txt Changes listed within the NEWS file since 6.2.5: fetchmail-6.2.5.2 (Fri Jul 22 01:52 GMT 2005): * NOTE: Due to a Makefile.in bug, you may need to use GNU make. * SECURITY FIX: truncate UIDL replies, lest malicious or compromised POP3 servers overflow fetchmail's stack. Debian bug #212762. This is a remote root exploit. CVE Name: CAN-2005-2335. Thanks: Miloslav Trmac for pointing out the fix in 6.2.5.1 was buggy. Thanks: Ludwig Nussel for a much simpler fix. * Critical fix: omit blank between MAIL FROM: and <user@example.org>, as this causes mail loss with some listeners. * Fix: POP2 driver wouldn't properly check authentication failure. * Sunil Shetye's fix to force fetchsizelimit to 1 for APOP and RPOP.
2005-07-22Updated postfix to 2.2.5martti2-6/+6
Postfix 2.2.5 addresses some portability problems with LP64 platforms that broke SMTP connection caching, and makes SMTP connection caching more failure tolerant. These fixes are back-ported from the experimental (2.3) release series. The connection caching protocol has changed, so you will need to "postfix reload" after upgrading.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz9-18/+18
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-21Add "BEFORE: mail" to rc.d script to make this start before sendmail.tv2-2/+4
Bump PKGREVISION for this (and other prior last-minute) changes.
2005-07-21use ${LDFLAGS} instead of building our own library rpath argument togrant1-5/+5
find the BerkeleyDB library.
2005-07-21include ${LDFLAGS} in DBMLIB passed in MAKE_ENV, so the correctgrant1-2/+2
library path is passed for linking against the BerkeleyDB library.
2005-07-20bleh! committed wrong copy of this! fix!tv1-3/+5
2005-07-20one more quickfix: default socket to /var/run so Sendmail's happytv1-3/+3
2005-07-20Make pidfile name match rcvar (without dash).tv1-2/+2
2005-07-20+dk-miltertv1-1/+2
2005-07-20Add dk-milter 0.3.0, based on adrianp's dk-milter package fromtv8-0/+164
the pkgsrc-wip project. (Take ownership with adrianp's permission.) ===== The dk-milter package is an open source implementation of the DomainKeys sender authentication system proposed by Yahoo!, Inc. It consists of a library that implements the DomainKeys service, and a milter-based filter application that can plug in to the sendmail MTA to provide that service to sufficiently recent sendmail MTAs. An optional asynchronous resolver library is also provided to work around limitations of the basic BIND resolver which comes installed on most systems.
2005-07-20Add USE_MSGFMT_PLURALS=yes.kristerw1-1/+2
2005-07-20Sync to squirrelmail package; some modification to MESSAGES:taca1-4/+4
* remove trailing white space. * use www.example.com as example URL.
2005-07-20- Allow depends on ja-squirrelmail package in buildlink3.mk.taca2-6/+6
- Some modification to MESSAGES: * remove trailing white space. * use www.example.com as example URL.
2005-07-20update exim to 4.52.grant2-6/+7
summary of changes since 4.51 (general bug fixes and portability fixes ommitted for brevity, see the ChangeLog for details): Exim version 4.52 ----------------- TF/01 Added support for Client SMTP Authorization. See NewStuff for details. PH/02 Reduce the amount of output that "make" produces by default. Full output can still be requested. PH/04 Installed a modified version of Tony Finch's patch to make submission mode fix the return path as well as the Sender: header line, and to add a /name= option so that you can make the user's friendly name appear in the header line. TF/03 Added the control = fakedefer ACL modifier. TF/04 Added the ratelimit ACL condition. See NewStuff for details. Thanks to Mark Lowes for thorough testing. TK/02 Rewrote SPF support to work with libspf2 versions >1.2.0. TK/03 Merged latest SRS patch from Miles Wilton. TK/04 Added simple SPF lookup method in EXPERIMENTAL_SPF. See NewStuff for details. Thanks to Chris Webb <chris@arachsys.com> for the patch! PH/07 Added "fullpostmaster" verify option, which does a check to <postmaster> without a domain if the check to <postmaster@domain> fails. SC/01 Eximstats: added -xls and the ability to specify output files (patch written by Frank Heydlauf). SC/02 Eximstats: use FileHandles for outputing results. SC/03 Eximstats: allow any combination of xls, txt, and html output. SC/06 Eximstats: added the -include_original_destination flag TK/06 MBOX spool code: Add real "From " MBOX separator line so the .eml file is really in mbox format (even though most programs do not really care). Patch from Alex Miller. TK/07 MBOX spool code: Add X-Envelope-From: and X-Envelope-To: headers. The latter is generated from $received_to and is only set if the message has one envelope recipient. SA can use these headers, obviously out-of-the-box. Patch from Alex Miller. PH/11 Upgraded appendfile so that quotas larger than 2G are now supported. This involved changing a lot of size variables from int to off_t. It should work with maildirs and everything. PH/12 Applied Alex Kiernan's patch for the API change for the error callback function for BDB 4.3. PH/13 Changed auto_thaw such that it does not apply to bounce messages. PH/14 Imported PCRE 6.0; this was more than just a trivial operation because the sources for PCRE have been re-arranged and more files are now involved. PH/16 Applied Matthew Newton's patch to exicyclog: "If log_file_path is set in the configuration file to be ":syslog", then the script "guesses" where the logs files are, rather than using the compiled in default. In our case the guess is not the same as the compiled default, so the script suddenly stopped working when I started to use syslog. The patch checks to see if log_file_path is "". If so, it attempts to read it from exim with no configuration file to get the compiled in version, before it falls back to the previous guessing code." TK/09 Added "prvs" and "prvscheck" expansion items. These help a lot with implementing BATV in an Exim configuration. See NewStuff for the gory details. PH/18 If the "use_postmaster" option was set for a recipient callout together with the "random" option, the postmaster address was used as the MAIL FROM address for the random test, but not for the subsequent recipient test. It is now used for both. PH/19 Applied Michael Haardt's patch to update Sieve to RFC3028bis. "The patch removes a few documentation additions to RFC 3028, because the latest draft now contains them. It adds the new en;ascii-case comparator and a new error check for 8bit text in MIME parts. Comparator and require names are now matched exactly. I enabled the subaddress extension, but it is not well tested yet (read: it works for me)." PH/23 Added daemon_startup_retries and daemon_startup_sleep. PH/24 Added ${if match_ip condition. PH/28 Changed -d+all to exclude +memory, because that information is very rarely of interest, but it makes the output a lot bigger. People tend to do -d+all out of habit. PH/30 Exim's DNS code uses the original T_xxx names for DNS record times. These aren't the modern standard, and it seems that some systems' include files don't always have them. Exim was already checking for some of the newer ones like T_AAAA, and defining it itself. I've added checks for all the record types that Exim uses. TK/11 Domainkeys: Change the logic how the "testing" policy flag is retrieved from DNS. If the selector record carries the flag, it now has precedence over the domain-wide flag. SC/09 Eximstats: added the -show_rt<list> and the -show_dt<list> flags as requested by Marc Sherman. SC/10 Eximstats: added histograms for user specified patterns as requested by Marc Sherman.
2005-07-20Add and enable mailfront.schmonz1-1/+2
2005-07-20Initial import of mailfront, a package containing customizeableschmonz5-0/+128
network front-ends for mail servers. It contains complete SMTP, QMQP, QMTP, and POP3 front-ends as well as an authentication module for IMAP. The mail delivery front-ends also contain internal address filtering features.
2005-07-19Uncontinuate lines that have become short.schmonz1-3/+2
2005-07-19Use pkg_info's -B switch, now that we're sure to have it available,schmonz1-3/+2
obviating the need for a sed expression.
2005-07-19s/echo/@ECHO@/gschmonz2-4/+4
2005-07-19Distinguish package-specific options as such, supporting the old namesschmonz2-47/+23
via PKG_OPTIONS_LEGACY_OPTS until after the next branch.
2005-07-19Set LICENSE to cucipop-license.wiz1-2/+2
2005-07-18- Move option from "starttls" to "tls" as pointed out by schmonz@ in privateadrianp2-6/+7
email. - Use PKG_OPTIONS_LEGACY_OPTS to deal with the change.
2005-07-18Let djbware.mk provide paths to bglibs.schmonz1-3/+1
2005-07-18Updated mail/squirrelmail-localesmartti3-721/+69
* sync with squirrelmail 1.4.5
2005-07-18Updated mail/squirrelmail to 1.4.5martti6-676/+36
* lots of bug fixes * translation updates
2005-07-18Updated mail/ja-squirrelmail to 1.4.5martti3-19/+31
* lots of bug fixes * translation updates
2005-07-18This package needs perl to run, for the bogoupgrade command.seb1-2/+3
Bump PKGREVISION to 3.
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam4-8/+8
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-07-16Update to 1.3.2, provided by the maintainer Robert Lillack inwiz5-8/+65
private mail. New in 1.3.2 - support for matching arbitrary headers in rules - bugfixes pkgsrc includes additional changes: - fix for http://secunia.com/advisories/15977/ - work around an annoying header parsing issue which resulted in totally garbled date sorting - work around random SIGSEVs
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam30-74/+61
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam3-6/+6
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
2005-07-14Author updated the description of "panther.patch" to mention itschmonz1-4/+4
works on Tiger as well. No change to the patch itself.
2005-07-14Update sylpheed-devel to 2.0.0beta6, main changes are:chris2-6/+6
* A new application icon was added, and it is now used as a default window icon. * A margin was added for the summary view when scrolling. * The folder selection dialog now displays new/unread information for each folders. * The displayed file size of attachments became more accurate. * The filter rules are now modified after folders are moved. * Several alert dialogs were modified. * The line-wrap of composition was modified so that it doesn't break line after '-' (hyphen) to protect e-mail address etc. * UTF-8 text file is now properly inserted in composition window. * The Content-Type's charset is used as a fallback encoding of broken header strings on reply. * The problem was fixed that signature was not switched properly by the account selection in re-edit mode or after editing with external editor. * Attached files without text/* as the Content-Type is not uncanonicalized anymore. * The URI parser of the text view was modified. * The cache discrepancy problem of the queue folder was fixed.
2005-07-14Rename queue_repair to queue-repair, in keeping with the package nameschmonz7-14/+11
and updated HOMEPAGE. The installed command is still "queue_repair".
2005-07-14Simplify, simplify. Take advantage of DJB_CONFIG_CMDS, CPPFLAGS, LDFLAGS.schmonz1-25/+7
2005-07-14Force use of pkgsrc libmilter, not builtin. If the builtin version is 8.12tv1-1/+5
(as with NetBSD 2, for instance), but pkgsrc sendmail 8.13 is installed, then clamav will attempt to use the 8.13 milter API, and fail linking. (It probably should use an autoconf symbol test instead.) This change forces an API at least new enough to match the latest version offered via pkgsrc; and since libmilter is a static library, it still ends up with no runtime DEPENDS. No PKGREVISION bump required, as milter is a non-default option.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam27-56/+56
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-07-13Use pre-configure instead of post-patch to remove the *.orig files.martti1-2/+2
This will help with the patch creation. Suggested by Takahiro Kambe in a private mail.
2005-07-12Update to 0.442. From the changelog:schmonz3-16/+14
-Added a "sql" file in the "LIST/mod" directory on creation of lists. This fixes a long-standing bug where moderator addresses are not stored in SQL. NOTE: Running ezmlm-make -e or -+ on a moderated list that has SQL enabled will cause moderation to fail due to the moderator subscriber list now being accessed in SQL. You will need to run the following command: ezmlm-list -M $DIR/mod | ezmlm-sub $DIR/mod -Fixed bug in pgsql searchlog query. -Fixed bug in ezmlm-request handling of multi-line subjects.
2005-07-12use ${NOLOGIN}, not hardcoded /sbin/nologin. fixes install on Solarisgrant2-4/+4
and others.
2005-07-09Update Sylpheed to 2.0.0beta5, lots of changes since 1.9.12:chris3-8/+9
* 2.0.0beta5 * The order of the buttons of dialogs now complies with GNOME Human Interface Guidelines (configurable with 'Common preferences/Interface/ Make the order of buttons comply with GNOME HIG'). * Existing window is put in front when trying to re-edit draft/queue messages which are already open. * The toolbar and special folder icons are replaced with new png images which are based on GNOME icon theme. * The Sylpheed logo of the about dialog was replaced with new one. * The crash when cancelling the file selection dialog of vCard/JPilot by Escape key was fixed. * 2.0.0beta4 * The feature to move folders within the same mailbox was implemented. * The flag changes by manual filtering on IMAP4 folders are now reflected to IMAP4 server. * A warning is displayed on the first run if the locale encoding is not UTF-8 but the environmental variable G_FILENAME_ENCODING is not set. * A warning is displayed when sending message if it exceeds the hard line length limit (998 bytes). * Other minor bugs were fixed. * 2.0.0beta3 * The strict checking of the integrity of summary caches was disabled by default, and the performance of displaying summary was improved. * The columns of the summary view became reorderable by drag and drop. * An option to execute command when new messages arrive was added. * 'Compose new message', 'Add to address book' and 'Open with Web browser' was added to the context menu of the text view. * Encryption is enabled by default when replying to encrypted messages. * GPGME and OpenSSL support are now enabled by default. * The bug that caused failure of parsing IMAP4 response if embedded null characters appeared in message headers. * Selected text is used on reply even if the Attachment tab is selected. * The quote color setting dialog works properly now. * 2.0.0beta2 * The junk mail filter setting was integrated into the common preferences, and 'Tools/Filter junk mails' menus were added. * The behavior of the flag search was modified. * The bug that the change of color labels was not saved was fixed. * The 'Insert signature' on the composition window now replaces the current signature, or add a new one to the buttom. * The bug that MIME headers were not properly parsed on some locales (such as Turkish) was fixed. * A possible crash when moving/deleting messages while the summary is sorted was fixed. * Wrong display of unread message number on some condition was fixed. * The scroll position of the summary when opening folders was fixed. * Sending messages by external command now checks for its exit status. * 2.0.0beta1 * A feature to assist junk mail control was added. * An option to apply filter rules to sent messages was added. * The progress dialog was reimplemented using GtkTreeView. * The selection handling of the summary view was optimized a bit. * The drag and drop from the summary view was improved. * The Japanese auto-detection is always enabled if the locale string begins with "ja". * Hebrew encodings support was added. * Lithuanian translation was added. * The scanning of folders right after an IMAP4 account is created was disabled for performance issue. * Currently selected messages are skipped now when searching unread messages. * The typeahead search of the summary view was disabled. * The sylpheed.spec file was updated. * Several bugs were fixed.
2005-07-08Changes 1.4.2:adam2-6/+6
- The 'connect_timeout' setting was replaced by a 'timeout' setting that applies to all network operations. The old option and command are still accepted, but they are not restricted to connection attempts anymore. - Native language support (NLS) was added. Currently the only supported language besides english is german, but it is easy to add more translations (hint, hint)! Changes 1.4.1: - Only bug fixes, no new features.
2005-07-07Updated ja-squirrelmail to 1.4.4nb1martti4-515/+83
* sync with mail/squirrelmail * use the squirrelmail-1.4.4-ja-20050616 patch
2005-07-07CONFLICTS with ja-squirrelspellmartti1-1/+2
2005-07-07Drop trailing spacemartti1-2/+2
2005-07-06Added some common code for squirrelmail plugins. From cube@ in a private mail.martti1-0/+25
2005-07-05Update to 0.441. From the changelog:schmonz5-38/+15
-Fixed critical one-off bug in both *SQL configuration parsers. Thanks Jim Winstead. -Fixed lack of quoting in PgSQL subscribe code. Thanks Dan O'Neill. -Updated ezmlm-cgi to generate valid XHTML/CSS output. Thanks Brian Ghidinelli -Fixed readwrite.h to work on LP64 systems. Thanks Amitai Schlair -Don't clobber msgsize file on re-make. Thanks Stephen Quinney. -ezmlm-test can now be run by any user, in any writeable directory. -Put a valid recipient into the To: header in moderation messages. pkgsrc changes: declare "mysql" and "pgsql" options as part of a "database" option group.
2005-07-04update to 1.2.3drochner3-10/+7
changes: -bugfixes -updated translations