summaryrefslogtreecommitdiff
path: root/mail
AgeCommit message (Collapse)AuthorFilesLines
2003-12-24See CHANGES-0.15 for the full (232 line) list of changes...jonb2-5/+5
Primarily portability and minor bug fixes, a few new minor features, better HTML parsing, nothing dramatic. Note to self: tell authors about how their config script in 0.15.11 is badly broken WRT needing and figuring out -ldb4 instead of -ldb before the next upgrade of this package is painful. 0.15.7 is the current stable version, so this may not be an issue at all.
2003-12-24s/@netbsd.org/@NetBSD.org/ in MAINTAINER.jmmv5-10/+10
2003-12-23Link against necessary network libraries on Solaris.sketch1-1/+2
2003-12-23Update to 2.1.3 from pkgsrc-wip via Todd Vierling. This also closesxtraeme12-497/+1590
PR pkg/22820. Changes: - Closed a cross-site scripting exploit in the create cgi script. - Improvements in the performance of the bounce processor. Now, instead of processing each bounce immediately (which can cause severe lock contention), bounce events are queued. Every 15 minutes by default, the queued bounce events are processed en masse, on a list-per-list basis, so that each list only needs to be locked once. - When some or all of a message's recipients have temporary delivery failures, the message is moved to a "retry" queue. This queue wakes up occasionally and moves the file back to the outgoing queue for attempted redelivery. This should fix most observed OutgoingRunner 100% cpu consumption, especially for bounces to local recipients when using the Postfix MTA. - Optional support for fsync()'ing qfile data after writing. Under some catastrophic system failures (e.g. power lose), it would be possible to lose messages because the data wasn't sync'd to disk. By setting SYNC_AFTER_WRITE to True in Mailman/Queue/Switchboard.py, you can force Mailman to fsync() queue files after flushing them. The benefits are debatable for most operating environments, and you must ensure that your Python has the os.fsync() function defined before enabling this feature (it isn't, even on all Unix-like operating systems). And more... please review Changelog to see a complete list of changes.
2003-12-18Updated grepmail to 5.22.grant2-5/+5
Major changes since 5.00: New in version 5.22: - X-Mailfolder header no longer has a line number when -n is used. (bugfix by Kevin Pfeiffer <pfeiffer@iu-bremen.de>) - New -B flag prints abbreviated headers (initial patch by Kevin Pfeiffer <pfeiffer@iu-bremen.de>) - Headers spanning multiple lines are now printed correctly in warnings and such. - Fixed a spurious warning which would be printed if caching was not enabled. - grepmail will now disable caching if the caching version of Mail::Mbox::MessageParser can not be loaded, instead of exiting. New in version 5.21: - Fixed line ending bugs under MS-DOS/Windows. New in version 5.20: - Added speed testing to the distribution - Fixed Makefile.PL so that test modules would not be installed. - Changed testing to use PERLRUN instead of FULLPERLRUN, which is not available with older versions of MakeMaker that ship with older versions of Perl. (Thanks to Ed Avis <ed.avis@kbcfp.com> for catching this.) - Fixed interactive installation problems. (Thanks to Joey Hess <joeyh@debian.org> for catching this (again).) - Fixed broken searching of $HOME/mail, $HOME/Mail, and $HOME/Mailbox directories when a mail folder can not be found. Changed $MAIL to $MAILDIR since $MAIL usually points to the user's inbox. (Bug found and initial patch by Peter Cordes <peter@llama.nslug.ns.ca>.) - Cache file permissions are now set to protect against prying eyes. (Patch by Joey Hess <joey@kitenet.net>) - The user can now specify the cache file location with the -C flag. - Fixed compatibility problems with perl 5.005_01 New in version 5.10: - Extracted mail parsing into the new Mail::Mbox::MessageParser module. - Fixed small performance loss bugs in short-circuit matching of headers which were introduced in the last version - Fixed some uses of uninitialized values (Originally reported by Ed Avis <ed.avis@kbcfp.com>.) - Improved performance a bit. - The Makefile.PL now uses the default values when run non-interactively. - Caching is now enabled by default. (It's no longer experimental.) Users can disable it during installation. - Date specifications without times (e.g. "today") are interpreted as midnight of the given day instead of the current time of that day. grepmail now relies on Date::Manip to handle this--users must upgrade Date::Manip to get this support. (Thanks to Reuben Thomas <rrt@sc3d.org> for working with Sullivan Beck <sbeck@cise.ufl.edu> to get TodayIsMidnight added to Date::Manip. Original bug report by Philip Douglass <philipsd@users.sourceforge.net>) - Restructured test cases
2003-12-18Sort.wiz1-2/+2
2003-12-18no need for PLIST_SUBST+=PKG_SYSCONFDIRgrant1-2/+1
2003-12-18kill some trailing whitespace (mmm, cutnpaste).grant1-4/+4
2003-12-17Updated p5-MailTools to 1.60.grant2-5/+5
Changes since 1.59: version 1.60: Wed Sep 24 09:20:30 CEST 2003 - [Henrique Martins] found that enclosing parenthesis were not correctly stripped when processing a Mail::Address. - [Tony Bowden] asked for a change in Mail::Address::name, where existing (probably correct) capitization is left intact. The _extract_name() can be called as method, is needed, such that it can be extended.
2003-12-15Remove patch line from distinfochris1-2/+1
2003-12-15Update sylpheed to 0.9.8a, only one change:chris3-18/+5
The bug that caused the failure of cache data read has been fixed. Also remove my workaround for the above.
2003-12-15Update to 0.5.1, with a patch from the author to make it compile.wiz3-5/+18
Changes: 2003-12-13 Version 0.5.1 * Procmail usage instructions added to manpage. * Fixed missing <algorithm> header in detector.cc (thanks to Jerome Warnier). 2003-11-26 Version 0.5.0 * ENCA support added (thanks to Volodymyr M. Lisivka). * -I and -O options added to exclude some charsets from processing (thanks to Ingvarr Zhmakin).
2003-12-15Add a workaround patch to sylpheed for an issue with cache files appearingchris2-1/+14
to be corrupt. The use of setvbuf after a file has had IO performed causes a discard of data from that stream, so the cache file appears corrupt. This cures performance issues with imap folders, where all the headers were refetched all the time, rather than using the cached versions.
2003-12-14Depend on gpgme03 package. Bump PKGREVISION.wiz4-10/+12
2003-12-13Updated to 0.9.8xtraeme2-6/+5
Changes: o The offline mode has been implemented. o The performance of the scanning of MH folders has been improved on the platforms which support d_type in 'struct dirent'. o The error checking on moving/deleting messages has become strict. o When getting IMAP4 message list, it now fallbacks to FETCH command if server doesn't fully support SEARCH command. o Outbox for accounts are now correctly chosen when sending from queue. o Gettext has been upgraded to 0.12.1. o IPv6 support is now enabled by default. o Other bugfixes have been made.
2003-12-13update to latest nightly build from 2003-12-01.grant1-2/+2
2003-12-13Updated thunderbird-bin to 0.4.grant5-14/+26
Major changes since 0.3: * Improved Look The default theme for Mozilla Thunderbird has taken a huge leap forward. The theme is about 90% complete with only a few "classic" looking icons remaining. The message list pane now shows status for reply, forward and unread as icons directly on the message envelope instead of using text. The message list pane now has a separate sortable column for attachment status on a message. The Windows animated alert has a new look and feel. It now shows the Account name instead of your server user name. * Improved Interoperability With the OS Linux: Thunderbird properly dispatches browser URLs to the default browser. Read more about how to hook this up. Mac OS X: Added a Windows menu which makes it easier to manage open Thunderbird windows. The menu bar behaves correctly after closing all open windows. Mozilla Firebird and Thunderbird can be run at the same time with out the two builds interfering with URL dispatching between applications. Windows: Thunderbird can be set as the default mail client and/or as the default news client. * New Features Windows users can copy and paste images (including screen shots) from the Windows clipboard into HTML mail compose. Only mark a message as read when it has been open in the preview pane for a configurable number of seconds. More options for customizing toolbars the way you want them. Enchancements include: a mark button in the main mail window and copy/cut/paste icons in mail compose. Profile Migration from Netscape 4.x has seen a lot of improvements. A Palm Sync Address book conduit extension is now available for Thunderbird 0.4. POP Accounts now support aging on the server. * Recently Fixed Bugs No more new mail alert notifications when the incoming messages are Junk. The progress bar now appears in the mail 3-pane window when reporting progress for operations like downloading new mail or a message body. Auto Proxy URLs now work. POP Accounts: "Click here to download the rest of the message" now works. POP Accounts: A new filter action to delete a message from POP3 server if messages are left on the server by default. Junk Folder Purging works on all accounts and not just the first one. If you configure a mail server to use secure authentication but the server does not support it, Thunderbird no longer silently falls back to insecure authentication. Thunderbird brings up an error dialog and refuse to connect to the server. News error dialogs no longer hang the application. HTML Anchors in messages work. When threads are sorted by date, Thunderbird sorts by the newest message in the thread.
2003-12-13Bump PKGREVISION for atk library major bump.wiz3-6/+6
2003-12-12explicitly remove the share/doc/mutt/examples symlink before linkinggrant1-1/+2
it again, as ln(1) on Solaris won't overwrite an existing file. noted by agc.
2003-12-11Update to version 0.9.5.seb2-6/+5
Changes in version 0.9.5 - Fix of bug that appeared in daemon mode, where the date used in search queries (newer/older command) was not updated each time the program connected to the server. - Added an explanation on the way the program does the filtering (filter execution order, etc.) - Added new variable to control if a message is flagged as seen, when part of it (ie. some of its headers) is fetched. Changes in version 0.9.4 - Bug fix; rcopy/rmove failure, while trying to FETCH the header of a message. Changes in version 0.9.3 - Bug fix; default variable not substituted during rcopy/rmove.
2003-12-11call ln with -f -s, not -fs.grant1-2/+2
2003-12-11milter-spamc is another milter/spamassassin interface.manu1-1/+2
2003-12-11Yet another milter/spamassassin interfacemanu7-0/+147
2003-12-11Changes 0.9.7:adam4-29/+190
* the MIME parser has been rewritten * GnuPG/GPGME: the method of checking signed messages has been improved and the reporting of signed messages has been modified. * GnuPG/GPGME: decrypted messages are no longer saved and the user will now be prompted to decrypt each time the message is selected. * new icons have been added for MIME types * Filtering: 3 new actions have been added. * IMAP: UIDPLUS support for COPY and EXPUNGE has been added * Folder Properties: 'Procesing on startup' has been added. * LDAP: it is possible to browse an entry that was retrieved using an explicit LDAP search * LDAP: a 'contains' query is now possible * SpamAssassin plugin: updated spamc to version 2.60. Support for new libspamc transports has been added * updated translations: Croatian, French, German, Japanese, Polish, Spanish, Serbian, Simpilified Chinese, and Slovak * Bug fixes
2003-12-11Fix badly botched package list handling in case "mutt_dotlock" exists.tron1-3/+5
2003-12-09Update to 0.99.10.4 provided by Charlie Allom in PR pkg/23696.xtraeme5-172/+35
Changes: v0.99.10.4 2003-11-24 Timo Sirainen <tss@iki.fi> - Fixed reference counters in imap-login and pop3-login. IMAP AUTHENTICATE and POP3 AUTH commands could have left the process stuck doing nothing forever. v0.99.10.3 2003-11-24 Timo Sirainen <tss@iki.fi> - FETCH RFC822.HEADER returned message body as well - SUBSCRIBE broke subscription lists - LIST code rewritten, children flags should be correct now - SORT and THREAD could have given invalid replies - Partial BODY[...] fetches might have returned wrong data or at least performed worse than was necessary v0.99.10.1 2003-11-10 Timo Sirainen <tss@iki.fi> * mbox: \Draft and \Deleted flags used opposite flag chars in X-Status header. We were incompatible with other mbox accessing software. WARNING: Upgrading from previous version doesn't automatically swap the flags, so be careful not to accidentally expunge messages that had their \Draft flag changed to \Deleted. * Configuration file changes: - Whitespace at end of line is stripped, use quotes if you need it - # comments are supported after key=value lines. if you need '#' character, quote the value - Both " and ' quotes are supported. If you need to use them, '\' can be used for escaping. - mbox: COPY into same mailbox didn't work and could have corrupted the mailbox - Using Dovecot without index files would crash after using a while - Partial BODY[header] or BODY[part] fetches were buggy if client requested more data than was available in the header/part. - Partial BODY[...] fetches were buggy with messages that had CRLFs - Some BODY and BODYSTRUCTURE replies missed data for message/rfc822 MIME parts causing clients to break - SORT (SUBJECT) was buggy - Timezone fixes with Date-header This also includes Joshua Goodall's patch (now in the CVS tree) for CRAM-MD5 for the -release tag.
2003-12-08+p5-Mail-ClamAVgrant1-1/+2
2003-12-08Initial import of p5-Mail-ClamAV 0.04 into the NetBSD Packagesgrant4-0/+36
Collection. Clam AntiVirus is an anti-virus toolkit for UNIX. This module provides a simple interface to it's C API.
2003-12-08Bump PKGREVISION for libogg (or, in 5 cases, libao) updates.wiz1-2/+2
2003-12-08sort includesgrant1-2/+3
2003-12-08provide buildlink2.mk.grant1-0/+27
2003-12-07Update to 0.6.4:wiz4-15/+16
Changes made between 0.6.3 and 0.6.4 (2003/11/17). The uses of sprintf(3) have been replaced by the concat() function implemented locally. Also, add rc.d script to PLIST for binary packages.
2003-12-06Update "wmbiff" package to version 0.4.19. Changes since version 0.4.13:tron5-12/+57
- Fix test_tlscomm with the right signature for read() - Another bugfix to IMAP msglst when headers are abnormal. - Avoid strcpy for overlapping regions. - Update security.debian.rb for ruby 1.8. - Bugfix to avoid infinite loop when reading from IMAP. - Bugfix to msglst to allow capitalized header names. - Add msglst feature to Pop3 mailboxes. (Paolo Gianrossi) - Bugfix to OS X keychain use for panther. - On Mac, ask the keychain for passwords if askpass = internal:apple:keychain - Bugfix to an infinite loop found in the TLS interface. - Checks TLS certificates. See wmbiffrc(5) for details on the certfile option. Designed to work with mutt. - Show a busy mouse cursor while talking to remote servers, to show that wmbiff won't be responsive to mouse clicks for a little bit. - New buttontwo (middle click) action to complement action (left mouse click) and fetchcmd (right mouse). - #'s are now only comments in .wmbiffrc at the beginning of lines or following whitespace, allowing #'s in (most) passwords. - AppleScript examples for driving Apple's Mail application in sample.wmbiffrc - Special mailbox action 'msglst' brings up a transient window showing message headers from IMAP and program output for shell methods. This is intended to be faster than starting up a new mail program or re-executing a script. - Avoid repetitive error messages when disconnected. - Use conventional -geometry option handling. - Fix bug in 0.4.15 to re-enable *'s in IMAP passwords. - Frobnicate internally stored passwords, partially obfuscating them in memory. Not actually more secure, but harder to casually discover a password. - Tighten configuration file lines to more quickly detect misconfiguration. Add the -relax option if it is too paranoid. - Add support for -bg to round out -hi and -fg color specifiers. - Handle building on systems with both posix and gnu regex in different but conflicting files. - Restart wmbiff on SIGUSR1. You may need to use 'killall -USR1 wmbiff' if it gets stuck. - Restart wmbiff on ctrl-shift mouse 1. Package source related changes: - Make this work with version 1.1.90 of the "libgcrypt" package.
2003-12-05Update of mail/nail to 10.6. Changes since 10.5:cjep5-21/+22
* A nested MIME multipart message with a sub-part piped through an external program (such as HTML with w3m) caused nail to abort after SIGPIPE if the PAGER command terminated before reading the whole message. * A 'next' command following a 'hold' command displays the next message after the one the 'hold' applies to (Bugreport by Mike Sipser). This might not be exactly what POSIX specifies, but it makes sense and is consistent with traditional behavior. If you actually favor 'next' not to advance after 'hold', contact me and I'll add a configuration option for this. * If the value of the 'record' variable started with an environment variable reference such as '$HOME' or with a tilde and the 'outfolder' variable was set, it was not expanded correctly (Bugreport by Volker Kuhlmann).
2003-12-05Changes 1.1.1:adam3-66/+65
* Removed docs/NIBS from the OS X project file. * Minor improvements in the Account bundle. * Improvements when first starting GNUMail.app (first time user). * Minor improvements in the Fonts bundle for OS X. * Removed inexistant headers in the OS X project file. * Improved the message on OS X when the user removed all its mailboxes but left the preferences file around
2003-12-05Changes 1.1.1:adam4-144/+84
* Added support for read-only IMAP folders. * Improvements and bug-fixes.
2003-12-05update HOMEPAGE.grant1-2/+2
2003-12-04nuke a file from pkgsrc-wip.grant1-6/+0
2003-12-04_+thunderbird-bin{,-nightly}grant1-1/+3
2003-12-04import thunderbird-bin-nightly from pkgsrc-wip.grant6-0/+119
Mozilla Thunderbird is a redesign of the Mozilla mail component. The goal is to produce a cross platform stand alone mail application using the XUL user interface language.
2003-12-04import thunderbird-bin-0.3 from pkgsrc-wip.grant8-0/+126
Mozilla Thunderbird is a redesign of the Mozilla mail component. The goal is to produce a cross platform stand alone mail application using the XUL user interface language.
2003-12-04fix a thinkogrant1-3/+3
2003-12-04I guess I'll take maintainership of this now.grant1-2/+2
2003-12-04fix berkeley db support on at least NetBSD and Linux, using valuesgrant1-21/+24
harvested from databases/db/buildlink2.mk. defaults to db1 where possible unless EXIM_DB.db1 != YES. tidy up mysql and postgresql handling.
2003-12-04+exim3grant1-1/+2
2003-12-04import of exim3-3.36 from pkgsrc-wip.grant13-0/+1284
originally this package was taken from the netbsd-1-5-PATCH003 tag, and a number of updates have been made to it: - updated to 3.36. - added security patch from http://www.exim.org/pipermail/exim-announce/2003q3/000094.html - use a variety of new pkgsrc features for installing configuration files, creating directories, rc scripts, etc. - added mysql and postgresql support. - other general nits/fixes. exim3 is still widely used by a large number of sites, and this package has been added again to support existing installations.
2003-12-03Change MAINTAINER to "tech-pkg" instead of the previous "packages".kristerw1-2/+2
2003-12-03Replace any "/" in OPSYS name with a "-". Sendmail's buildreed2-6/+6
mechanism already does this, so pkgsrc for this should do the same. Make sure getipnodebyaddr is used under BSD/OS. This closes PR #23060.
2003-12-03Masao Uebayashi asked me to back out this change.ben2-8/+6
My apologies for any inconveniences from the original change.
2003-12-02print correct path to config files in spamd usage message.grant2-4/+28