Commit graph

8027 commits

Author SHA1 Message Date
ryoon
5b8d050b46 * Fix build on NetBSD (_res issue)
* Fix build on recent NetBSD current (kinfo_proc issue)
2013-01-07 21:12:15 +00:00
pettai
6fc66a9166 2.7.3 2012/11/29
Log DB error string in dkimf_add_signrequest(), and fix a DSN handling
                error in dkimf_db_strerror().
        LIBOPENDKIM: Ignore entries in the oversign header field name list
                that are empty, and an oversign header field name list that
                is present but empty.
        LIBOPENDKIM: Allow header field lists to be empty, flushing any that
                were previously defined.
        BUILD: Improve tests for including <strl.h>.
        REPUTATION: Use lowercase for keywords in REPUTE query generation
                and handling.
        STATS: Clean up a dead link in opendkim-genstats.

2.7.2           2012/11/14
        Log the author domain name when rejecting or discarding due to ADSP.
        LIBOPENDKIM: Improve re-entrancy of dkim_eoh() when verifying.
        LIBOPENDKIM: Only do a single read attempt of a private key under
                GNUTLS to avoid hiding a useful error code.
        STATS: Add long option support for opendkim-importstats.
        STATS: Fix overly-strict domain name rules in opendkim-reportstats.
        TOOLS: Fix opendkim-genkey subdomains default.
        TOOLS: Fix opendkim-testmsg GNUTLS initialization.
        TOOLS: Add ability to assert a reporter ID to opendkim-spam.
        TOOLS: Add ability to skip a fixed number of Received: fields.
        TOOLS: Print a warning when asked to generate a key smaller than
                the recommended minimum.
        BUILD: Fix bug #SF3585163: Use a provided libstrl if detected.
        BUILD: Portability fixes for Solaris 10 from Claus Assmann and
                Leena Heino.

2.7.1           2012/10/30
        Fix bug #SF3581657: Fix faulty logic in LDAP open code.
        Fix bug #SF3581743: Properly handle NULLs returned from OpenDBX
                queries and low field counts in dkimf_db_walk().
        In the _FFR_REPUTATION code, free JSON objects when done with them.
        TOOLS: Fix argument parsing in new version of opendkim-genkey.

2.7.0           2012/10/24
        Feature request #SF2964375: Reject configuration files that have
                a SigningTable referencing a missing or malformed KeyTable
                entry.
        Feature request #SF3544764: Support for libar has been discontinued.
                For asynchronous and/or thread-safe resolver service,
                use libunbound or a suitable version of BIND.
        Feature request #SF3545658: Replace "ResolvConf" with "Nameservers"
                and add support for NS list overrides for versions of bind
                that have res_setservers().  Also rename "UnboundConfigFile"
                to "ResolverConfiguration", and make "TrustAnchorFile"
                generally available.
        Feature request #SF3547124: Skip reputation checks on passing
                signatures whose keys had a "t=y" value.
        Feature request #SF3555842: Add "ReputationTest" setting.
        Feature request #SF3556439: Update opendkim-atpszone per RFC6541.
        Feature request #SF3559744: Add library option DKIM_OPTS_MINKEYBITS
                allowing one to specify a minimum number of key bits for
                acceptable keys and signatures.  This is exposed through new
                configuration file option "MinimumKeyBits".  The default
                is 1024.
        Fix bug #SF3536414: Activate _FFR_OVERSIGN, and remove
                DKIM_OPTS_ALWAYSHDRS.
        Fix bug #SF3536655: Rename "X-Header" to "SoftwareHeader", and rename
                all header fields added that start "X-" to remove that prefix,
                per RFC6648.  The old name will be accepted through the end
                of the 2.7.x line.
        Fix bug #SF3538896: Remove antiquated CVS Id: tags, which cleans up
                some (harmless) build warnings.
        Fix bug #SF3548741: Add "ReputationTimeout" for use inside
                _FFR_REPUTATION, rather than using the built-in default
                or a hard-coded one.
        Fix bug #SF3549307: Remove _FFR_REPUTATION_CACHE, as it is redundant
                to caching code that's part of _FFR_REPUTATION already.
        Fix bug #SF3555844: Get repute client code in sync with repute.php
                (and the current REPUTE WG drafts).
        Fix bounds checking in the dstring printf functions.
        Fix loop structure in the C side of odkim.get_rcpt().
        Change all temporary directory defaults from /var/tmp to /tmp.
        Activate _FFR_LUA_GLOBALS.
        Request the milter permissions required to get _FFR_REDIRECT working.
        Add _FFR_REPRRD, which is a second approach to DKIM-based reputation
                using round robin databases and Holt-Winters foreacasting
                using rrdtool (see http://oss.oetiker.ch/rrdtool/).  Still
                experimental.
        Patch #SF3555843: With sufficient verbosity, report the default
                configuration file path.  Patch from Andreas Schulze.
        BUILD: Fix bug #SF3531658: Move the strlcat() and strlcpy()
                implementations to their own library so that programs don't
                drag in crypto and other dependencies they don't need.
                Also clean up several other unnecessary dependencies imposed
                by imprecise use of autoconf.
        BUILD: Patch #SF3555845: Add support for older versions of libcurl.
        BUILD: Install non-user things in sbin instead of bin.
        LIBOPENDKIM: Feature request #SF3565006: Add dkim_add_querymethod()
                and dkim_sig_seterror(), define DKIM_CBSTAT_DEFAULT, and
                remove an assertion in dkim_get_key_dns(), which together
                allow for applications to develop non-standard key retrieval
                mechanisms.
        LIBOPENDKIM: Fix bug #SF3559080: Log correct domains and selectors
                with SSL errors.
        LIBOPENDKIM: Add DNS functions dkim_dns_config(), dkim_dns_init(),
                dkim_dns_nslist(), dkim_dns_set_init(), dkim_dns_set_close(),
                dkim_dns_set_nslist(), dkim_dns_set_config(),
                dkim_dns_set_trustanchor(), dkim_dns_trustanchor().
        LIBOPENDKIM: Patch #SF3562496: Add DKIM_OPTS_REQUIREDHDRS to allow
                alteration of the mandatory header field set.
        LIBOPENDKIM: If "q=" is present and method "dns" is specified, it
                must be followed by "/txt", per RFC6376.
        LIBOPENDKIM: For dkim_add_xtag(), copy the provided values so the
                caller doesn't have to keep them around.
        LIBOPENDKIM: Allow dual signing of a single body with dkim_resign().
        STATS: Fix bug #SF3555847: Add "--nocircles" to opendkim-gengraphs
                to allow operation with versions of gnuplot that don't know
                what "with circles" means.
        STATS: Patch #SF3555841: Temporary table SQL correction.
        TOOLS: Feature request #SF3553918: Add "-u" flag to opendkim-atpszone
                and opendkim-genzone enabling them to produce output suitable
                for use as input to nsupdate(8).
        TOOLS: Feature request #SF3558818: Teach opendkim-testkey about the new
                "ResolverConfiguration" setting.
        TOOLS: Fix bug #SF3565013: Replace opendkim-genkey with a perl script
                that knows how to do splitting of character-strings in DNS
                TXT records.
        TOOLS: Fix bug #SF3568846: Add "-t" to opendkim-testmsg to allow
                override of the directory where temporary files go.  Also,
                clean up temporary files after creating them.
        TOOLS: Add opendkim-rephistory.

This should fix PR pkg/47370.
2013-01-05 17:05:07 +00:00
taca
a529581ffe Update ruby-actionmailer32 to 3.2.10.
Only version has updated.
2013-01-05 14:22:02 +00:00
taca
983ac28bee Update ruby-actionmailer31 to 3.1.9.
Only version has updated.
2013-01-05 14:00:49 +00:00
taca
5f8b8681e9 Update ruby-actionmailer3 to 3.0.18.
Only version has updated.
2013-01-05 13:41:42 +00:00
tron
4d39e37437 Update "milter-greylist" package to version 4.4.1.
Major changes since 4.2.7:
- Allow comparison of msgsize, rcptcount & spamd, against values from LDAP
- localaddr option so that Postifix user can use spf self
- Allow filtering header and body against LDAP or CURL gathered properties
- Add format string to report last matching LDAP or CURL propery
- Add a addfooter action clause in ACL, to add mail a footer
- Allow per-dacl maxpeek setting, set by maxpeer action clause in racl
- Add LDAP or CURL gathered property substitution in format strings
- Add continue type ACL
- p0f v3 support
- Fix spamd hang if message contains NULL (Enrico Scholz)
- Send the queueid to spamd (Petar Bogdanovic)
- Ratelimit on SMTP sessions and data size
- New tarpit feature (Kouhei Sutou)
- Make SpamAssassin headers Sendmail-like (Petar Bogdanovic)
- Merge autowhite and greylist databases (Rudy Eschauzier)
- Make LDAP querries timeout configurable
- Make MX sync timeout peer-configurable (Attila Bruncsak)

This update is largely based on a patch submitted by Richard Palo
in PR pkg/47369.
2013-01-03 09:50:44 +00:00
tron
a682080755 Use "bison" instead of "yacc" to fix the build problem under Solaris
reported by Richard Palo in PR pkg/47369.
2012-12-30 11:43:23 +00:00
tron
daf43ebbb0 Add missing comment to patch file. 2012-12-30 11:41:15 +00:00
dholland
762b9f7f3f Add required standard headers.
XXX: this package should be terminated with prejudice
2012-12-30 05:38:55 +00:00
jnemeth
ade64d0368 sendmail is incompatible with current versions of databases/db4
as the latter is now threaded, so delete the option
2012-12-28 05:27:06 +00:00
taca
fff65a0a96 Update squirrelmail to 1.4.23pre14345, snap shot from squirrelmail's
repository.  Approved by wiz@.

* Now work well with PHP 5.4 and later.

Version 1.4.23 - SVN
--------------------
  - Added capability to issue SEARCH commands in literal format (so that
    non-ASCII search terms are handled RFC-correctly).
  - Fixed hook name clash: new "smtp_auth" hook added in version 1.4.22
    has been renamed to "smtp_authenticate"
  - Added SASL PLAIN mechanism for IMAP logins; backported from version
    1.5.2.
  - Prevent syslog warning in call_user_func_array() call when no
    arguments given.  Patch from Jean-Philippe Guerard (#3309935).
  - Changed the read_body_menu_top hook from concat_hook_function to
    do_hook_function (plugin authors please note)
  - Always ensure that the Reply-To header is a full email address in
    outgoing messages
  - Fixed issue with Noselect mailboxes being clickable in folder list
  - Made performance improvements in mailbox listing
  - Attachment filename extensions changed from ".msg" to ".eml"
  - Unified address book searches somewhat: file-backed address books now
    search in each field individually; database-backed address books now
    search in fields other than first/last name (nickname, email); LDAP-
    backed address books now search in common name fields as well as by
    email address (cn, sn, givenname, mail)
  - You may now enable LDAP-backed address books to be listed (using
    the "List all" button on the address search screen accessed via
    the "Addresses" button on the compose screen) by adding
    "$ldap_abook_allow_listing = TRUE;" (without quotes) to
    config/config_local.php (previously, this required editing of a
    file).
  - Added ability to control browser rendering mode (quirks versus
    standards) - see the $browser_rendering_mode setting in
    config/config.php or the "4. General Options ==> 19. Browser
    rendering mode" setting in the configuration tool (#3240356).
  - Added "search_index_before" hook (analog of the "mailbox_index_before"
    hook)
  - Made performance improvements in security token handling
  - Improvements for compatibility with PHP 5.4.
  - Added option that allows users to have replies to their own
    messages sent to the recipient of the previous message (#3520988).
2012-12-28 04:03:34 +00:00
darcy
dd6c94875a Upgrade to 1.2.3.
Fixes:
	2012-10-24
	* Update configure.ac to avoid autoconf 2.68 warnings, by
	  (a) quoting the first AC_RUN_IFELSE argument, an
	      AC_LANG_PROGRAM(), with [ ], and
	  (b) providing an explicit "true" assumption for Berkeley DB
	      capabilities to avoid cross-compilation warnings.

	2012-10-22
	* Security bugfix for CVE-2012-5468 (bogofilter-SA-2012-01):
	  Fix a heap corruption in base64 decoder on invalid input.
	  Analysis and patch by Julius Plenz <plenz@cis.fu-berlin.de>.

	2011-01-02
	* Added bogofilter-faq-bg.html, a Bulgarian translation of the FAQ.
	  (thanks to Albert Ward)

	2010-10-29
	* Mark "Berkeley DB 5.1.19: (August 27, 2010)" supported.
2012-12-26 16:58:27 +00:00
joerg
ee25e2ae29 Define _NETBSD_SOURCE to ensure u_char is defined for arpa/nameser.h 2012-12-25 21:07:13 +00:00
joerg
14dabe3146 Don't use visibility attributes with Clang. 2012-12-24 21:14:19 +00:00
obache
a6df52939f Update milter-manager to 1.8.5.
== [release-1-8-5] 1.8.5: 2012-12-03

A bug fix release of 1.8.4.

=== Package

  * Drop Ubuntu Natty Narwhal support.
  * Fix broken documents.

=== Ruby milter

  * Fix a typo in test for Ruby1.8.
    [Pull requested by umq]

=== Thanks

  * umq

== [release-1-8-4] 1.8.4: 2012-11-21

A bug fix release of 1.8.3.

=== Package

  * Added Ubuntu Quantal Quetzal support.
  * Provided packages built by using Ruby1.9 on following distributions:
    Debian wheezy, Debian sid, Ubuntu Precise Pangolin, Ubuntu Quantal Quetzal
  * Added missing fixture files into tar.gz.
    [Reported by Hirohisa Yamaguchi]
  * Solaris: Added missing SMF method file into tar.gz.
    [Reported by @ftnk]
  * yum: Rename yum repository pacakge.
    milter-manager-repository -> milter-manager-release
  * deb: Use Ruby1.9 by default.
  * deb: Rename packages for Ruby binding.
    libmilter-*-ruby1.8 -> ruby-milter-*

=== milter manager

==== Improvements

  * configure: Specify Ruby/GLib2 version to --with-bundled-ruby-glib2 option

==== Fixes

  * manager: Suppressed compiler type warnings.
    [GitHub #12]
    [Reported by Hirohisa Yamaguchi]
  * debian cron: used mail.log instead of mail.info
    [milter-manager-users-ja:00171]
    [Reported by Kazuhiro NISHIYAMA]

=== milter-core

==== Improvements

  * Supported MILTER_DEBUG=fatal-criticals.
  * binding ruby: milter callback arguments are ASCII_8BIT.
    [GitHub #3]

==== Fixes

  * Fixed an issue which a following warning is shown when running at high loads.
    "g_io_channel_write_chars: assertion `channel->is_writeable' failed"

=== Admin

==== Improvements

  * Upgraded to Rails2.3.14

=== Document

==== Fixes

  * Fixed about install sequence on CentOS.
    [GitHub #13]
    [Reported by Kunkichi]

=== Thanks

  * Hirohisa Yamaguchi
  * Kazuhiro NISHIYAMA
  * @ftnk
  * Kunkichi
2012-12-22 08:29:30 +00:00
joerg
0c9752669d Using __VA_ARGS__ and expecting the compiler to magically remove the
initial comma when it expands to empty is a GCC extension. Avoid it.
2012-12-22 02:25:56 +00:00
wiz
820e5fccde Not parallel make safe.
Stuff like:
mv: rename .deps/sdp.Tpo to .deps/sdp.Plo: No such file or directory
happens.
2012-12-22 02:23:02 +00:00
joerg
5d1275f9d1 Fix template look up. 2012-12-20 21:48:15 +00:00
jnemeth
41e5ff631a add details about what to do if you don't have mailwrapper 2012-12-20 20:38:46 +00:00
taca
5c2911943d Update sylpheed to 3.3.0, referring PR pkg/47349.
Changes of Sylpheed

* 3.3.0

* 3.3.0rc (release candidate)

    * The Japanese manual was updated.
    * The bug that hyperlinks did not respond when 'Show attached files
      first on message view' option was set was fixed.
    * Some compilation fixes were made.
    * Win32: .eml file association was added to installer.
    * Win32: mailto and .eml association are automatically set to default
      on Windows 7 on installation.
    * Win32: included libtiff library was updated to 3.9.7 (security fix).

* 3.3.0beta2 (development)

    * The ability of opening external rfc822 format message files (.eml) was
      added.
    * Sylpheed now accepts mailto: and file: URL without command-line option.
      (sylpheed file:///path/to/file.eml)
    * The option to specify the position of the attach tool button was added.
    * The header labels on the header view now have tooltips.
    * A minor memory leak related to tooltips was fixed.
    * The long-standing drag-without-button-press bug on IMAP folders (since
      3.0) was fixed (#93).
    * The sylpheed.desktop file was modified so that desktop shells can
      recognize Sylpheed as rfc822 and mailto handler.
    * The sylpheed.spec file was fixed so that it builds on x86_64 platform,
      and also builds sylpheed-plugins package.

* 3.3.0beta1 (development)

    * Attached files are now placed first on the message view.
    * Attached files can be opened from the attachment tool menu.
    * The attachment tool menu was moved to the left of the header view.
    * The option 'Toggle attachment list view with tab' and 'Show attached
      files first on message view' were added at 'Common preferences -
      Display - Attachment'.
    * 'Export only selected messages' option was added to the message export
      dialog.
    * The import/export of messages became cancellable.
    * config.rpath and install-sh script in the tarball were updated.
    * IMAP FETCH command response parser was fixed.
2012-12-18 15:37:19 +00:00
obache
b203daa975 * Digest::MD5 is in CORE since perl-5.7.3, update dependency pattern.
* Getopt::Long is in CORE since perl-5, drop dependency.

Bump PKGREVISION.
2012-12-17 12:42:23 +00:00
obache
d10058e1e3 LICENSE=gnu-gpl-v2 2012-12-17 04:54:40 +00:00
khorben
17978ace3c Added mail/deforaos-mailer (version 0.1.5) 2012-12-17 01:00:40 +00:00
khorben
e5c55d931c Imported wip/deforaos-mailer, the DeforaOS desktop e-mail client, under
mail/deforaos-mailer (version 0.1.5)
2012-12-17 00:59:54 +00:00
taca
96b5330ca0 Update ruby-actionmailer32 to 3.2.9.
## Rails 3.2.9 (unreleased) ##

* Do not render views when mail() isn't called.
  Fix #7761

  *Yves Senn*
2012-12-16 14:15:21 +00:00
obache
7522419860 Update cyrus-imapd24 to 2.4.17.
Changes to the Cyrus IMAP Server since 2.4.16

      * A bunch of cleanups and fixes to compiling
      * A bunch of sieve cleanups
      * Fixed bug #3691: unixhierarchysep is now obeyed when printing the
        mailbox name in unexpunge
      * Fixed bug #3718: crashes fetching message parts
      * Fixed bug #3719: pop3 seen update of final message in a mailbox
      * Improved documentation of "proxyservers" option
      * Fixed bug #3737: lost emails in XFER delivery race
      * Fixed bug #3725: inefficient statuscache use in some cases
      * Fixed bug #3484: use of sasl property types (compile fix)
      * Fixed bug #3754: failure to support binary append. This was found
        by a popular library switching to using binary appends
      * Fixed bug #3735: user prefix searching now works with fulldirhash
      * Fixed bug #3696: can no longer rename the same mailbox twice, which
        left things in a corrupted state if you caught the race.
      * Fixed bug #3715: using berkeley for mailboxes.db was very broken.
        It now works.
      * Fixed bug #3733: reconstruct with missing cyrus.index will use file
        timestamps for internaldate rather than setting it to NOW if
        internaldate_heuristic is set to standard
      * Fixed bug #3729: better documentation for xlist-* in 2.4.
      * Fixed bug #2717: fetches of individual messages or short ranges no
        longer need to parse over the entire index.
      * Fixed bug #3742: reconstruct can now fix multiple folders with the
        same uniqueid again (regression from 2.3) and also sync_client
        avoids a crash in that broken case.
      * Fixed bug #3711: detect the buggy /usr/bin/compile_et shipped on
        MacOS X and fall back to our bundled copy.
2012-12-16 02:55:46 +00:00
obache
64deda1dc9 recursive bump from cyrus-sasl libsasl2 shlib major bump. 2012-12-16 01:51:57 +00:00
schmonz
5ade8e3683 Update to 4.36.0. From the changelog:
- add support for retrieving POP/IMAP passwords from, and storing
  them to, the Gnome keyring. Thanks: Krzysztof Warzecha, Scott Hepler.
2012-12-15 23:49:46 +00:00
ryoon
35263110cb Bump PKGREVISION from devel/nss 3.14.0. 2012-12-15 10:36:18 +00:00
taca
ef1489032f Update postfix to 2.8.13.
Postfix 2.8 and later:

  * The postscreen_access_list feature failed to ignore case in the
    first character of a command (e.g., permit, reject, etc.).
    Reported by Francis Picabia. (This fix is incorrectly listed
    in the HISTORY files of earlier releases, and will be removed
    with a future patch.)

All supported releases:

  * Strip the datalink suffix (e.g., %eth0) from IPv6 addresses
    returned by the system getaddrinfo() routine. Such suffixes
    break the default mynetworks value, the Postfix SMTP server's
    reverse/forward DNS name/address mapping check, and possibly
    more.

  * To eliminate the possibility of collisions with connection cache
    lookup keys, the Postfix LDAP client now computes those lookup
    keys by joining the number-valued connection properties with
    ASCII null, just like it already did with the string-valued
    connection properties.

  * There was a memory leak during one-time TLS library initialization
    (introduced with Postfix 2.5). Reported by Coverity.

  * There was a memory leak in the unused oqmgr(8) program (introduced
    with Postfix 2.3). Reported by Coverity.
2012-12-13 16:23:13 +00:00
wiz
36e48ba3c7 Remove patches that were probably intended to go away with the 1.2.0 update. 2012-12-13 09:14:22 +00:00
wiz
6814fb2fe9 Update to 0.2.9, from Stefano Marinelli in PR 45790. Set LICENSE.
26/12/2008 0.2.9
- src/lua/hotmail.lua, src/lua/juno.lua: Fixed login issues (russell822)
- src/lua/supereva.lua: added patch by la scimmia to fix To: problem (gareuselesinge)
- updater-ui/dialog/freepops-updater-dialog, updater-ui/zenity/freepops-updater-zenity: use mktem if tempfile not available (gareuselesinge), thanks Vito De Tullio
- buildfactory/Makefile, buildfactory/debian-ubuntu/control, buildfactory/debian-ubuntu/freepops.postinst, buildfactory/debian-ubuntu/rules: patch by blackmoon for ubuntu (gareuselesinge)
- buildfactory/Makefile, buildfactory/osx/Info.plist, buildfactory/osx/Info.plist.in: osx version will be reported correctly from now on (gareuselesinge)
- buildfactory/debian-ubuntu-dapper/control, buildfactory/debian-ubuntu-dapper/rules: added dapper stuff (gareuselesinge)
- buildfactory/debian-ubuntu/freepops-updater-gnome.desktop: minor fix (gareuselesinge)
- buildfactory/debian/changelog, buildfactory/debian/control, buildfactory/debian/freepops.cron.hourly, buildfactory/debian/rules, scripts/create_jail.sh: approaching 2.9.0 (gareuselesinge)
- buildfactory/debian/changelog, buildfactory/debian/freepops.postinst, buildfactory/debian/rules: some debian fixes (gareuselesinge)
- buildfactory/osx/Install_resources/English.lproj/ReadMe.txt, buildfactory/osx/Install_resources/Italian.lproj/ReadMe.txt, buildfactory/osx/iceberg/FreePOPs/FreePOPs.packproj, scripts/compile-gettext-universal.sh, src/Makefile: added gettext library, fixed installer (gareuselesinge)
- buildfactory/osx/Install_resources/English.lproj/ReadMe.txt, buildfactory/osx/Install_resources/Italian.lproj/ReadMe.txt, configure.sh, scripts/compile-curl-universal.sh, src/Makefile: use of an embedded version of libcurl for osx to avoid the old and crappy 10.4 version (gareuselesinge)
- src/lua/davmail.lua: fixed metadata (gareuselesinge)
- src/lua/hotmail.lua: new version by russell (gareuselesinge)
- src/lua/mailcom.lua: Fixed issues with india.com (russell822)
- src/lua/yahoo.lua: Minor tweaks to fix issues reported in threads. (russell822)
- osx uses a custom version of curl, since osx 10.4 has an old version
- osx package will report the correct version
2012-12-12 12:52:10 +00:00
ryoon
2a3beb6a43 Bump PKGREVISION.
Fix another _res multi-thread error.
Patch is provided by Dave Tyson on pkgsrc-users@.
2012-12-12 08:35:58 +00:00
roy
3e16074dde Remove stale patches 2012-12-06 10:48:51 +00:00
roy
cfa931da64 Update to dspam-3.10.2 with many changes from 3.8.0
Too many changes to note, but this works with PostgreSQL-9.1.5 without
spitting out any warnings which is my reason for updating it.
A few of prior pkgsrc patches have been merged upstream now.
2012-12-06 10:47:35 +00:00
taca
f9df4dc498 Update roundcube to 0.8.4.
A little improvement to MESSAGE about upgrading.

CHANGELOG Roundcube Webmail
===========================

- Fix XSS vulnerability in handling of text/enriched messages (#1488806)
- Fix handling of 'media' attribute on linked css (#1488789)
- Fix regression where unintentional page reload was done after request abort (#1488802)
- Fix excessive LFs at the end of composed message with top_posting=true (#1488797)
- Fix bug where leading blanks were stripped from quoted lines (#1488795)

RELEASE 0.8.3
-------------
- Fix AREA links handling (#1488792)
- Fix possible HTTP DoS on error in keep-alive requests (#1488782)
- Fix compatybility with MDB2 2.5.0b4 (#1488779)
- Fix a bug where saving a message in INBOX wasn't possible
- Fix HTML part detection in messages with attachments (#1488769)
- Fix bug where wrong words were highlighted on spell-before-send check
- Fix scrolling quirk in email preview frame using Opera 12 (#1488763)
- Fix displaying of multipart/alternative messages with empty parts (#1488750)
- Fix Warning: htmlspecialchars(): charset `RCMAIL_CHARSET' not supported warning in Installer (#1488744)
- Fix threaded list sorting on PHP < 5.2.9 (#1488748)

RELEASE 0.8.2
-------------
- Fix XSS vulnerability from HTTP User-Agent header (#1488737)
- Force fonts in compose fields to be all the same (#1488690)
- Add full headers view in message preview window (#1488538)
- Fix message display page issues (#1488590, #1488642)
- Fix handling vCard entries with TEL;TYPE=CELL (#1488728)
- Fix error where session wasn't updated after folder rename/delete (#1488692)
- Fix PLAIN authentication for some IMAP servers (#1488674)
- Fix encoding vCard file when contains PHOTO;ENCODING=b (#1488683)
- Fix focus issue in IE when selecting message row (#1488620)
- Fix displaying all headers when they contain malformed characters (#1488666)
- Fix decoding of HTML messages with UTF-16 charset specified (#1488654)
- Fix quota capability detection so it can be overwritten by a plugin (#1488655)
- Fix identity selection on reply (#1488101)
- Fix Larry's messages list filter in IE (#1488632)
- Fix more IE issues by disabling Compat. mode with X-UA-Compatible meta tag (#1488626)
- Fix setting locales under Solaris - use additional .UTF-8 suffix (#1488628)
- Fix email address validation for addresses with IP address in domain part
- Fix Larry skin issues in IE7 compat. mode (#1488618)
- Fix so subscribed non-existing/non-accessible shared folder can be unsubscribed
2012-12-05 15:38:01 +00:00
taca
e9678663cc Add dependency to p5-Perl4-CoreLibs to fix build problem with perl 5.16.
Bump PKGREVISION.
2012-12-04 11:19:13 +00:00
adam
aa537007b8 Changes 2.1.12:
The dovecot-config file installed by v2.1.11 was missing quotes, which
broke building Pigeonhole. This release fixes that.
2012-12-04 09:28:24 +00:00
tron
c8029637df Update "dovecot2" package to version 2.1.11. Changes since 2.1.10:
- lmtp/lda: dovecot.index.cache file is no longer fully mapped to
  memory, allowing mail deliveries to work even if the file is huge.
- auth: userdb passwd lookups are now done by auth worker processes
  instead of auth master process (as it was documented, but
  accidentally didn't work that way).
- lmtp: lmtp_rcpt_check_quota=yes setting checks quota on RCPT TO.
- lmtp: After successful proxying RCPT TO, the next one to a
  nonexistent user gave tempfail error instead of "user not found".
- lmtp proxy: Fixed hanging if remote server was down.
- imap: Fixed crash when SEARCH contained multiple KEYWORD parameters.
- doveadm: Various fixes to handling doveadm-server connections.
- -i <instance name> parameter for Dovecot tools didn't work correctly.
- director was somewhat broken in v2.1.10. This version also includes
  various reliability enhancements.
- auth: passdb imap was broken in v2.1.10.
2012-12-04 08:18:34 +00:00
drochner
f2c5f61652 don't display the URL when fetching calendars, it could contain
credentials (CVE-2012-5527), patch from upstream
bump PKGREV
2012-11-29 11:01:15 +00:00
joerg
ddebfef9f3 Always return a value from non-void functions. 2012-11-23 12:35:57 +00:00
ryoon
1fd40a4bdb Fix build
* Add missing include file to PLIST.lightning
* Fix xulrunner pathes
2012-11-23 11:08:05 +00:00
ryoon
63e3fffb55 Update to 17.0
* Sync with mail/thunderbird-17.0 (ESR)
2012-11-23 07:32:18 +00:00
ryoon
bd1ca5cee6 Update to 17.0
Changelog:
    NEW
    A Menu Button is now shown to new users by default
    NEW
    Tabs are now drawn in the title bar on Windows
    FIXED
    An issue causing spell-checking only parts of words in Thunderbird 16 is now fixed (790475)
    FIXED
    An issue causing Thunderbird 16 to repeatedly download emails is now fixed (806760)
    FIXED
    RSS feeds can now be viewed in the Wide View Layout (531397)
    FIXED
    Various fixes and performance improvements
    FIXED
    Various security fixes
    CHANGED
    Mac OS X 10.5 is no longer supported

Security fixes:
Fixed in Thunderbird 17
MFSA 2012-106 Use-after-free, buffer overflow, and memory corruption issues found using Address Sanitizer
MFSA 2012-105 Use-after-free and buffer overflow issues found using Address Sanitizer
MFSA 2012-103 Frames can shadow top.location
MFSA 2012-101 Improper character decoding in HZ-GB-2312 charset
MFSA 2012-100 Improper security filtering for cross-origin wrappers
MFSA 2012-99 XrayWrappers exposes chrome-only properties when not in chrome compartment
MFSA 2012-97 XMLHttpRequest inherits incorrect principal within sandbox
MFSA 2012-96 Memory corruption in str_unescape
MFSA 2012-94 Crash when combining SVG text on path with CSS
MFSA 2012-93 evalInSanbox location context incorrectly applied
MFSA 2012-92 Buffer overflow while rendering GIF images
MFSA 2012-91 Miscellaneous memory safety hazards (rv:17.0/ rv:10.0.11)
2012-11-23 07:17:53 +00:00
ryoon
3a8d303235 Update to 10.0.11
* Sync with mail/thunderbird10-10.0.11
2012-11-22 12:04:20 +00:00
is
7ca5030eea Fixed in Thunderbird ESR 10.0.11:
MFSA 2012-106 Use-after-free, buffer overflow, and memory corruption issues found using Address Sanitizer
MFSA 2012-105 Use-after-free and buffer overflow issues found using Address Sanitizer
MFSA 2012-103 Frames can shadow top.location
MFSA 2012-101 Improper character decoding in HZ-GB-2312 charset
MFSA 2012-100 Improper security filtering for cross-origin wrappers
MFSA 2012-93 evalInSanbox location context incorrectly applied
MFSA 2012-92 Buffer overflow while rendering GIF images
MFSA 2012-91 Miscellaneous memory safety hazards (rv:17.0/ rv:10.0.11)
2012-11-22 08:14:15 +00:00
pettai
0626cc86bb corrected the patchsum 2012-11-19 18:39:34 +00:00
joerg
c531540efb Always return a value in a non-void function. 2012-11-19 02:56:05 +00:00
ryoon
d85e211a4b Update to 10.0.10
* Sync with mail/thunderbird10
2012-11-17 11:36:01 +00:00
ryoon
a087dd0ac4 Update to 10.0.10
Changelog:
Thunderbird ESR 10.0.10
MFSA 2012-90 Fixes for Location object issues
MFSA 2012-67 Installer will launch incorrect executable following new installation
2012-11-17 11:21:07 +00:00
pettai
a6735e8680 2.6.7 2012/07/23
Fix input handling for file data sets for the macro case.
        Ensure NULL-termination of macro value tests.
        STATS: Fix hang bug in opendkim-reportstats.
        STATS: Fix bug #SF3547363: Fix "Top 10" and DNSSEC trend reports.

2.6.6           2012/07/18
        LIBAR: Fix bug #SF3544522: Not all systems define a "_len" member for
                the sockaddr structures.
        LIBOPENDKIM: Fix bug #SF3545490: If the body handed to the library was
                missing a trailing line terminator, then dkim_canon_closebody()
                would end the hashes with some data not included.  Now, if
                DKIM_LIBFLAGS_FIXCRLF is set, it will detect this condition
                and correct it; if not, an error is returned.
        LIBOPENDKIM: If the job ID passed in during handle creation includes
                slashes and temporary file creation is enabled, convert the
                slashes to dots in the temporary file template.

2.6.5           2012/07/14
        Swap order of "header.d" and "header.i" values in
                Authentication-Results fields.
        BUILD: Fix bug #SF3543282: Corrections to Darwin/libar build adjustment
                made in 2.6.3.

2.6.4           2012/07/12
        Feature request #SF3542099: Include "header.d" in all
                Authentication-Results fields, not just "header.i".  This
                makes life easier for users of OpenDMARC.
        BUILD: Fix SHA256 test on some systems.

2.6.3           2012/07/11
        Add "ResolvConf" setting, allowing the ability to pass a
                resolv.conf-like file to unbound to allow specific nameservers
                to be used instead of the default.
        LIBOPENDKIM: Return the correct error code when a SHA1-only library
                encounters a SHA1 signature that references a SHA256-only key.
        LIBAR: Add ar_resolvconf().
        BUILD: Fix bug #SF3538676: Build with -DDARWIN on MacOSX, and default
                to arlib if unbound isn't selected.

2.6.2           2012/07/02
        Fix build confusion between _FFR_RATE_LIMIT and _FFR_RESIGN.
        Fix bug #SF3538639: Fix error when --domain is not provided to
                opendkim-genrates.  Problem noted by Andreas Schulze.
        Fix bug #SF3539449: Clarify legal "Socket" values.
        Fix bug #SF3539493: Handle certain cases of data set names that
                appear to be comma-separated lists which include IPv6
                addresses.

2.6.1           2012/06/25
        Restore and activate _FFR_SELECT_CANONICALIZATION.  Also adds a
                SelectCanonicalizationHeader configuration option.
        Remove _FFR_SELECTOR_HEADER.
        Update Authentication-Results parsing to understand "dkim-atps"
                (RFC6541) and no longer understand "hardfail" (RFC6577).
        LIBAR: Fix bug #SF3309946: Ensure the dispatcher doesn't hold the
                master lock when it might enter a read wait.
        STATS: Add a database index on messages.msgtime to aid with
                expiration performance.
        TOOLS: Feature request #SF3536385: Add "-a" to opendkim-genkey to
                include a domain name in the generated TXT record.

2.6.0           2012/06/07
        Feature request #SF3502777: Log all authentication results rather than
                relying on logging of Authentication-Results header fields.
        Feature request #SF3512286: Add "LDAPSoftStart" flag so the filter
                doesn't abort on startup when LDAP is not available.
        Feature request #SF3512836: Add _FFR_SOCKETDB, which enables support
                for a generic socket data set.
        Feature request #SF3514982: Add Erlang data set support.
        Feature request #SF3516253: Update to newest "repute" working group
                documents, which mainly means adding JSON support and
                promoting application-specific extensions to the top level
                in the reputon structure.
        Feature request #SF3518593: Add support for OpenLDAP's MDB as a
                data set backend.
        Feature request #SF3519002: Put reason information inside a "reason"
                tag in Authentication-Results header fields rather than in
                comments.
        Feature request #SF3521000: Log hostname and daemon name (taken from
                macros) when logging "no MTA name match".
        Feature request #SF3524756: Add ability to request TCP keepalive
                features via the OpenLDAP client library.
        Feature request #SF3529233: Add odkim.get_envfrom() to all Lua scripts.
        Fix bug #SF3518877: Separate variable expansion from literal text in
                opendkim-genkey.
        Fix bug #SF3522883: Allow TLS for ldapi URIs.  Problem noted by
                Quanah Gibson-Mount.
        Fix bug #SF3527428: Construct the LDAP URI list properly, rather than
                only keeping the last one, and add failover code.
        Patch #SF3522895: Add contrib/ldap/opendkim.ldif.
        Activate _FFR_XTAGS.
        Remove _FFR_SELECT_CANONICALIZATION.
        LIBAR: Fix bug #SF3444318: Do proper buffer size calculations to
                avoid valgrind warnings about references to unaddressable
                space.
        LIBOPENDKIM: Fix bug #SF3496041: Remove _FFR_PARSETIME.
        LIBOPENDKIM: Fix bug #SF3516653: By default, treat a syntax error
                in an ADSP record as an NXDOMAIN.  Add new library flag
                DKIM_LIBFLAGS_REPORTBADADSP to restore the original
                behaviour.
        LIBOPENDKIM: Fix bug #SF3524865: Disallow generation of signatures
                where signer and signing domain don't match per the DKIM
                specification.  Add DKIM_LIBFLAGS_DROPSIGNER which, if set,
                will still generate signatures in that case, but with the
                signer omitted so the signature is still compliant.
        BUILD: Fix bug #SF3425384: Add missing support for compiling
                against libevent2, which is an option for unbound.
        BUILD: Fix bug #SF3475799: Don't do a manual check for libdb.a.
                Use the AC_CHECK_* macros instead.
        DOCS: Fix bug #SF3518864: The license for IETF documents is not
                compatible with free software licensing, which makes packaging
                a bit of a chore.  Replace all the text files in the "docs"
                directory with a single HTML page that includes links to
                all the things we used to include here.
        STATS: Feature request #SF3110059: Move opendkim-reportstats from
                contrib/stats to stats, making it fully supported.
        STATS: Feature request #SF3525786: Add opendkim-expire script.
        STATS: Feature request #SF3528652: Allow a specific list of domains,
                possibly read from a file, for opendkim-gengraphs and
                opendkim-genrates.
2012-11-12 19:23:35 +00:00
drochner
7cdecebdc1 update to 2.4.33
changes: bugfixes
2012-11-06 18:56:12 +00:00
ryoon
1d797f60af Fix PR pkg/47160
Readd checksum for enigmail distfile.
2012-11-05 22:44:10 +00:00
reed
ae3b61b3c0 New package: mailsort 2012-11-05 15:07:15 +00:00
reed
a52b90494c New package: mailsort
mailsort is a perl script that sorts mbox format (single file) mail
folders by the dates in the `From ' lines that separate mail messages
in each folder.
2012-11-05 15:06:45 +00:00
tron
a636538274 Force use of "openssl" package from pkgsrc under NetBSD 5.* and older
to fix the build. As the "fetchmail" package doesn't provide any
shared libraries this shouldn't cause problems caused by mixing two
versions of OpenSSL.
2012-11-04 23:06:23 +00:00
morr
9e5e6bc83f Correct typo. Noted by Bug Hunting. 2012-11-04 18:41:47 +00:00
ryoon
f33ac3476d Update to 16.0.2
* Sync with mail/thunderbird 16.0.2
2012-11-03 22:53:43 +00:00
ryoon
2dd57cc7d5 Update to 16.0.2
Changelog:
Fixed in Thunderbird 16.0.2
MFSA 2012-90 Fixes for Location object issues
MFSA 2012-67 Installer will launch incorrect executable following new installation
2012-11-03 22:51:53 +00:00
morr
6d5c24a76b Update fetchmail and fetchmailconf to version 6.3.22.
# SECURITY FIXES
* for CVE-2012-3482:
  NTLM: fetchmail mistook an error message that the server sent in response to
  an NTLM request for protocol exchange, tried to decode it, and crashed while
  reading from a bad memory location.
  Also, with a carefully crafted NTLM challenge packet sent from the server, it
  would be possible that fetchmail conveyed confidential data not meant for the
  server through the NTLM response packet.
  Fix: Detect base64 decoding errors, validate the NTLM challenge, and abort
  NTLM authentication in case of error.
  See fetchmail-SA-2012-02.txt for further details.
  Reported by J. Porter Clark.
* for CVE-2011-3389:
  SSL/TLS (wrapped and STARTTLS): fetchmail used to disable a countermeasure
  against a certain kind of attack against cipher block chaining initialization
  vectors (SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS).
  Whether this creates an exploitable situation, depends on the server and the
  negotiated ciphers.
  As a precaution, fetchmail 6.3.22 enables the countermeasure, by clearing
  SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS.
  NOTE that this can cause connections to certain non-conforming servers to
  fail, in which case you can set the environment variable
  FETCHMAIL_DISABLE_CBC_IV_COUNTERMEASURE to any non-empty value when starting
  fetchmail to re-instate the compatibility option at the expense of security.
  Reported by Apple Product Security.
  For technical details, refer to <http://www.openssl.org/~bodo/tls-cbc.txt>.
  See fetchmail-SA-2012-01.txt for further details.

# BUG FIX
* The Server certificate: message in verbose mode now appears on stdout like the
  remainder of the output. Reported by Henry Jensen, to fix Debian Bug #639807.
* The GSSAPI-related autoconf code now matches gssapi.c better, and uses
  a different check to look for GSS_C_NT_HOSTBASED_SERVICE.
  This fixes the GSSAPI-enabled build on NetBSD 6 Beta.

# CHANGES
* On systems where SSLv2_client_method isn't defined in OpenSSL (such as
  newer Debian, and Ubuntu starting with 11.10 oneiric ocelot), don't
  reference it (to fix the build) and if configured, print a run-time error
  that the OS does not support SSLv2. Fixes Debian Bug #622054,
  but note that that bug report has a more thorough patch that does away with
  SSLv2 altogether.
* The security and errata notices fetchmail-{EN,SA}-20??-??.txt are now
  under the more relaxed CC BY-ND 3.0 license (the noncommercial clause
  was dropped). The Creative Commons address was updated.
* The Python-related Makefile.am parts were simplified to avoid an automake
  1.11.X bug around noinst_PYTHON, Automake Bug #10995.
* Configuring fetchmail without SSL now triggers a configure warning,
  and asks the user to consider running configure --with-ssl.

# WORKAROUNDS
* Some servers, notably Zimbra, return A1234 987 FETCH () in response to
  a header request, in the face of message corruption.  fetchmail now treats
  these as temporary errors. Report and Patch by Mikulas Patocka, Red Hat.
* Some servers, notably Microsoft Exchange, return "A0009 OK FETCH completed."
  without any header in response to a header request for meeting reminder
  messages (with a "meeting.ics" attachment). fetchmail now treats these as
  transient errors.  Report by John Connett, Patch by Sunil Shetye.

# TRANSLATION UPDATES
* [cs]    Czech, by Petr Pisar
* [de]    German
* [fr]    French, by Frédéric Marchal
* [ja]    Japanese, by Takeshi Hamasaki
* [pl]    Polish, by Jakub Bogusz
* [sv]    Swedish, by Göran Uddeborg --- NEW TRANSLATION - Thank you!
* [vi]    Vietnamese, by Trần Ngọc Quân
2012-11-03 22:50:22 +00:00
abs
b89a3950d5 Updated mail/exim to 4.80.1
Exim version 4.80.1
-------------------

PP/01 SECURITY: protect DKIM DNS decoding from remote exploit.
      CVE-2012-5671
      This, or similar/improved, will also be change PP/11 of 4.81.

See: https://secunia.com/advisories/51098/
2012-10-30 20:12:20 +00:00
markd
0fd3260e15 Update to 1.00
1.00  Sat Apr 16 13:10:16 UTC 2011
    - Avoid infinite loop: signal handler modifies errno
    - Added support for SMFIC_UNKNOWN

0.99  Sun Feb  6 21:32:30 UTC 2011
    - RT#65499: Handle IPv6 addresses in SMFIC_CONNECT in
      Sendmail::PMilter::Context

0.98  Fri Mar 12 21:36:18 GMT 2010
    - RT#51759: added child_init and child_exit parameters to prefork
      dispatcher -Michael Schout
    - RT#51713: fixed POD errors for embedded '>' -Michael Schout
    - Note in the POD that the module is orphaned and is looking for a
      proper maintainer.

0.97  Mon Feb 23 23:39:15 2009 UTC
    - RT#43327: Changed protocol testing condition from ($ver == 2) to ($ver >= 2 && $ver <= 6)
      to make the milter work with Sendmail 8.14
    - Removed CVS Id from Changes file

0.96  Sat Jul 07 18:27:25 2007 UTC
    - Changed threads::shared::share(\$nchildren) to
      threads::shared::share($nchildren), this should fix some failing smokes
2012-10-28 02:06:11 +00:00
joerg
75ad7d74ec Fix a bunch of missing prototypes and incorrect not as void tagged
functions.
2012-10-26 20:27:15 +00:00
joerg
c843396692 Fix C++ syntax. 2012-10-26 20:25:18 +00:00
schmonz
f74be147ed Update to 4.35.0. From the changelog:
- fix From_ quoting in mbox delivery; use of the Python stdlib
  function meant getmail was incorrectly using mboxo-style quoting
  instead of mboxrd quoting, probably since early in the v4 series.
  Thanks: Christoph Mitterer.
2012-10-25 13:38:40 +00:00
wiz
2c72a9f0b9 Remove xextproto/buildlink3.mk in most cases where it occurs with
libXext/buildlink3.mk, now that it is included there.
Leave the places where its API version is set or variables from it
are used directly (about 3 packages).
2012-10-23 10:24:02 +00:00
ghen
cefb092371 Handover maintainership to Adam. 2012-10-22 09:41:07 +00:00
rh
5db21e2c96 Update GNUMail to 1.2.0. This makes GNUmail compile with clang and the
modern Objective-C runtime.
2012-10-22 02:53:12 +00:00
rh
65edc82c91 Update Pantomime to 1.2.0. This version now compiles with clang and the
modern Objective-C runtime.
2012-10-22 02:44:12 +00:00
wiz
4cf3716a36 Update to 1.35:
version 1.35:
	- added video/webm and audio/webm, although not (yet) IANA registered.
	  [Kurian Jose Aerthail]

version 1.34: Thu Jan 12 11:16:07 CET 2012
	- subType() did not handle subType's with '+' in them.
	  [Roman V. Nikolaev]

version 1.33: Thu Jan 12 08:46:05 CET 2012
	- all openxmlformats are binary [Beverly Wang]
	- mediaType() and subType() did not handle subType's with dots
	  in them correctly. [Roman V. Nikolaev]

version 1.32: Thu Aug 18 23:30:25 CEST 2011
	- explain how to use MIME::Types in mod_perl, after complains
	  from [Steve Simms], [Nicolas Mendoza], [Yves Orton] and
	  [Hans Dieter Pearcey]
	- when you do not read the documentation about mod_perl/fork,
	  then it will work as ever but still inefficient.
2012-10-21 22:08:45 +00:00
cheusov
439684c0ab Add CONFLICTS between mail/rblcheck and net/udns 2012-10-21 17:37:03 +00:00
cheusov
df6dca3140 Fix pkglint warnings; Add LICENSE 2012-10-21 17:32:49 +00:00
joerg
c8c7867f96 Forgotten patch to fix inline usage. 2012-10-20 22:13:28 +00:00
joerg
369ec28299 Fix inline usage. 2012-10-15 09:35:16 +00:00
taca
16fb0de1d2 Add minimum fix for XSS with HTTP_USER_AGENT from the repository.
Bump PKGREVISION.
2012-10-15 03:33:22 +00:00
ryoon
2bfa72b6c6 Update to 10.0.9
* Sync with thunderbird-10.0.9
2012-10-13 17:38:35 +00:00
ryoon
6622ff4ba7 Update to 10.0.9
Changelog:
Fixed in Thunderbird ESR 10.0.9
MFSA 2012-89 defaultValue security checks not applied

Fixed in Thunderbird ESR 10.0.8
MFSA 2012-87 Use-after-free in the IME State Manager
MFSA 2012-86 Heap memory corruption issues found using Address Sanitizer
MFSA 2012-85 Use-after-free, buffer overflow, and out of bounds read issues found using Address Sanitizer
MFSA 2012-84 Spoofing and script injection through location.hash
MFSA 2012-83 Chrome Object Wrapper (COW) does not disallow acces to privileged functions or properties
MFSA 2012-82 top object and location property accessible by plugins
MFSA 2012-81 GetProperty function can bypass security checks
MFSA 2012-79 DOS and crash with full screen and history navigation
MFSA 2012-77 Some DOMWindowUtils methods bypass security checks
MFSA 2012-74 Miscellaneous memory safety hazards (rv:16.0/ rv:10.0.8)
MFSA 2012-59 Location object can be shadowed using Object.defineProperty
2012-10-13 10:19:37 +00:00
ryoon
4136ea7c5c Sync with thunderbird-16.0.1 2012-10-12 18:50:10 +00:00
ryoon
b547bc93ea Add a forgotten patch 2012-10-12 18:29:39 +00:00
ryoon
6ef909421a Update to 16.0.1
Changelog:
    FIXED
    16.0.1: Vulnerability outlined here
	https://blog.mozilla.org/security/2012/10/10/security-vulnerability-in-firefox-16/
    NEW
    We have now added box.com to the list of online storage services that are available for use with Thunderbird Filelink
    NEW
    Silent, background updates. Thunderbird will now download and apply updates in the background allowing you to start quickly the next time Thunderbird starts up.
    FIXED
    Various fixes and performance improvements
    FIXED
    Various security fixes
Fixed in Thunderbird 16.0.1
MFSA 2012-89 defaultValue security checks not applied
MFSA 2012-88 Miscellaneous memory safety hazards (rv:16.0.1)

Fixed in Thunderbird 16
MFSA 2012-87 Use-after-free in the IME State Manager
MFSA 2012-86 Heap memory corruption issues found using Address Sanitizer
MFSA 2012-85 Use-after-free, buffer overflow, and out of bounds read issues found using Address Sanitizer
MFSA 2012-84 Spoofing and script injection through location.hash
MFSA 2012-83 Chrome Object Wrapper (COW) does not disallow acces to privileged functions or properties
MFSA 2012-82 top object and location property accessible by plugins
MFSA 2012-81 GetProperty function can bypass security checks
MFSA 2012-80 Crash with invalid cast when using instanceof operator
MFSA 2012-79 DOS and crash with full screen and history navigation
MFSA 2012-77 Some DOMWindowUtils methods bypass security checks
MFSA 2012-76 Continued access to initial origin after setting document.domain
MFSA 2012-75 select element persistance allows for attacks
MFSA 2012-74 Miscellaneous memory safety hazards (rv:16.0/ rv:10.0.8)
2012-10-12 18:28:58 +00:00
markd
27c63beccd Add heimdal support patches from imap-uw package. 2012-10-10 19:45:49 +00:00
markd
3c7606b9b2 Fix complaint about Base64: overflowed buffer.
Patch from Fedora.
2012-10-10 19:39:57 +00:00
drochner
4ea2e315db add patch from upstream to fix crash (NULL dereference) by strange
email contents (CVE-2012-4507)
bump PKGREV
2012-10-10 09:48:45 +00:00
adam
3f2cc57b2b Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
asau
d70c8e374b Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days. 2012-10-08 12:19:01 +00:00
cheusov
4b97be0632 Bump revision for packages with changed CONFLICTS (PYTHON_SELF_CONFLICT) 2012-10-04 00:21:58 +00:00
cheusov
11c7685b77 CONFLICTS between python modules 2012-10-03 23:40:35 +00:00
wiz
8b5d49eb78 Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
2012-10-03 21:53:53 +00:00
tron
14215633d2 Mass recursive bump after the dependence fix of the "cairo" package
requested by Thomas Klausner.
2012-10-02 17:10:28 +00:00
ghen
6d42828180 Update to Pigeonhole 0.3.3.
Changelog v0.3.2:

+ sieve-refilter tool: improved man page documentation by explicitly specifying
  the syntax used for mailbox arguments.
+ Sieve: spamtest and virustest extensions: improved trace debugging of score
  calculation.
+ Sieve: made error messages about exceeding the maximum number of actions more
  verbose.
- Sieve tools: fixed problems with running as root: sievec and sieve-dump now
  ignore mail_uid and mail_gid settings when run as root.
- Sieve: fixed bug in action accounting (for limit checking): increase action
  instance count only when an action is actually created.
- Sieve: include extension: fixed namespace separation of :global and :personal
  scripts.
- ManageSieve: fixed segfault bug triggered by CHECKSCRIPT command.
- Fixed linking with ld.gold.
- Fixed several Clang compile warnings and a few potential bugs.

Changelog v0.3.3:

- Fixed compile against installed Dovecot headers. This was broken by the
  ld.gold fix in the previous release.
2012-10-01 07:10:58 +00:00
ghen
4eb9ee8335 Update to Dovecot 2.1.10
+ imap: Implemented THREAD=ORDEREDSUBJECT extension.
+ Added "doveadm exec" command to easily execute commands from libexec_dir,
  e.g. "doveadm exec imap -u user@domain"
+ Added "doveadm copy" command.
+ doveadm copy/move: Added optional user parameter to specify the source
  username. This allows easily copying mails between different users.
+ Added namespace { disabled } setting to quickly enable/disable namespaces.
  This is especially useful when its value is returned by userdb.
+ Added mailbox_alias plugin. It allows creating mailbox aliases using
  symlinks.
+ imapc storage: Added imapc_max_idle_time setting to force activity on
  connection.
+ fts-solr: Expunging multiple messages is now faster.
- director: In some conditions director may have disconnected from another
  director (without logging about it), thinking it was sending invalid data.
- imap: Various fixes to listing mailboxes.
- pop3-migration plugin: Avoid disconnection from POP3 server due to idling.
- login processes crashed if there were a lot of local {} or remote {} settings
  blocks.
2012-10-01 07:10:14 +00:00
taca
b5d0ac47a8 Fix build problem on NetBSD 6.0_RC2 (and maybe current). 2012-09-24 16:12:15 +00:00
obache
61647dbcb4 Add an patch for libxml2>=2.9.0 2012-09-21 11:49:20 +00:00
obache
b54cc8cc7e apply patch for new API by libxml2-2.9.0, taken form upsteam master branch. 2012-09-20 11:53:18 +00:00
ryoon
48fea09825 Update to 10.0.7
Sync with mail/thunderbird10
2012-09-18 16:47:53 +00:00
ryoon
c7481cdb36 Update to 10.0.7
Changelog:
FIXED Security fixes can be found here

Fixed in Thunderbird ESR 10.0.7
MFSA 2012-72 Web console eval capable of executing chrome-privileged code
MFSA 2012-70 Location object security checks bypassed by chrome code
MFSA 2012-67 Installer will launch incorrect executable following new installation
MFSA 2012-65 Out-of-bounds read in format-number in XSLT
MFSA 2012-63 SVG buffer overflow and use-after-free issues
MFSA 2012-62 WebGL use-after-free and memory corruption
MFSA 2012-61 Memory corruption with bitmap format images with negative height
MFSA 2012-58 Use-after-free issues found using Address Sanitizer
MFSA 2012-57 Miscellaneous memory safety hazards (rv:15.0/ rv:10.0.7)
2012-09-18 16:44:24 +00:00
taca
6cb2315ac8 Remove support of ruby19 (Ruby 1.9.2). 2012-09-16 15:30:44 +00:00
dholland
fc4656e97e Since the last update, this will not build without the wide-curses
option, so turn it on by default.

The option should probably be removed entirely, as the code doesn't
look amenable to a narrow-only build.

PKGREVISION -> 2.
2012-09-16 00:51:32 +00:00
dholland
77539b8666 Fix C++ type error. 2012-09-16 00:49:41 +00:00
obache
d76d024350 Recursive bump from mysql51-client library changed to use openssl. 2012-09-15 15:03:21 +00:00
obache
c153fa90ef roundcube is PHP application, no need to buildlink with db client libraries. 2012-09-15 13:24:13 +00:00
ryoon
3fff8b6511 Update to 14.29
Changelog:
Version 1.4.29:
- The obsolete service name "ssmtp" was replaced with "smtps".
2012-09-15 11:24:43 +00:00
obache
c38c120ee5 recursive bump from libffi shlib major bump
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-15 10:03:29 +00:00
cheusov
0daf26d3de CONFLICTS with nullmailer-[0-9]* 2012-09-09 18:47:48 +00:00
cheusov
1e3ea155ff CONFLICTS with deliver-[0-9]*; ++pkgrevision 2012-09-09 18:30:18 +00:00
cheusov
1c90d12319 CONFLICTS with avenger-[0-9]*; ++pkgrevision
Fix some pkglint warnings
2012-09-09 18:28:07 +00:00
taca
69fd98af8b Update ruby-mime-types to 1.19.
== 1.19 / 2012-06-20
* New MIME Types:
  * XCF Gnome Images (image/x-xcf, image/x-compressed-xcf;
    .xcf). https://github.com/halostatue/mime-types/issue/17
  * Types reported in https://github.com/halostatue/mime-types/issues/12:
    * DV (video/x-dv; .dv)
    * IVF (video/x-ivf; .ivf)
    * Matroska (video/x-matroska; .mkv)
    * Motion JPEG (video/x-motion-jpeg; .mjpg)
    * RealMedia (official; application/vnd.rn-realmedia; .rm)
* New extensions:
  * dcm (application/dicom); https://github.com/halostatue/mime-types/issue/16.
  * Types reported in https://github.com/halostatue/mime-types/issues/12:
    * 3g2, 3gpp2 (video/3gpp2)
    * mpeg (video/mpeg)
    * mxf (application/mxf)
    * ts (video/MP2T)
    * ogg (video/ogg)
* Fixed MIME Types:
  * Adobe AIR application installer packages was missing a
    hyphen. https://github.com/halostatue/mime-types/issue/13
  * Types reported in https://github.com/halostatue/mime-types/issues/12:
    * audio/x-pn-realaudio extension is .ra, not .rm.
* Resolved https://github.com/halostatue/mime-types/issues/8. Apparently some
  people run the tests on Linux. Imagine that.
2012-09-09 15:02:34 +00:00
abs
f4b14298bb Updated mail/p5-MailTools to 2.11
version 2.11: Wed Aug 29 09:09:47 CEST 2012

        Fixes:

        - typo in Mail::Mailer::smtp, which only shows up in >5.14
          [cpantesters]

version 2.10: Tue Aug 28 09:41:52 CEST 2012

        Fixes:

        - Mail::Mailer::smtp set from address twice.
          rt.cpan.org#77161 [Vladimir Goshev]

        - Mail::Mailer::smtps did not support the From option.
          rt.cpan.org#77161 [Vladimir Goshev]

        Improvements:

        - Mail::Util::mailaddress has now an optional parameter to
          set the returned value explicitly.
          rt.cpan.org#75975 [Rolf G]
2012-09-09 13:17:58 +00:00
schmonz
0d5f9d3793 Update to 4.34.0. From the changelog:
- retrieve Gmail metadata (labels, thread ID, message ID) via IMAP
  extension and record it in new message headers. Thanks: Krzysztof
  Warzecha.
2012-09-08 19:39:21 +00:00
adam
b15c922bcc Revbump after updating graphics/cairo 2012-09-07 19:16:05 +00:00
spz
2be3c62472 add USE_TOOLS=perl so it'll build with PKG_DEVELOPER=yes 2012-09-07 18:36:02 +00:00
marino
a1f37d4f5f mail/thunderbird: Fix build for DragonFly
- kvm is still needed
- should fix FreeBSD as well
2012-09-03 15:47:49 +00:00
ryoon
27c269fcad Fix DragonFly build again. Thank you, marino@. 2012-09-03 15:27:31 +00:00
sno
a76f11d1e6 Changing all PERL5_MODULE_TYPE from Module::Install to M::I::Bundled,
Module::Install is for Authors only.

Bumping revision
2012-09-03 11:16:19 +00:00
ryoon
e5400ccccd Fix broken patch-mozilla_ipc_chromium_src_base_dir__reader__bsd.h. 2012-09-02 12:27:50 +00:00
ryoon
0e8995f548 Update to 15.0
* Sync with thunderbird-15.0
2012-09-02 11:15:25 +00:00
ryoon
d2e70b0ab3 Update to 15.0
* Update Mozilla Lightning to 1.7
* Update Enigmail to 1.4.4 (functionality is not tested yet; should
  be updated)
* Regen patches

Changelog:
    NEW Multi-Channel Chat: You now can enjoy real time conversation with your contacts, right from your favorite messaging application.
    NEW Do Not Track: This option has been implemented as an addition to Search the Web.
    NEW Ubuntu One is now supported in Filelink - the option to upload large attachments to online storage services.
    NEW New User Interface: Thunderbird is replicating the new look and feel of Mozilla Firefox in an effort to provide a similar user experience across all Mozilla software desktop or mobile and all platforms.
    FIXED Various fixes and performance improvements
    FIXED Various security fixes
MFSA 2012-72 Web console eval capable of executing chrome-privileged code
MFSA 2012-70 Location object security checks bypassed by chrome code
MFSA 2012-68 DOMParser loads linked resources in extensions when parsing text/html
MFSA 2012-67 Installer will launch incorrect executable following new installation
MFSA 2012-65 Out-of-bounds read in format-number in XSLT
MFSA 2012-64 Graphite 2 memory corruption
MFSA 2012-63 SVG buffer overflow and use-after-free issues
MFSA 2012-62 WebGL use-after-free and memory corruption
MFSA 2012-61 Memory corruption with bitmap format images with negative height
MFSA 2012-59 Location object can be shadowed using Object.defineProperty
MFSA 2012-58 Use-after-free issues found using Address Sanitizer
MFSA 2012-57 Miscellaneous memory safety hazards (rv:15.0/ rv:10.0.7)
2012-09-02 06:43:39 +00:00
wen
987b861408 Update to 0.190
Upstream changes:
0.190     2012-03-26
          fix skip test count

0.189     2012-03-26
          addresses in the form rjbs@[1.2.3.4], when allowed by allow_ip,
          are not failed for the tld check (reported by Marcel Gr.nauer)

0.188     2012-03-15
          fix [rt.cpan.org #75736], in which 0@domain.com was considered
          invalid (thanks for the fix from Steve Bertrand)

0.187     2012-01-27
          addresses in the form rjbs@[1.2.3.4] are now (correctly) considered
          valid; this can be disabled with the -allow_ip option
          (this resolves RT #48398)

          check email address length and localpart length (thanks, Steve
          Bertrand!)

0.186     2012-01-22
          use blessed($x) instead of wrapping an ->isa called in eval{}; this
          patch (thanks, Felipe Bergo!) was submitted to avoid problems with
          people who have global __DIE__ handlers, but was applied to just
          avoid the dumb eval{}; people with __DIE__ are otherwise on their
          own, here
2012-08-31 12:30:22 +00:00
schnoebe
5ddf349090 Add options to support SASL and TLS in nmh. 2012-08-31 02:09:49 +00:00
schnoebe
48afb37d6e Add a patch to fix the "-r" functionality in folder. 2012-08-31 00:50:04 +00:00
obache
fb0eef126f Recursive bump from boost-libs update. 2012-08-29 11:22:09 +00:00
tonio
deb6a61364 Add an option to use tokyocabinet as backend for mutt header cache 2012-08-28 20:15:41 +00:00
marino
70eeb6c300 mail/fdm: Fix non-privileged build and MAXNAMLEN
- The patch was added to define the non-posix MAXNAMLEN macro if it was
  not already defined.
- The Makefile had to patched and then inline-replaced to fix the
  invocation of the install program.  Without this, non-root builds fail.
2012-08-23 18:04:12 +00:00
dholland
bb123b8b60 These patches are no longer needed after the last update; they were
removed from distinfo but apparently not from CVS.
2012-08-23 04:10:59 +00:00
marino
f162cdcb03 Recursive PKGREVISION bump for tcl and tk upgrade to 8.5.12 2012-08-21 23:49:18 +00:00
tez
046479e4af Fix CVE-2012-3482
patch from 3fbc7cd331/diffs
2012-08-21 15:49:54 +00:00
taca
041aab1024 Update roundcube to 0.8.1.
Fixes two XSS issue.

Here is quote from changelog of 0.8.1, please refer CHAGNGELOG file for
full changes from 0.7.2.

- Fix bug where domain name was converted to lower-case even with login_lc=false (#1488593)
- Fix lower-casing email address on replies (#1488598)
- Fix line separator in exported messages (#1488603)
- Fix XSS issue where plain signatures wasn't secured in HTML mode (#1488613)
- Fix XSS issue where href="javascript:" wasn't secured (#1488613)
- Fix impossible to create message with empty plain text part (#1488610)
- Fix stripped apostrophes when replying in plain text to HTML message (#1488606)
- Fix inactive Save search option after advanced search (#1488607)
- Fix Remove from group option is active for contact search result (#1488608)
- Disable autocapitalization in login form on iPad/iPhone (#1488609)
- Fix focus on the list when list row is clicked (#1488600)
- Added separate From and To columns apart from smart From/To column (#1486891)
- Fix fallback to Larry skin when configured skin isn't available (#1488591)
- Fix (workaround) delete operations with some versions of memcache (#1488592)
- Fix (disable) request validation for spell and spell_html actions
2012-08-21 15:26:31 +00:00
wen
8d14994d1d Update to 3.029
Remove the unneeded patch

Upstream changes:
Version 3.029
Allow the MIME-Version header to be replaced (thanks, Florian!)

Version 3.028
Various documentation fixes
2012-08-18 01:21:25 +00:00
seb
e1401de2b4 Add & enable fdm 2012-08-17 17:46:53 +00:00
seb
c252d30d8f Initial import of fdm version 1.6 in the NetBSD Packages Collection.
fdm is a program to fetch mail and deliver it in various ways
depending on a user-supplied ruleset. Mail may be fetched from
stdin, IMAP or POP3 servers, or from local maildirs, and filtered
based on whether it matches a regexp, its size or age, or the output
of a shell command.  It can be rewritten by an external process,
dropped, left on the server or delivered into maildirs, mboxes, to
a file or pipe, or any combination.

fdm is designed to be lightweight but powerful, with a compact but
clear configuration syntax. It is primarily designed for single-user
uses but may also be configured to deliver mail in a multi-user
setup. In this case, it uses privilege separation to minimise the
amount of code running as the root user.
2012-08-17 17:45:40 +00:00
wen
74e19a3272 Update to 3.32
Upstream changes:
version 3.32: Fri, Aug 10, 2012  4:43:24 PM
	- document RFC2087 quota related calls
          [Mathias Reitinger] documentation request
	- rt.cpan.org#78474: idle/idle_data documentation error
          [Dima Kogan]
	- Quote()/Massage() now uses literals for non ascii data
          [Mathias Reitinger] reported issues with utf8 data in password
	- use Quote()/Massage() consistently now in:
	    login() proxyauth() deleteacl() setacl() listrights() rename()
	- documented deleteacl() and other minor pod cleanup
	- ran Mail::IMAPClient::BodyStructure through perltidy
	- update year in README/pod to 2012
	- rt.cpan.org#74733: Fails with Parse::RecDescent >= 1.966_002
          rt.cpan.org#74593: Recent changes break Module::ExtractUse and ...
	  [ANDK, TEAM, SREZIC, NBEBOUT at CPAN and nine from detonation]
	  - Makefile.PL avoid buggy Parse::RecDescent 1.966_002 until 1.967_009
	- rt.cpan.org#76989: Mail::IMAPClient::BodyStructure usage/docs
	  [Pierluigi Frullani]
	  - fix incorrect documentation on new()
	  - lots of doc verbiage updates
2012-08-17 15:26:01 +00:00
ghen
7a9afbe00f Update to Dovecot 2.1.9
* mail-log plugin: Log mailbox names with UTF-8 everywhere (instead of mUTF-7
  in some places and UTF-8 in other places)
* director: Changed director_username_hash setting's default from %u to %Lu (=
  lowercase usernames). This doesn't break any existing installations, but
  might fix some of them.

+ doveadm: Added "auth cache flush [<username>]" command.
+ Implemented dict passdb/userdb
+ Implemented Redis and memcached dict backends, which can be used as auth
  backends. Redis can also be used as dict-quota backend.
+ Added plugin { quota_ignore_save_errors=yes } setting to allow saving a mail
  when quota lookup fails with temporary failure.
- Full text search indexing might have failed for some messages, always causing
  indexer-worker process to run out of memory.
- fts-lucene: Fixed handling SEARCH HEADER FROM/TO/SUBJECT/CC/BCC when the
  header wasn't lowercased.
- fts-squat: Fixed crash when searching a virtual mailbox.
- pop3: Fixed assert crash when doing UIDL on empty mailbox on some setups.
- auth: GSSAPI RFC compliancy and error handling fixes.
- Various fixes related to handling shared namespaces
2012-08-13 13:57:46 +00:00
obache
7fd3b7da5b Uodate hypermail to 2.3.0.
Based on PR 46440 by Uwe Klaus.

Version Changes for Hypermail
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
============================
HYPERMAIL VERSION 2.3.0:
============================
Jose Kahan (Oct 27, 2009)

  - Added two new accesskeys in messages: 't' ->  next message
    in thread, 'd' -> next message

 Jose Kahan (Oct 26, 2009)
  - Updated hmrc.4 and hmrc.html to descrbie the new features.

 Jose Kahan (Oct 26, 2009)
  Various fixes / enhancements developed at W3C by Fumihiro Kato,
  Daigo Matsubara and myself:
  - Markup changes for deleted messages that are kept.
  - New directive: htmlmessage_deleted for setting a custom HTML
    message for the body of deleted messages.
  - New directive: delete_incremental to disable deleting of existing
    messages in the archive when doing an incremental add of a new
    message. In some setups, if this feature is enabled, replies to
    deleted messages will cause uncontrolled markup escape and
    expansion. Feature is enabled by default.
  - Updated list of known protocol uris that hypermail will convert
    into links.
  - Bug fix: setup.c:MakeConfig() CFG_SWITCH was using long instead of
    int.
  - New directive: fragment_prefix for customizing the prefix that is
    put before each URI fragment in a message. Default value is "msg",
    the previous hard-coded value.
  - New directive: email_address_obfuscation foro enablingemail
    address obfuscation using numeric character reference.
  - New directive: inline_addlink to add in-line links to content that
    is stored in the attachments subdirectory. 'inline_types" must
    also be enabled.
  - New directive: inreplyto_command, gives a URI template to a script
    that hypermail will link to if it's unable to find a corresponding
    Message-Id in the archive's messages.

 Peter McCluskey (May 13, 2008)
  Change from Fumihiro Kato to fix bug that sometimes caused a charset
   problem when Content-Type is us-ascii but message headers
   include other encoded text like utf-8.

 Peter McCluskey (Nov 14, 2007)
  Applied xhtml patch from Zvi Har'El.

 Peter McCluskey (Oct 1, 2007)
  Changes from Fumihiro Kato to fix bugs on 64 bit systems and some
   possible buffer overflow problems.
  Change in rules about whether to escape urls; it now seems to escape them
   when found in the middle of the line the same way it has been doing when
   they are at the start of a line.

 Peter McCluskey (Feb 16, 2007)
  Changes from Rick van der Zwet:
   cosmetic = tweaking the interface a small bit (right align, the message
   numbers, years in the date listing
   spamify-domain = obfuscate the body of the message as well (will also
   obfuscate 'ssh rick@foo.bar' this of course), moved the domain obfuscate
   yes/no to the general to make the function more portable
 Changes from Mike Fabian changing int to size_t.

 Peter McCluskey (Mar 27, 2006)
  Add rel="nofollow" to text message URLs (option txtsuffix = 1).

 Peter McCluskey (Mar 14, 2006)
  Fixed a core dump with linkquotes = 1 caused by Daigo's changes.

 Peter McCluskey (Sep 30, 2005)
  Fixed missing links at top when show_index_links is 1 or 3.

 Peter McCluskey (Aug 4, 2005)
  Fixed double counting of messages deleted with the delete_msgnum option,
  which sometimes caused top level index page to show wrong number of
  messages and not link to a folder.

 Peter McCluskey (Jul 29, 2005)
  Changed to sort on sender date rather than from date when displaying
  sender date as a result of use_sender_date = 1.

 Peter McCluskey (Jun 23, 2005)
  Some small changes from Vincent McIntyre to make date-range in index of
  folders link to default index page, to use CSS instead of <th> to
  distinguish that column, and some whitespace changes.
  Added explanation of how to handle strcasestr prototype error to INSTALL.

 Peter McCluskey (Mar 19, 2005)
  Fixes to files_by_thread option submitted by Oliver Meili.

 Peter McCluskey (Dec 2, 2004)
  Patch from Ulf Härnhammar to fix two format string bugs in Hypermail.
  They could have caused crashes if using incremental mode on edited
  pre-existing archives with data like "%n%n%n%n%n%n%n%n" in certain lines.

 Peter McCluskey (Nov 28, 2004)
  Add filename_base option.

 Peter McCluskey (Sep 29, 2004)
  Add support for JAVT timezone.
  Add mailbox_date_trimmer to contrib, faq.

 Peter McCluskey (Jun 2, 2004)
  Add language code substitution cookie patch from Shane Wegner.

============================
HYPERMAIL VERSION 2.2.0:
============================
 Peter McCluskey (May 25, 2004)
  Changed some of the addresses to hypermail-project.org.
  Made the "We delete ... " message print only if progress != 0.

 Peter McCluskey (Mar 23, 2004)
   Changes to speed up incremental update when there are deleted files if
  using usegdbm (it's still slow if usegdbm = 0).

============================
HYPERMAIL VERSION 2.1.9:
============================
 Peter McCluskey (Feb 23, 2004)
  Released version 2.1.9 tar file.

 Peter McCluskey (Feb 17, 2004)
  Add use_sender_date option.
  Fix instructions for doing "make install" so that the documentation will
  be installed.

 Peter McCluskey (Feb 5, 2004)
  Update much of the documentation.

 Peter McCluskey (Feb 4, 2004)
  Change default in setup.c for spamprotect and spamprotect_id to On.

 Peter McCluskey (Feb 2, 2004)
  Add set_report_new_file and set_report_new_folder options.

 Peter McCluskey (Jan 23, 2004)
  Add in missing <a name="end"> for index files.
  Removed a misleading, nonportable timezone string from link titles in
 toplevel index pages.

 Peter McCluskey (Jan 9, 2004)
  Change to make mbox_shortened option work a little better with
 discard_dup_msgids = 0.
  Change folder_by_date option to use "From " date rather than "Date: "
 to decide which subdirectory to use. This makes it consistent with
 top level index page.

 Peter McCluskey (Dec 26, 2003)
  Add increment = -1 mode to enable automatic determination of whether
 to update or append in most cases.

 Peter McCluskey (Dec 3, 2003)
  Added a mbox_shortened option to handle mboxes that have had messages
 deleted from the start of the mbox.

 Peter McCluskey (Dec 1, 2003)
  Fix mismatch in <ul>, </ul> in date.html with indextable = 0.

 Peter McCluskey (Nov 17, 2003)
  Add a check for the problem with the starting message number that was
 partly fixed on Oct 1. Now old archives with a startmsgnum = 0 .hmrc but
 a first message of 0001.html in this case will be treated as if startmsgnum
 was 0.

 Peter McCluskey (Nov 15, 2003)
  Add Portugese support from Hugo Cisneiros.

 Peter McCluskey (Oct 1, 2003)
  Fix some problems with starting message number that caused bugs when
  increment = 1, linkquotes = 1 and using folder_by_date.

 Peter McCluskey (Sep 11, 2003)
  Fixes to make pcre work.

 Peter McCluskey (Sep 3, 2003)
  Applied patches from Mike McDonald to use nowrap option in the author and
 date columns in the index tables and get rid of all of the 'width=100%'
 options to the tables.

 Peter McCluskey (Sep 3, 2003)
  French language improvements from Olivier Kaloudoff.

 Peter McCluskey (Sep 1, 2003)
  Applied patches from Mike McDonald to make spamify_replacedomain use
 set_antispam_at, change printdates to include the dates in the table
 version of the bydate index, and make the table use the whole screen
 width instead of 80%.

 Jose Kahan (Aug  18, 2003)
  - Changed to lowercase the suffixes added to the message indexes. That is,
    from "archive name By Date" to "archive name by date" because the
    upper case seemed out of style as we don't have any control on what
    is the string used for the archive's name. Did this change only for
    the English messages as I don't know if this convention works well for
    other languages.

 Jose Kahan (Aug  18, 2003)
  - Made the links to the different indexes show the index of the current entry.
    This change originated from the feedback we got on the WAI enhanced archievs.
    People find that this small changes increases the usability of the archive.

 Jose Kahan (Aug  18, 2003)
  - The links to the first message (aka #first) were not working in the
    by attachment, by author, and by subject indexes.

 Peter McCluskey (Aug 16, 2003)
  - applied fix from Jean-Charles Meyrignac to handle 0x1A in mbox.

 Jose Kahan (Aug  14, 2003)
  - After receiving more feedback, reverted the changes done for converting the
    displayed value of the Date: header. The reason is that users like to know
    when they send a message. This information was getting lost because we
    were converting the date to the local time.
  - Made the Received on date be  shown in converted local time.
  - Added a new configuration option, indexdateformat, so that people can
    specify a different format for indexes than the one used elsewhere. If this
    variable is not defined., it'll use the dateformat by default.
  - Made the index by date compare dates independently of the value of dateformat.

 Jose Kahan (Aug  13, 2003)
  - Made the Received on footnote line use the same date format as that used for the
    Date: header on top of the messages.

 Jose Kahan (Aug  18, 2003)
  - Small WAI change to the list of indexes to show the entry corresponding to
    the current index, but outside of a link. This comes from feedback, where
    people said it was less distracting to see the same index to links all
    the time.

 Jose Kahan (Aug  18, 2003)
  - Add the <title> WAI enhancement that I had forgotten to do for messages.
    The new format is: [subject] from [author] on [date] ([mailing list label]).
    I also removed the 64 characters maximum limit check we had on the title.
    The reason is that this is not part of the HTML specification, but rather
    a writing style. Dominique says we shouldn't be so strict in this case. In
    addition, just adding a \0 after 64 characters could break entity names and
    generate invalid HTML.

 Jose Kahan (Aug  13, 2003)
  - The mailcommand option didn't work when applied to a paragraph that had
    a previously converted href string that includes the '@' char. I added
    a quick hack to ConvURlsString to avoid doing the mailto: convertion if an href
    already exists in that line. The best solution would be to do something
    similar to ConvURLsWithHrefs.
    Also fixed a memory leak.

 Peter McCluskey (Aug 8, 2003)
  - Applied haof fixes from Bernhard Reiter.

 Jose Kahan (Aug  4, 2003)
  - As a side effect of PNK's use of an SGML entity for the @ char, the
    mailcommand option stopped working on all the headers except for
    the To: one.

 Jose Kahan (Aug  1, 2003)
  - In order to guarantee the validity of XHTML documents, changed the
    behavior of hypermail when including customized footers. Previously,
    when using this option, the custom markup had to include the </body>
    and </html> end tags. As we also need to include a </div> in some
    cases for XHTML and it's much harder to guess when to add it, I
    made hypermail always add those three end tags as needed, regardless
    of whether the custom footer option is being used.

 Jose Kahan (Jul 30, 2003)
  - After talking with Dom Hazel-Massieux, I added some extra WAI enhancements
    to the list of indexes generated by hypermai. Specifically, the date
    is shown in a verbose name in the title attribute of each entry and in
    an abbreviated version in the markup that's being displayed.

 Jose Kahan (Jul 30, 2003)
  - When rebuilding an archive, the attachment files were not being overwritten
    correctly. . Fixed this by adding an O_TRUNC flag.

 Jose Kahan (Jul 29, 2003)
  - Removed a memory leak in file.c as reported by insure.
  - The ietf-mbox option didn't work on "quoted printable" encoded attachments.

 Peter McCluskey (July 22, 2003)
   Fix show_msg_links = 3 option (Jose's changes assumed it didn't exist).
   Updates to German from Tobias Weber.

 Kent Landfield (Jul 14, 2003)
   - When show_headers was used in print.c, the newline was not recognized
     early enough in printheaders. A check was added to assure the newline
     was recognized properly.

 Kent Landfield (Jul 10, 2003)
  - Small typo in print.c corrected.
       fprintf(fp, "%s ^lt;<em>%s</em>&gt;"...
2012-08-13 12:41:10 +00:00
taca
327230d450 Some tweak in MESSAGE.
* Note UPGRADING document which describes update process.
* Remove note for older package.

Bump PKGREVISION.
2012-08-12 16:19:41 +00:00
taca
e56cd03480 Update postfix to 2.8.12.
All supported releases:

  * The local(8) delivery agent's BIFF client leaked an unprivileged
    UDP socket. Fix by Jaroslav Skarvada. This bug was introduced
    19990127.

  * The SMTP server did not reject the AUTH command while a MAIL
    FROM transaction was in progress. Reported by Timo Sirainen.
    This bug was introduced 20000314.

Postfix 2.8 and later:

  * The unused "pass" trigger client could close the wrong file
    descriptors. This bug was introduced with Postfix 2.8.
2012-08-12 16:16:21 +00:00
taca
6b8489b15f Update ruby-actionmailer32 to 3.2.8.
## Rails 3.2.8 (Aug 9, 2012) ##

*   No changes.
2012-08-12 12:42:14 +00:00
taca
ad7c77d3e7 Update ruby-actionmailer31 to 3.1.8.
## Rails 3.1.8 (Aug 9, 2012)

*   No changes.
2012-08-12 10:37:22 +00:00
taca
b43b049495 Update ruby-actionmailer3 to 3.0.17.
## Rails 3.0.17 (Aug 9, 2012)

* No changes.
2012-08-12 09:48:26 +00:00
obache
8fa8841bc3 Add ruby 1.9 support (and drop 1.8 support).
PR 46764 by Miwa Susumu.
2012-08-11 13:51:20 +00:00
drochner
aeeda05dfe update to 0.7.8 to sync w/ current claws-mail version 2012-08-10 15:37:49 +00:00
ryoon
217e5bb7f6 Bump PKGREVISION
* Fix version number in ~/.thunderbird/*/prefs.js, s/10.0.6esrpre/10.0.6/
  Originally reported by is@ on tech-pkg@.
  Now firefox10-10.0.6 can be invoked from thunderbird10-10.0.6nb1.
2012-08-09 15:57:06 +00:00
schmonz
6c056ff11e Update to 4.33.0. From the changelog:
- allow normal exit on interrupt (ctrl-c) to allow the uesr to abort
  message retrieval while still remembering already-retrieved
  messages as successfully delivered. You may get a weird error
  message after you abort, since the server may be in the middle
  of delivering another message to getmail at the time. Thanks:
  Krzysztof Warzecha.
2012-08-08 12:22:58 +00:00
ryoon
1917709a65 Update to10.0.6
* Sync with mail/thunderbord10
2012-08-05 12:04:44 +00:00
obache
ab4e71d90b Bump PKGREVISION for change of PostgreSQL default version to 9.1. 2012-08-05 10:02:09 +00:00
ryoon
6d04f0efe7 Update to 10.0.6
* Remove obsolete mozilla-jit option

Changelog:
Fix the following security issues.

MFSA 2012-56 Code execution through javascript: URLs
MFSA 2012-54 Clickjacking of certificate warning page
MFSA 2012-53 Content Security Policy 1.0 implementation errors cause data leakage
MFSA 2012-52 JSDependentString::undepend string conversion results in memory corruption
MFSA 2012-51 X-Frame-Options header ignored when duplicated
MFSA 2012-49 Same-compartment Security Wrappers can be bypassed
MFSA 2012-48 use-after-free in nsGlobalWindow::PageHidden
MFSA 2012-47 Improper filtering of javascript in HTML feed-view
MFSA 2012-45 Spoofing issue with location
MFSA 2012-44 Gecko memory corruption
MFSA 2012-42 Miscellaneous memory safety hazards (rv:14.0/ rv:10.0.6)
2012-08-04 12:03:31 +00:00
sborrill
434d7af8cb Should have been revbumped when imap-uw was updated. Hi wiz! 2012-08-03 12:59:10 +00:00
taca
9a9dcb82bd Bump PKGREVISION to reflect dependency to devel/ruby-activesupport3. 2012-07-31 13:02:49 +00:00
taca
7761c0ad9c Update ruby-actionmailer32 to 3.2.7.
## Rails 3.2.7 (unreleased)

*   No changes.
2012-07-31 12:56:13 +00:00
taca
83f983a185 Update ruby-actionmailer31 to 3.1.7.
## Rails 3.1.7 (Jul 26, 2012)

*   No changes.
2012-07-31 12:38:47 +00:00
taca
fc7e232ae8 Update ruby-actionmailer3 to 3.0.16.
## Rails 3.0.16 (Jul 26, 2012)

*   No changes.

## Rails 3.0.14 (Jun 12, 2012)

*   No changes.
2012-07-31 12:25:49 +00:00