summaryrefslogtreecommitdiff
path: root/mail
AgeCommit message (Collapse)AuthorFilesLines
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he62-69/+124
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-10-18Fix build w/ GTK+ 2.14.xtnn6-1/+66
2008-10-18Update to 4.0.7. From the changelog:schmonz2-6/+6
VERSION 4.0.7: 10/17/2008 Changed Makefile.in to compile configuration.c in two steps: first use gcc to produce the preprocessed source, then use gcc to compile it. For some reason, gcc crashes on FreeBSD 6.0 when the file is compiled in one step. Thanks to K. Shantanu for reporting this one and Felix Buenemann for suggesting the fix. VERSION 4.0.6: 10/16/2008 Fixed a problem in examine_ip_in_rdns_keyword_entry() that was not correctly terminating the end of the keyword buffer, causing strstr() to search too far, leading to false negatives (and potentially segmentation faults). Thanks to Erald Troja for reporting this one. Fixed another problem in middleman() that was not correctly replacing _all_ of qmail's AUTH advertisements when the "smtp-auth-level" option is "always" or "always-encrypted". Thanks to Youri Kravatsky for reporting this one (again). Fixed the fix to a bug in nihdns_query() that was setting return_target_name_index to 0 in all cases. This was causing log messages to print the first RBL/RHSBL name instead of the one that actually matched. Thanks to Arthur Girardi for reporting this one (again). Reverted a change from 4.0.5 -- removing the usable_buf_input flag from middleman() meant could only tell if there was input in the buffer, not if any of it was actually usable. If the remote server delays sending its data for any reason, middleman() will loop rapidly to continually check if its buffered data can be sent to qmail. Removing the flag meant spamdyke was consuming 100% CPU while receiving messages with large attachments. Thanks to Paulo Henrique Fonseca for reporting this one. Added the "cputime" program to the "tests" folder to measure the CPU time used by a process. Neither the shell "time" command nor the POSIX "time" command seem to do that. Changed sendrecv to always wait() for its child processes so CPU accounting will be performed correctly. Fixed check_rhsbl() to correctly return the name of the matching RHSBL instead of an index that could be beyond the end of the array. Changed the values of LOG_USE_CONFIG_TEST, LOG_USE_STDERR and LOG_USE_SYSLOG to make none of them equal to 0. Because the "log-target" option is a CONFIG_TYPE_NAME_MULTIPLE option, it is set to 0 until the command line and all configuration files are parsed. When LOG_USE_CONFIG_TEST is 0, the progress messages from process_config_file() are sent to stderr until the configuration file is completely loaded. For Plesk users, xinetd sends stderr to the network connection, so the remote server gets the output. Thanks to Arthur Girdari for reporting this one and helping track it down.
2008-10-16update to 2.24.0drochner7-434/+496
This switches to the gnome-2.24 release branch.
2008-10-16Use the correct patch set for postfix-2.6-xxxxxxxx.martti4-34/+58
2008-10-16Added note about SQLite patch.martti2-2/+4
2008-10-16Updated mail/postfix-current to 2.6.20081012martti7-9/+401
* Bug fixes. * Added support for SQLite (pkg/39745)
2008-10-16Added support for SQLite (pkg/39745 by Sébastien BOCAHU.martti6-3/+395
No existing binary packages are affected so I didn't bump the revision...
2008-10-15Update to 3.6.1:smb54-435/+214
* 3.6.1 ------- * Claws Mail now requires libetpan 0.57 for IMAP and NNTP. * SSL support is now provided by gnuTLS exclusively. OpenSSL support has been dropped due to licensing issues. * Added /View/Fullscreen option. * Re-ordering of the filtering/processing condition and actions lists is now possible using drag'n'drop. * 3.6.0 ------- * Claws Mail now requires libetpan 0.56 for IMAP and NNTP * Spell checking is now provided by Enchant instead of Aspell. To build spell checker support, you will need the libenchant headers. * The S/MIME plugin is now part of this package. * IMAP, NNTP, and SSL are now supported in the Windows port. * Support for client SSL certificates. * Better support of SSL certificate stores, to be able to verify server certificates. * Renaming of newsgroups is possible. * "Always open message when selected" can now have three values: 'Never', 'Always' and 'When message view is visible'. * Unsaved server passwords can now be temporarily saved for the duration of the session. They can be cleared before the session expires by using '/Tools/Forget all session passwords'. * Auto-wrapping settings are now saved in drafted messages. * Support for basic auto-indentation in the Compose window. * Support for animated GIFs in the message view. * Type-ahead search in Filtering, Templates, Actions dialogs now select the result of the search. * Finer granularity in POP3 accounts' Remove After delay - hours in addition to days. * Spam/Ham flag is now stored on IMAP server when possible, using "Junk" and "NonJunk" keywords. * Use less precise intervals when possible for auto-checking, thus the CPU is woken up less frequently. * The warning icon in the main window is cleared when the error it relates to is clipped from the network log. * IMAP errors now reveal the server on which they happen. * All deprecated GTK interfaces have been replaced with their non-deprecated equivalents. * csv2addressbook.pl: Added support for FoxMail.
2008-10-15Updated mail/bogofilter to 1.1.7martti3-15/+15
* Lots of bug fixes and improvements since 1.0.3
2008-10-13Update to 4.0.5. From the changelog:schmonz2-6/+6
- If the idle timeout is not configured, it is now set to 20 minutes after qmail exits to prevent never-ending spamdyke processing. Thanks to Matthew Kettlewell for reporting this one. - Fixed the AUTH advertisements to display correctly when "smtp-auth-level" is "always" or "always-encrypted". Thanks to Youri Kravatsky for reporting this one. - Fixed a sequencing error that would cause qmail to exit prematurely, even if valid recipients could still possibly be given. Thanks to David Stiller for reporting this one. - Fixed the handling of unencoded null characters in messages (technically not legal) so spamdyke does become confused and timeout. Thanks to Arthur Girardi for reporting this one. - Fixed an issue in the DNS query code that was setting array indexes beyond the end of the array, resulting in garbage log messages and segmentation faults. Thanks to Arthur Girardi for reporting this one. - Fixed verbose logging in the RHSBL filter to print the correct log message. Thanks to Arthur Girardi for reporting this one. - Rewrote the address parser to correctly handle strange/invalid email addresses. Thanks to Erald Troja for reporting this one. - Fixed a serious error in the code that loads array values from files that was returning pointers to unallocated memory, causing segmentation faults. Many, many thanks to David Stiller for reporting this one and providing tons of help to nail it down. - Fixed a serious error that was attempting to move data by dereferencing the NULL address when the remote server disconnected unexpectedly, causing segmentation faults. Many, many thanks to David Stiller for reporting this one and providing tons of help to nail it down.
2008-10-13Remove lua-OSBF - renamed OSBF-luashannonjr6-122/+0
2008-10-13Renamed lua-OSBF to OSBF-luashannonjr1-2/+2
2008-10-13Rename lua-OSBF to OSBL-lua for consistency with package nameshannonjr6-0/+123
2008-10-13Introduce EMACS_BUILDLINK to decide if Emacs lisp file wrappers are reallyuebayasi1-1/+3
created or not. Packages that include other ELP's buildlink3.mk must define EMACS_BUILDLINK. Other packages don't create wrappers, which reduces build time a lot.
2008-10-13lib/lua/5.1 is owned by lang/lua.obache1-3/+1
2008-10-12Update to 2.3adrianp3-8/+16
---- v2.3 ---- [jan] Change group field in shares table to work with LDAP groups (Bug 6883). [jan] Fix exporting address books with country fields as vCards (Bug 7372). [mjr] Make sure we use all address books when searching via the api and the user's addressbooks pref is empty (Bug 7357). [mjr] Correctly calculate the age of time objects (Bug 7330). -------- v2.3-RC1 -------- [jan] Improve vCard EMAIL field parsing (Bug 7281). [jan] Correctly import and export address extensions (Bug 7279). [jan] Export full country names to vCard addresses. [jan] Respect precedence of multiple vCard properties (Request 7122). [jan] Remove deleted address books from address book preference (Request 6938). [jan] Export LABEL properties to vCard if address fields are available. [gwr] Add support for storing public PGP keys when using Kolab. [gwr] Add support for adding addresses from IMP when using Kolab. [jan] Add configuration option for an alternative name field. [jan] Add support for image fields to SQL driver (requires Horde 3.3). [jan] Add more default field mappings for CSV import (Request 6901). [jan] Update field names for Outlook 2003 export (Request 6901). [jan] Improve logic which entries to show in the sidebar menu. [jan] Add support for the category form field (Request 6884). [jan] Fix sorting so that sort order is always reflected correctly, independent of name format. [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [jan] Add ability to mark a contact as your own and API method to export it. [jan] Fix importing phone numbers from Synthesis clients (Bug 7011). [mjr] Fix issue with searching composite fields when the number of search terms is less than the number of composed fields (Bug 6796) [cjh] Allow importing multiple address into an email field if allow_multi is set to true on the field in attributes.php (Bug 6897). [mjr] Remove user permissions on all shares when deleting a user. [jan] Fix searching of client address books that have been disabled in the preferences (Bug 6961). [mjr] Fix issue with removeUserData api that caused the deleted user's address books to not be deleted as well as remove an erroneous error notification (Bug 6969). [cjh] Fix the column selector/sorter in IE (Bug 6912).
2008-10-12Update to 1.2.1adrianp3-7/+14
------ v1.2.1 ------ [jan] Don't show script icon in menu if preference to automatically update scripts is both set and locked (Request 7251). [mjr] Change MDB2 sequence name to 'id' (Bug 7240) [jan] Fix adding more than 5 wildcard blacklists (Bug 7077). [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [jan] Fix saving spam rules in the preference backend (Bug 7033). [jan] Correctly catch dates before the 10th of a month in Sieve timed vacations (Bug 7023). [mas] Fix vacation with procmail driver (Bugs 6509, 7052). [jan] Fix moving to INBOX with the maildrop driver. [jan] Disable drop down entries with informational purpose only. [jan] Fix filter activity messages with non-ASCII folder names (taguchi@iij.ad.jp, Bug 6764).
2008-10-12Update to 4.3adrianp3-10/+21
---- v4.3 ---- [jan] Add compose token to redirect view (bug 7383). [jan] Don't resize window if not composing messages in a popup. -------- v4.3-RC2 -------- [mms] Fix loading of print stylesheets when printing a message (bug 7310). [mjr] Fix redirect loop when conf[server][change_server] is true (bug 6978). [mms] Fix message caching and optimize storage. [mms] Fix autocomplete address positioning on IE (bug 7074). [cjh] When the selected view doesn't match the type of browser's default view (IMP or DIMP for a mobile browser, MIMP or DIMP for a desktop browser), explicitly redirect to that view and disable the frameset (bug 6332). [jan] Add support for updating exsting events and cancelled recurring event instances to iTip viewer (bug 6636). [mms] Fix uploaded compose attachment names if magic quoting is on (bug 7215). [mms] Cache results of address formatting. [jan] Show name and email address in the address book popup (Request 6937). [mms] Messages from lists can now have large quotes automatically hidden. --------------------------------- v4.3-RC1 (released as v4.2.1-RC1) --------------------------------- [mms] Fix incorrect autocomplete replacement in certain cases (bug 6819). [mms] Use optimized autocomplete javascript library. [mms] Handle ';' to delimit addresses when composing. [jan] Don't allow adding private PGP keys as public keys (bug 7080). [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [mms] Search by size now displayed in KB (Request 6921). [jan] Add option to attach personal vCard to message (requires Turba 2.2.2). [jan] Fix maildir quota driver (bug 7014). [jan] Add configuration for quota message format. [mms] Maintain original header encoding on redirect (bug 7006). [cjh] Add CSRF tokens to the Compose screen (Kris Steinhoff <steinhof@umich.edu>). [jan] Fix adding vhost specific trailer.txt. [jan] Add more flexible placeholders to SQL quota driver. [jan] Fix passing passwords to quota drivers. [mms] Improved folder list generation (bug 6972). [cjh] Allow hiding quota messages when quota is unlimited (Thomas Jarosch <thomas.jarosch@intra2net.com>, Request 6934). [jan] Add mailto: handler for Firefox 3+. [mms] Fix address MIME encoding issues when saving a draft (bug 6986). [cjh] Include a hint about fixing invalid From addresses in the error message (steinhof@umich.edu, bug 6941). [cjh] Fix overwriting $params in _imp_adminDo API call (bug 6955). [mms] Never wrap flowed lines in text/plain messages. [mms] Fix broken spellcheck when using fckeditor on Safari 3 (bug 6909). [mms] Fix unescaping URL parameters passed to popup windows (bug 6834). [jan] Fix logging of forwarded messages. [mms] Fix creation of subfolders in certain namespaces (thomas.jarosch@intra2net.com, bug 6827). [mms] Improve search page by moving flags into search criteria section (Request 6825). [mms] If using imagemagick, allow creation of PDF thumbnails. [mms] Strip quotation marks and backslashes from displayed addresses. [mms] Fix spellcheck in HTML mode when using Xinha on IE (bug 6799). [mms] Fix rare case when spellchecking HTML input could result in the HTML tags being recognized as misspelled words. [jan] Fix parsing for Token System configuration parameters. [mms] Add ability to search by size.
2008-10-12Update kbiff to 3.9markd5-32/+42
10-05-08 - Kurt Granroth (3.9) o Converted KBiff into a full-fledged kdeinit module compatible with the latest KDE 3.5 (previous support was outdated) o Yet more tweaks to compile under the gcc 4.x running target without warnings o Cleaned up a bunch of Makefiles, configure files, and automake files along with an updated 'admin' directory o Got rid of the 'release-kbiff' "meta" version and date tags o Updated the .spec file to be more up to date 09-09-08 - Frédéric Brière o Replaced complicated date-time calculations with toTime_t() 03-30-08 - Léo Terziman o Fix compilation of ASUS led code under gcc 4 03-21-08 - Martin Spirk o Added 'stopped' icon state 02-27-08 - Elve o Updated Dutch translation (nl.po) 01-21-08 - Kurt Granroth o Updated automake admin dir with latest code from KDE 3.8 o Tweaked the code to compile on gcc 4.2 without warnings with -Wall o Status window tweaks to work better on multiple-monitors as well as in more positions (side, bottom, top, etc). o Removed some 2.x code. Nobody uses KDE2 anymore so it's high time KBiff stops supporting it. o Fix display of icons with the icon selector
2008-10-11Fix issue with gnutlssmb2-7/+6
2008-10-11Move mk/emacs.mk to editors/emacs/modules.mk.uebayasi7-32/+40
Don't call pkg_info to get the installed Emacs version; always use the version matching EMACS_TYPE set by users. Be DEPENDS to it. This should address pkg/37146 by Aleksey Cheusov. While here convert some emacs lisp packages to user-destdir.
2008-10-10local is not a valid CATEGORY, use "mail".wiz1-2/+2
2008-10-07Add missing entries to PLIST.minskim2-2/+6
Bump PKGREVISION.
2008-10-07PRIVILEGED_STAGES+=clean because this package creates symlinksminskim1-1/+3
in WRKSRC during install.
2008-10-06Fix build on NetBSD.joerg1-1/+7
2008-10-06Update to Dovecot 1.1.4. Changes since 1.1.3:ghen2-6/+6
- SORT: Yet another assert-crashfix when renumbering index sort IDs. - ACL plugin fixes: Negative rights were actually treated as positive rights. 'k' right didn't prevent creating parent/child/child mailbox. ACL groups weren't working. - Maildir++ quota: Fixes to rebuilding when quota limit wasn't specified in Dovecot (0 limit or limit read from maildirsize). - mbox: Several bugfixes causing errors and crashes. - Several fixes to expire plugin / expire-tool. - lock_method=dotlock could have deadlocked with itself. - Many error handling fixes and log message improvements.
2008-10-05Update to 0.56:smb5-77/+11
>> libetpan 0.55/0.56 released. better support for client certificates >> libetpan 0.53/0.54 released. IPv6 issue gmail issues mingw32 build
2008-10-05added a missing include file that prevented compiling on MacOS Xschwarz2-1/+14
(cf. e.g. http://lists.macosforge.org/pipermail/macports-tickets/2008-April/007500.html) That issue could have affected other platforms, too.
2008-10-03# yacc rule moving to y.tab.c and renaminggdt1-1/+3
MAKE_JOBS_SAFE= no
2008-10-02Force use of stdbool.h on NetBSD, otherwise sm_debug_loadactive will bejoerg1-1/+7
defined with bool the first round and _Bool the second round.
2008-10-02Requires gpg. Bump revision.joerg1-1/+4
2008-10-02Update to 0.2beta (from 0.2alpha), and take MAINTAINER. From the changelog:schmonz11-180/+399
- Made config files location configurable (#1485215) - Reduced memory footprint when forwarding attachments (#1485345) - Allow and use spellcheck attribute for input/textarea fields (#1485060) - Added icons for forwarded/forwarded+replied messages (#1485257) - Added Reply-To to forwarded emails (#1485315) - Display progress message for folders create/delete/rename (#1485357) - Smart Tags and NOBR tag support in html messages (#1485363, #1485327) - Redesign of the identities settings (#1484042) - Add config option to disable creation/deletion of identities (#1484498) - Added 'sendmail_delay' option to restrict messages sending interval (#1484491) - Added vertical splitter for folders list resizing - Added possibility to view all headers in message view - Fixed splitter drag/resize on Opera (#1485170) - Fixed quota img height/width setting from template (#1484857) - Refactor drag & drop functionality. Don't rely on browser events anymore (#1484453) - Insert "virtual" folders in subscription list (#1484779) - Added link to open message in new window - Enable export of address book contacts as vCard - Add feature to import contacts from vcard files (#1326103) - Respect Content-Location headers in multipart/related messages according to RFC2110 (#1484946) - Allowed max. attachment size now indicated in compose screen (#1485030) - Also capture backspace key in list mode (#1484566) - Allow application/pgp parts to be displayed (#1484753) - Correctly handle options in mailto-links (#1485228) - Immediately save sort_col/sort_order in user prefs (#1485265) - Truncate very long (above 50 characters) attachment filenames when displaying - Allow to auto-detect client language if none set (#1484434) - Auto-detect the client timezone (user configurable) - Add RFC2231 header value continuations support for attachment filenames + hack for servers that not support that feature - Fix Reply-To header displaying (#1485314) - Mark form buttons that provide the most obvious operation (mainaction) - Added option 'quota_zero_as_unlimited' (#1484604) - Added PRE handling in html2text class (#1484740) - Added folder hierarchy collapsing - Added options to use syslog instead of log file (#1484850) - Added Logging & Debugging section in Installer - Fix In-Reply-To and References headers when composing saved draft message (#1485288) - Fix html message charset conversion for charsets with underline (#1485287) - Fix buttons status after contacts deletion (#1485233) - Fix escaping of To: and From: fields when building message body for reply or forward in the HTML editor (#1484904) - Use current mailbox name in template (#1485256) - Better fix for skipping untagged responses (#1485261) - Added pspell support patch by Kris Steinhoff (#1483960) - Enable spellchecker for HTML editor (#1485114) - Respect spellcheck_uri in tinyMCE spellchecker (#1484196) - Case insensitive contacts searching using PostgreSQL (#1485259) - Make default imap folders configurable for each user (#1485075) - Save outgoing mail to selectable folder (#1324581) - Fix hiding of mark menu when clicking th button again (#1484944) - Use long date format in print mode (#1485191) - Updated TinyMCE to version 3.1.0.1 - Re-enable autocomplete attribute for login form (#1485211) - Check PERMANENTFLAGS before saving $MDNSent flag (#1484963, #1485163) - Added flag column on messages list (#1484623) - Patched Mail/MimePart.php (http://pear.php.net/bugs/bug.php?id=14232) - Allow trash/junk subfolders to be purged (#1485085) - Store compose parameters in session and redirect to a unique URL - Fixed CRAM-MD5 authentication (#1484819) - Fixed forwarding messages with one HTML attachment (#1484442) - Fixed encoding of message/rfc822 attachments and image/pjpeg handling (#1484914) - Added option to select skin in user preferences - Added option to configure displaying of attached images below the message body - Added option to display images in messages from known senders (#1484601) - User preferences grouped in more fieldsets - Fix corrupted MIME headers of messages in Sent folder (#1485111) - Fixed bug in MDB2 package: http://pear.php.net/bugs/bug.php?id=14124 - Use keypress instead of keydown to select list's row (#1484816) - Don't call expunge and don't remove message row after message move if flag_for_deletion is set to true (#1485002)
2008-09-30Fix time_t vs long. Fix build with newer GCC.joerg2-1/+38
2008-09-29Require GTK2, not GTK for gui.obache1-2/+3
Bump PKGREVISION.
2008-09-29Require OpenSSL.obache1-1/+2
2008-09-28Updated mail/squirrelmail to 1.4.16martti5-21/+17
The SquirrelMail team is happy to announce the release 1.4.16. The most notable change is that cookies are now sent with the secure attribute set for HTTPS-connections, meaning that they cannot leak to an HTTP-connection on the same SquirrelMail installation. For details see the included ReleaseNotes. We advise users that offer their SquirrelMail both over HTTP and HTTPS to upgrade.
2008-09-27Update to 4.8.4. From the changelog:schmonz2-6/+6
-Add missing fsync() in updatefile close method to ensure data actually hits disk before the rename takes place, to make writing of the oldmail file more resilient to system crashes. Thanks: Domen Puncer.
2008-09-26Fix missing .include of ssl, to make things work on Linux; fixsmb30-31/+82
other nits in claws-mail base package, notably missing $NetBSD$ lines.
2008-09-26Update thunderbird and thunderbird-gtk1 to 2.0.0.17.ghen2-6/+6
Security fixes in this version: MFSA 2008-46 Heap overflow when canceling newsgroup message MFSA 2008-44 resource: traversal vulnerabilities MFSA 2008-43 BOM characters stripped from JavaScript before execution MFSA 2008-42 Crashes with evidence of memory corruption (rv:1.9.0.2/1.8.1.17) MFSA 2008-41 Privilege escalation via XPCnativeWrapper pollution MFSA 2008-38 nsXMLDocument::OnChannelRedirect() same-origin violation MFSA 2008-37 UTF-8 URL stack buffer overflow For more info, see http://www.mozilla.com/en-US/thunderbird/2.0.0.17/releasenotes/
2008-09-21Start mailman with -s to get rid of the stale lock file (pkg/39355).martti2-5/+5
PKGREVISION++
2008-09-19Catch up with OpenSSL interface changes.joerg3-4/+53
2008-09-19Installs Perl script, so require perl.joerg1-2/+2
2008-09-18Catch up with the usual platform specific mess in the mozilla buildjoerg3-1/+29
system. Fixes bus errors in shlibsign. From PR 39576.
2008-09-18Needs msgfmt.joerg1-3/+2
2008-09-17Support newer DragonFly versions. From PR 39148.joerg3-8/+56
2008-09-17Support newer DragonFly versions. From PR 39148.joerg3-8/+56
2008-09-15Update ruby-mailfactory package to 1.4.0.taca2-6/+6
Release Name: mailfactory-1.4.0 Notes: Fix issues with encoding multibyte subjects
2008-09-15Update ruby-actionmailer to 2.1.1 to sync with other rails packages.minskim2-7/+7
2008-09-14Remove unregistered patch (overlooked removal?)he1-13/+0