Commit graph

6720 commits

Author SHA1 Message Date
markd
88d45b13ca Update akonadi to 1.1.95
1.1.95                           23-June-2009
---------------------------------------------
- Fix item size handling.
- Add support for retrieving collection statistics as part
  of the AKLIST/AKLSUB commands.
- Add support for collection size statistics.
- Build fixes for Windows.
- Support RID-based operations for CREATE, MODIFY and DELETE.
- Avoid emitting unecessary change notifications when
  modifying items or collections.
- Add COLMOVE command.
- Reduce number of database writes when modifying a collection.
- Fix parsing of attributes containing CR or LF characters.

1.1.90                           03-June-2009
---------------------------------------------
- Return the storage location for items in FETCH responses
- Fix remode identifier encoding problems
- Fix infinite loop when parsing RID lists
- Fix parsing errors on stray newlines
- Support RID-based operations for STORE and MOVE
- Fix race on resource creation
- Provide modified item parts in change notifications
- Build system fixes

1.1.85                            05-May-2009
---------------------------------------------
- Improved CMake scripts so it is possible to detect
  the Akonadi version in projects that depend on it.
- Simplified the check for existance of tables.
- Add a dedicated item deletion command, to get rid of
  the old STORE/EXPUNGE which was extremely inefficient.
- Some fixes to support sqlite in the future.
- Soprano is required now.
- Qt 4.5.0 is required now.
- Support for collection retrieval by remote identifier.
- Support for item retrieval based on the remote identifier.
- Less useless debug output.
- Fixed leak on socket error.
- Various smaller bug fixes, see ChangeLog for a list.
- Support for writing large payloads to a file.
- New Item retrieval code.
- Added a streaming IMAP parser, and ported code the use it.
- Add support for manually restarting an agent instance.
2009-07-25 12:30:37 +00:00
schmonz
a1bb72f22f Update to 0.2.2. From the changelog:
- Fix quicksearchbox look in Chrome and Konqueror (#1484841)
- Fix UTF-8 byte-order mark removing (#1485514)
- Fix folders subscribtions on Konqueror (#1484841)
- Fix debug console on Konqueror and Safari
- Fix messagelist focus issue when modifying status of selected
    messages (#1485807)
- Support STARTTLS in IMAP connection (#1485284)
- Fix DEL key problem in search boxes (#1485528)
- Support several e-mail addresses per user from virtuser_file (#1485678)
- Fix drag&drop with scrolling on IE (#1485786)
- Fix adding signature separator in html mode (#1485350)
- Fix opening attachment marks message as read (#1485803)
- Fix 'temp_dir' does not support relative path under Windows (#1484529)
- Fix "Initialize Database" button missing from installer (#1485802)
- Fix compose window doesn't fit 1024x768 window (#1485396)
- Fix service not available error when pressing back from compose
    dialog (#1485552)
- Fix using mail() on Windows (#1485779)
- Fix word wrapping in message-part's <PRE>s for printing (#1485787)
- Fix incorrect word wrapping in outgoing plaintext multibyte
    messages (#1485714)
- Fix double footer in HTML message with embedded images
- Fix TNEF implementation bug (#1485773)
- Fix incorrect row id parsing for LDAP contacts list (#1485784)
- Fix 'mode' parameter in sqlite DSN (#1485772)

From Fredrik Pettai in PR pkg/41778 (and private mail that once
again got lost in the shuffle, sorry).
2009-07-25 01:19:16 +00:00
wiz
d70523df21 Remove USE_DIRS from pkgsrc.
Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.

Packages needing empty directories can use the @pkgdir command in PLIST.

Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
2009-07-22 09:01:16 +00:00
wiz
5d67015237 Remove DragonFly portability patch that isn't necessary any longer.
Ok hasso@
2009-07-19 19:16:17 +00:00
wiz
e80d82976f Update to 2.4.7:
2009-04-27  Jeffrey Stedfast  <fejj@novell.com>

	* README: Bumped version

	* configure.in: Bumped version to 2.4.7

	* build/vs2008/gmime.vcproj: Bumped version.

2009-04-25  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-object.c (g_mime_object_set_disposition): Unref the
	disposition after setting it on the GMimeObject, don't ref it
	again. Oops.

	* gmime/gmime-message.c (unblock_changed_event): Oops, this needs
	to /unblock/ the event handler.

	* gmime/gmime-header.c (g_mime_header_list_set_raw): Added back
	just in case someone was foolish enough to use this API.
	(g_mime_header_list_has_raw): Same.

2009-04-24  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-parser.c (struct _GMimeParserPrivate): Added
	message_headers_begin/end and changed the meaning of
	headers_begin/end to be for the current MIME part rather than for
	the current message itself.
	(g_mime_parser_init): Init the boolean state variables before
	calling parser_init() so that parser_init() can use them.
	(parser_init): Only create a rawbuf if our stream isn't seekable
	or isn't persistent. Initialize our new message_headers_begin/end.
	(g_mime_parser_set_persist_stream): If our persist mode has
	changed, malloc or free our rawbuf.
	(raw_header_append): Don't append any data if rawbuf is NULL (this
	means we're keeping track of offsets instead).
	(parser_step_headers): Always update headers_begin/end since we
	now always want to keep track of all header begin/end offsets.
	(parser_step): Update our message_headers_begin/end state.
	(parser_scan_message_part): Set the mime-part's raw header stream
	on the message too.
	(parser_construct_message): Same.
	(parser_construct_leaf_part): Substream the input stream to get
	our raw header stream to set on the mime-part's header-list.
	(parser_construct_multipart): Same.

	* gmime/gmime-header.c (struct _GMimeHeaderList): Instead of
	having a string buffer holding the raw header block content,
	instead keep a stream. This not only makes it easy for us to keep
	track of what the header offsets on disk are should the developer
	want to know, but it also means we don't necessarily have to use
	duplicate the header block to memory.
	(g_mime_header_list_set_stream): New function that replaces the
	old g_mime_header_list_set_raw() and looks much cleaner.
	(g_mime_header_list_get_stream): New function to access said
	stream.

	* gmime/gmime-message.c: Fixed uses of
	g_mime_header_list_set/has_raw().
	(g_mime_message_set_mime_part): Set the message's raw header
	stream to NULL.

	* gmime/gmime-multipart.c: Same.

	* tests/test-parser.c (test_parser): Updated.

2009-04-09  Jeffrey Stedfast  <fejj@novell.com>

	* README: Bumped version

	* configure.in: Bumped version to 2.4.6

2009-04-05  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-encodings.c (g_mime_encoding_uudecode_step): Fixed a
	bug wrt updating uulen when the data isn't an exact multiple of 3.

	* src/uuencode.c (uuencode): Don't bother dup()ing the stdout fd, just
	use set_owner(FALSE) so that it doesn't close when we destroy the stream
	instead.

	* gmime/gmime-stream-file.c (stream_read, stream_write): Don't depend on
	simple arithmetic to update our stream->position on Windows since it
	may do line-ending translation behind our backs. Call ftell() to get
	our real position after reading or writing.

	* gmime/gmime-stream-fs.c (stream_read, stream_write): Same idea.

	* gmime/gmime-utils.c (mktime_utc): Fixed the Windows code-path.
	(charset_convert): In the Windows case, fake the E2BIG error condition
	if outleft <= inleft on any error as errno doesn't seem to get
	properly set in this case.

	* tests/test-headers.c: Removed unused headers to fix the build on
	Windows.

2009-04-04  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-stream-fs.c: Ported to Windows by #including io.h

	* examples/basic-example.c: Reverted to the old GMimeStreamFs logic
	and #included io.h for G_OS_WIN32 systems.

	* examples/imap-example.c: Ported to Windows by #including io.h and
	using g_ascii_strcasecmp().

2009-04-03  Jeffrey Stedfast  <fejj@novell.com>

	* build/vs2008: New directory for Visual Studio 2008 Solution & Project
	files.

	* gmime.vcproj: Moved to build/vs2008

	* config.h.win32: Same.

	* gmime.sln: Same.

	* examples/basic-example.c: Fixed to build under Visual Studio by
	using GMimeStreamFile instead of GMimeStreamFs and by #ifdef'ing
	out the GnuPG code.

	* tests/testsuit.[c,h]: Fixed to compile under Visual Studio which
	basically means we can't use _try() as a function. Renamed to g_try().
	Also renamed throw() to g_throw() for consistency.

2009-04-02  Jeffrey Stedfast  <fejj@novell.com>

	* tests/testsuite.c: Modified to compile without the need for
	pthread.h

	* gmime.vcproj: Added logic to the PreBuild step to copy
	config.h.win32 to config.h

	* config.h.win32: Added.

2009-04-01  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-utils.c: #include <process.h> for getpid() and ws2tcpip.h
	for getaddrinfo() on Windows platforms.
	(mktime_utc): Use _get_timezone() when building on Windows.
	(g_mime_utils_header_format_date): Windows has gmtime_s() instead
	of gmtime_r(), so use that on Windows.

	* gmime/gmime-parser.c: If glib is >= 2.14, use GRegex instead of
	glibc regex.

2009-04-01  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-utils.c: Need to #include <unistd.h> for getpid().

	* gmime/gmime-stream-fs.c: Need to #include <unistd.h> here.

	* gmime/gmime-multipart-signed.c: Got rid of an unused variable.

	* gmime/gmime-message.c: Removed unused variables.

	* gmime/gmime-content-type.c: Don't need to #include
	"gmime-table-private.h" here as we don't actually use it.

	* util/gtrie.c: Disable g_warning()'s when compiled w/o
	--enable-warnings and also fixed some compile warnings.

2009-03-31  Jeffrey Stedfast  <fejj@novell.com>

	* gmime.sln: New Microsoft Visual Studio 2008 Solution file for GMime.

	* gmime.vcproj: New Microsoft Visual C++ Project file for GMime.

2009-03-31  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-utils.c: Removed unneeded #include <unistd.h>

	* configure.in: Check for unistd.h

	* gmime/gmime-multipart.c (read_random_pool): Implement using
	rand() in the case that unistd.h is not available.

	* gmime/gmime-parser.c (parser_scan_content): Fixed 'crlf'
	argument to be a guint to make it easier to avoid compile warnings
	about comparison between signed/unsigned ints in the callers.

	* gmime/internet-address.c (internet_address_group_add_member):
	Fixed g_return macros to return a value.
	(internet_address_mailbox_get_addr): Same.

2009-03-30  Jeffrey Stedfast  <fejj@novell.com>

	* configure.in: Check for regex.h

	* gmime/gmime-parser.c: #ifdef out the regex functionality if the
	system does not have regex.h

	* gmime/gmime-stream-fs.h: Don't #include <unistd.h> here.

	* gmime/gmime-stream.h: Removed #include <unistd.h> as it isn't
	needed there.

	* gmime/gmime-part.c: Removed unused includes.

	* gmime/gmime-utils.c: Only #include <sys/utsname.h> if we have
	utsname.domainname. Helps build process on Windows.

2009-03-29  Jeffrey Stedfast  <fejj@novell.com>

	* README: Bumped version

	* configure.in: Bumped version to 2.4.5

2009-03-27  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-stream-buffer.c: Fixed to be more diligent in setting
	errno on error.

	* gmime/gmime-stream-mmap.c: Fixed to be more diligent in setting
	errno on error.

	* gmime/gmime-stream-mem.c: Fixed to be more diligent in setting
	errno on error.
	(stream_seek): If the user seeks beyond the end of the buffer and
	bound_end is unbound, then grow the buffer (e.g. a sparse file).

	* gmime/gmime-stream-file.c: Fixed to be more diligent in setting
	errno on error.

	* gmime/gmime-stream-fs.c: Fixed to be more diligent in setting
	errno on error.

2009-03-20  Jeffrey Stedfast  <fejj@novell.com>

	* configure.in: Default --enable-largefile to yes. Looks like I
	forgot to do this before rolling the version to 2.4.0 like I
	intended.

	* tools/Makefile.am: Fixed to include the porting script in
	EXTRA_DIST (instead of extra_DIST) so that the tarball includes
	it, doh!
2009-07-18 19:27:08 +00:00
smb
b5a173675a Changet getline() to get_line() 2009-07-18 03:15:18 +00:00
adrianp
2ae6078ec7 Give up MAINTAINER 2009-07-17 18:00:13 +00:00
tonio
be7d76cc45 Update mail/mutt-devel to 1.5.20
The keys used are:
  !: modified feature, -: deleted feature, +: new feature

1.5.20 (2009-06-14):
  ! $fcc_attach is a quadoption now
  + $honor_disposition to honor Content-Disposition headers
  + $search_context specifies number of context lines for search results
    in pager/page-based menus
  + ssl_use_sslv2 defaults to no
  + uncolor works for header + body objects, too
  + the "flagged" and "replied" flags are enabled/supported for
    POP when built with header caching
  ! browser correctly displays maildir's mtime
  + <set-flag> and <clear-flag> work in the pager, too
  + ~x pattern also matches against In-Reply-To
  + lower case patterns for string searches perform case-insensitive
    search as regex patterns do (except IMAP)
  + $ssl_verify_dates controls whether mutt checks the validity period of
    SSL certificates
  + $ssl_verify_hostname controls whether mutt will accept certificates whose
    host names do not match the host name in the folder URL.

Disable temporarily mutt-compressed-mbox and mutt-xlabel as the patches are not
available for this version yet.
2009-07-16 20:23:41 +00:00
schmonz
e7b826bbdd Update to 4.9.2. From the changelog:
-use tempfile module function instead of os.tmpfile() so getmail obeys TMPDIR
 and similar environment variables.  Thanks: Stefan Baehring.
2009-07-16 17:10:04 +00:00
joerg
d5fd4c9f55 Not MAKE_JOBS_SAFE. 2009-07-16 14:48:56 +00:00
ghen
627fd43780 Update to Dovecot 1.1.17. manu's patch-ai has been included upstream.
- IMAP: Don't crash if IDLE command is pipelined after a long-running
  UID FETCH or UID SEARCH.
- IMAP: Some FETCH command parameters were broken with in some OSes.
- mbox: New mailboxes were created with UIDVALIDITY 1.
- mbox: Don't write garbage to mbox if message doesn't have a body.
- Maildir: Fixed using in-memory indexes when some required directory
  was missing.
- auth: Don't assert-crash if trying to log in as master user but
  with empty login username.
- Transaction log dotlocking ignored mail_nfs_index and
  dotlock_use_excl settings.
- convert plugin / convert-tool: Fixed changing hierarchy separators
  in mailbox names when alt_hierarchy_char isn't set.
- Several fixes to expire plugin / expire-tool
- zlib: Give better error messages on failures.
2009-07-13 08:00:10 +00:00
tonio
f02b3a5bd3 Update mail/isync to 1.0.4
Changelog contains mostly bugfixes.
Add path-af to handle 64bits time_t
2009-07-12 20:26:59 +00:00
drochner
1086a93eb6 update to 2.26.3
changes:
-bugfixes
-translation updates
2009-07-09 18:44:20 +00:00
drochner
76a2081dc4 update to 2.26.3
changes:
-bugfixes
-translation updates
2009-07-09 17:51:42 +00:00
joerg
d4a50a2966 Provide PY_COMPILE_ALL and PY_COMPILE_O_ALL to compile all Python
sources in a directory (tree) in pversion.mk. Adjust the various places
that called it locally.
2009-07-08 13:55:58 +00:00
sno
6424954d37 adding destdir support and license of perl itself (POD) 2009-07-07 16:09:45 +00:00
tnn
e94ecc8868 use libgnutls-config.mk 2009-07-02 19:13:53 +00:00
ghen
b4bf7a338f There is no sasl option, unlist it. 2009-07-02 11:38:34 +00:00
joerg
c569c6a51f Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with
MAKE_JOBS=2 and worked without.
2009-06-30 00:07:09 +00:00
joerg
19cefddf0e Fix bulk build, while here convert to user-destdir. 2009-06-29 22:40:28 +00:00
manu
d62e3d2f2b Enlarge the buffer for communication between auth worker client and server.
This allows exotic authentications that use a large data payload to work.
This patch has been committed upstream.
2009-06-25 09:54:14 +00:00
martti
b6c73ea8e6 Updated mail/squirrelmail-locales to 1.4.18
* Lots of language updates
2009-06-25 05:29:18 +00:00
ghen
4047d54180 Update thunderbird and thunderbird-gtk1 to 2.0.0.22.
Security fixes in this version:

MFSA 2009-33 Crash viewing multipart/alternative message with text/enhanced part
MFSA 2009-32 JavaScript chrome privilege escalation
MFSA 2009-29 Arbitrary code execution using event listeners attached to an element whose owner document is null
MFSA 2009-27 SSL tampering via non-200 responses to proxy CONNECT requests
MFSA 2009-24 Crashes with evidence of memory corruption (rv:1.9.0.11)
MFSA 2009-17 Same-origin violations when Adobe Flash loaded via view-source: scheme
MFSA 2009-14 Crashes with evidence of memory corruption (rv:1.9.0.9)

For more info, see http://www.mozilla.com/en-US/thunderbird/2.0.0.22/releasenotes/
2009-06-24 08:45:52 +00:00
he
cf45f12123 Move setting of PKGREVISION from Makefile to the common Makefile,
so that thunderbird-gtk1 also gets the revision bump, as the latter
is already using the newest patch for regxpcom crash fixing.
2009-06-19 13:13:06 +00:00
he
1343843fe2 Update from version 2.0.0.21 to 2.0.0.21nb1.
Pkgsrc changes:
 o For the benefit of 64-bit strict alignment archs using gcc, such
   as NetBSD/sparc64, ensure that the specially crafted double values
   are properly aligned.  Thanks to martin@ for pointing to the problem.

   This should stop regxpcom from dropping core on NetBSD/sparc64.

OK'ed by wiz@
2009-06-19 11:34:31 +00:00
joerg
76039544d1 Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
joerg
ce6e8d4701 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 20:45:10 +00:00
joerg
62d1ba2bac Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
zafer
6d14250c0d update master site. 2009-06-12 22:56:03 +00:00
rillig
61c7cf362d Removed redundant .gz suffix for man pages. 2009-06-12 19:09:35 +00:00
rillig
4d5bb03511 Fixed some pkglint warnings. 2009-06-12 18:54:32 +00:00
wiz
535692e6d0 regen patch-ap, from Sean Boudreau on tech-pkg. 2009-06-11 08:13:05 +00:00
martti
ac61c1269c pkglint -Wall 2009-06-11 04:39:07 +00:00
martti
354b13e7fc Updated mail/clamav to 0.95.2
* Lots of bug fixes (see the ChangeLog for details)
2009-06-11 04:38:18 +00:00
hasso
b2e6902be1 Fix a typo. 2009-06-07 10:44:54 +00:00
martti
2b7d9d61c8 Updated mail/postfix to 2.6.2
Postfix stable release 2.6.2 fixes one defect in SASL support.
This does not affect Postfix versions 2.5 and earlier.

With plaintext SMTP sessions AND smtpd_tls_auth_only=yes AND
smtp_sasl_auth_enable=yes, the SMTP server logged warnings for
reject_*_sender_login_mismatch, instead of enforcing them.

You can find Postfix version 2.6.2 at the mirrors listed at
http://www.postfix.org/

The same fix is also available in Postfix snapshot 2.7-20090528.
Postfix versions 2.5 and earlier are not affected.
2009-06-04 14:08:56 +00:00
martti
e8c6dd6c79 Updated mail/postfix-current to 2.7.20090528
Postfix stable release 2.6.2 fixes one defect in SASL support.
This does not affect Postfix versions 2.5 and earlier.

With plaintext SMTP sessions AND smtpd_tls_auth_only=yes AND
smtp_sasl_auth_enable=yes, the SMTP server logged warnings for
reject_*_sender_login_mismatch, instead of enforcing them.

You can find Postfix version 2.6.2 at the mirrors listed at

Postfix stable release 2.6.2 fixes one defect in SASL support.
This does not affect Postfix versions 2.5 and earlier.
2009-06-04 14:08:06 +00:00
ghen
2eeae426b0 Update to Dovecot 1.1.16.
Fixes a couple of bugs in v1.1.15's changes. Hopefully the last v1.1 release
before v1.2.0.

- v1.1.15 could have crashed if mailbox-closing command was pipelined after a
  mailbox-accessing command.
- v1.1.15's zlib plugin may have caused crashes when fetching INTERNALDATE.
- Maildir: If messages had been deleted externally from new/ directory and
  mailbox was opened with EXAMINE, Dovecot didn't immediately notice that the
  messages were deleted.
- If message body started with a space, some operations could have assert-
  crashed.
2009-06-03 07:10:20 +00:00
adam
0c50550352 Changes 2.1.12:
* Fix compatibility with Python 2.6.
* Fixed a bug in admin.py which would result in chunked pages of the
  membership list for members whose address begins with a non-alphanumeric
  character to not be visible or retrievable.
* Changed ListAdmin.py to make rejected post messages From: the -owner
  address instead of the -bounces address.
* With MTA = 'Postfix', if the STANZA END for a list being removed is
  missing or munged, the remainder of the aliases and/or virtual-mailman
  file is lost. Fixed.
* Since Mailman 2.1.1, 2.0.x outstanding subscription and held message
  requests have not been migrated properly. This is fixed.
* Changed cron/gate_news to continue processing the remaining lists on
  certain errors that can be caused by configuration of a particular list.
* Fixed a bug in AvoidDuplicates.py that caused it to fail if the address
  in the To: or Cc: header differed in case from the case-preserved member
  address.
* Fixed a problem in SecurityManager that caused it to not find the
  cookie when CheckCookie was not given a user and the user in the cookie
  had a %xx encoded character.
* Fixed a minor fromusenet reporting issue in the contributed mmdsr
  script.
* Fixed a minor issue in cron/gate_news that could cause a list's
  watermark to not be completely updated.
* Fixed an issue that prevented editing the options.html template from
  the web admin interface.
* Fixed a problem in Decorate which could throw a TypeError on conversion
  to unicode of a header/footer that was already unicode because of
  interpolating a unicode value.
* Fixed an issue where list creation would report bad owner email
  instead of bad listname when the list name had non-ascii characters.
* Updated Dutch, Catalan and Polish translations.
2009-06-03 06:58:55 +00:00
adam
a2de057f6a Changes 2.1.12:
* Fix compatibility with Python 2.6.
* Fixed a bug in admin.py which would result in chunked pages of the
  membership list for members whose address begins with a non-alphanumeric
  character to not be visible or retrievable.
* Changed ListAdmin.py to make rejected post messages From: the -owner
  address instead of the -bounces address.
* With MTA = 'Postfix', if the STANZA END for a list being removed is
  missing or munged, the remainder of the aliases and/or virtual-mailman
  file is lost. Fixed.
* Since Mailman 2.1.1, 2.0.x outstanding subscription and held message
  requests have not been migrated properly. This is fixed.
* Changed cron/gate_news to continue processing the remaining lists on
  certain errors that can be caused by configuration of a particular list.
* Fixed a bug in AvoidDuplicates.py that caused it to fail if the address
  in the To: or Cc: header differed in case from the case-preserved member
  address.
* Fixed a problem in SecurityManager that caused it to not find the
  cookie when CheckCookie was not given a user and the user in the cookie
  had a %xx encoded character.
* Fixed a minor fromusenet reporting issue in the contributed mmdsr
  script.
* Fixed a minor issue in cron/gate_news that could cause a list's
  watermark to not be completely updated.
* Fixed an issue that prevented editing the options.html template from
  the web admin interface.
* Fixed a problem in Decorate which could throw a TypeError on conversion
  to unicode of a header/footer that was already unicode because of
  interpolating a unicode value.
* Fixed an issue where list creation would report bad owner email
  instead of bad listname when the list name had non-ascii characters.
* Updated Dutch, Catalan and Polish translations.
2009-06-03 06:55:07 +00:00
schmonz
57ca6f4ce5 Update to 4.9.1 and define LICENSE. From the changelog:
- if oldmail file is corrupted on disk (by system crash, perhaps),
  handle it gracefully. Some lines may be lost (and messages therefore
  re-retrieved), but operation will continue, with the corrupt lines
  logged. Thanks: Domen Puncer.
2009-06-01 20:16:19 +00:00
sno
98dbdacf91 Replacing some dependencies to choose perl core first, because desired
version numbers of required modules are in delivered perl core.
2009-06-01 19:38:56 +00:00
wiz
a1cdf33f7c Update to 2.26.2. Set LICENSE (GPL2).
Evolution Exchange 2.26.2 2009-05-18
-------------------------------------

Bug Fixes:
	#577105 - Prevent using NULL in libical functions (Milan Crha)

Updated translations:
	Ivar Smolin (et)
2009-05-28 21:06:46 +00:00
wiz
09bd3a394b Update to 2.26.2:
Evolution 2.26.2 2009-05-18
---------------------------

Bug fixes:
	#471083 (bnc) - Do not allow deletion of system folders. (Chenthill)
	#561312 - Fix recurrence issues (Chenthill)
	#467659 - Fix description for send mail (Chenthill)
	#578685 - Copy string. Avoids SIGSEGV (Sebastien Bacher)
	#569507 - Don't translate gconf/key values (khaledh)
	#574842 - Fix Catalan translation issue (Gil Forcada Codinachs)
	#571272 - Possible leak (Milan Crha)
	#573704 - Don't close dialog after error (Milan Crha)
	#579306 - Fix crash on delete folder (Milan Crha)
	#491755 - Sanitize values from GConf before using them (Milan Crha)
	#579635 - Hide last junked message too from the non-junk folder (Milan Crha)
	#579550 - Do not mark newly recognized Junk messages Read (Milan Crha)
	#578355 - Store username in a source URL in CalDAV (Milan Crha)
	#575242 – New composer window not autosaved until modification (Michel Dänzer)
	#581032 – Some links can't be opened (Matthew Barnes)
	#573170 - Add back support for vfolder of vfolders (Srinivasa Ragavan)
	#580163 - Resize alarm notifier correctly (Ritesh Khadgaray)
	#578478 – Composer shows not all "From" information (Matthew Barnes)
	#582744 – CC field autofill doesn't work for replies (Matthew Barnes)
	#578176 – "Send message to contact" does not honor "always BCC" (Matthew Barnes)

Updated translatios:
	Ihar Hrachyshka (be)
	Christian Kirbach (de)
	Jorge Gonzalez (es)

Other fixes:
	Fix win32 filename/uri issues (Fridrich Strba)
2009-05-28 21:03:35 +00:00
wiz
e56eae5758 Update to 2.26.2, split off options handling into options.mk.
Evolution-Data-Server 2.26.2 2009-05-18
----------------------------------------

Bug fixes:
	#581420 - On Solaris, the service name 'http' or 'https' is not defined (Jeff Cai)
	#579360 - Problem with vfolders/hang with unmatched folders. (Srinivasa Ragavan)
	#573170 - Add back support for vfolder of vfolders. (Srinivasa Ragavan)
	#556116 - support for unmatched search folder (Srinivasa Ragavan)
	#578823 – invalid condition (Sergio Villar Senin)
	#578821 - More invalid conditions (Sergio Villar Senin)

Updated Translations:
	Milo Casagrande (it)
	Christian Kirbach (de)

Other fixes:
	dolt has some link issues with library dependency (Marc-André Lureau)
	Map WinLDAP to openLDAP api in win32 (Fridrich Strba)
2009-05-28 20:25:25 +00:00
obache
85164cdbce Update to use SSLINCLUDE and SSLLIB instead of SSLDIR for EXTRASPECIALS.
Should be fix PR 41232, pick up incorrect location as pkgsrc expected.
2009-05-26 11:32:22 +00:00
taca
9eb7e845ab Update Japanese patch.
Bump PKGREVISION.
2009-05-22 08:50:19 +00:00
martti
38438a7c4c Fixed PLIST issues. 2009-05-22 08:23:02 +00:00
martti
81ab8fc412 Updated 2009-05-22 07:05:14 +00:00
martti
c3db028855 Updated squirrelmail to 1.4.19
The security fix to map_yp_alias in 1.4.18 turned out to be incomplete. We
also expierenced some regressions in the updated filter plugin. Both are
addressed in this new release 1.4.19 which contains a few other small fixes
aswell.

If you do not use map_yp_alias or the filters plugin there's no urgent need to
upgrade now if you already installed 1.4.18. If you are still on an older
release than 1.4.18 (or use the mentioned functionality) we do urge you to
upgrade as soon as possible as 1.4.18 and 1.4.19 combined fix some important
security issues. Those using the development branch (1.5.x) should install a
recent SVN snapshot.
2009-05-22 07:04:12 +00:00
sno
34c0f962ac pkgsrc changes:
- Updating package for p5 module Mail::IMAPClient from 3.14 to 3.16
  - Splitting dependencies into "real depends" part and a recommended part
  - Add Authen::SASL as recommended dependency
  - Set gnu-gpl-v2 as license

Upstream changes:
version 3.17: Thu May 21 01:40:08 EDT 2009
	- ran all test code and lib/Mail/IMAPClient.pm through Perl::Tidy
	- plan on using perltidy to standardize format going forward
	- added 13 tests to t/basic.t to cover more methods
	- fix some broken tests
	- update Makefile.PL to provide info about optional modules

version 3.17_05: Tue May 19 11:04:28 EDT 2009
	Potential compatibility issues highlighted with '*':
	- *reset LastError for every call to _imap_command_do()
	- *run() - use _imap_command_do(), return arrayref in scalar context
	- *tag_and_run() - return arrayref in scalar context
	- *done() - use _imap_command_do(), return arrayref in scalar context
	- *search() now returns empty arrayref not undef if no matches found
	- _imap_command_do() made more flexible to avoid code duplication
	- _list_response_parse renamed _list_or_lsub_response_parse
	- updated POD with new/updated behavior
	- append_string() now uses _imap_command_do() for Reconnectretry
	- internally use defined return values instead of only LastError()
	- run() updated to use same/similar code to _imap_command_do()
	- make several return statements more consistent
	- delete() now unsets current Folder attribute on success

version 3.17_04: Fri May 15 17:18:52 EDT 2009
	- updated POD with new reconnect() method and Reconnectretry attr
	- *new _imap_command() after renaming old one to _imap_command_do
	  support retrying commands X times EPIPE/ECONNRESET errors
	- *added Reconnectretry attr to control number of retry
	  attempts (default is 0 - no reconnect/retry)
	- *added reconnect() method to support Reconnectretry attr
	  reconnect and updated _imap_command() method
	- *_imap_command_do will return undef if command given has no TAG
	- fixed message_string() logic/errors for failed size() calls
	- local-ize $! anywhere we use Carp routines as older versions
	  of Carp could cause $! to be reset
	- several 'BUG?' comments -- raising red flag for future work
	- minor cleanup of sort() logic
	- reduce duplicate code, hopefully improved error handling:
	  new _list_or_lsub() for list() and lsub()
	  new _folders_or_subscribed() for folders() and subscribed()
	  + new _list_response_preprocess() keeping old code/logic in
	    for now, but may remove in the future (for buggy servers?)
	- some updates for migrate() but this method needs much work
	- body_string() now handles fetch() errors
	- tag_and_run now handles _imap_command() errors
	- changed non-timeout CORE::select() timeout from 0.001 to 0.025
	- minor cleanup of _read_line() error handling/debug output
	- get_bodystructure() handle more fetch() errors
	- expunge() handle select() errors
	- restore_message() handle store() errors
	- uidvalidity() handle status() errors
	- uidnext() handle status() errors
	- is_parent() use _list_response_preprocess() for parsing
	- move() send delete_message() errors to stderr
	- simplify size() method

version 3.17_03: Fri May  8 16:37:08 EDT 2009
	- *added uidexpunge() for UID EXPUNGE UIDPLUS support
	- *search() now DWIM: auto-escapes args, SCALAR refs not escaped
	  rt.cpan.org#44936 [cjhenck]
	- _quote_search() provides auto-escape capability for search()
	- many POD updates as well as some major reformatting (incomplete)
	- login now fails if passwd and user are not defined
	- _sysread(): $self was in args to 'Readmethod' twice
	- authenticate() return undef on scheme eq "" or LOGIN
	- "require" instead "use" Digest::HMAC_MD5 for CRAM-MD5 support

version 3.17_02: Fri May  1 16:44:21 EDT 2009
	- cleanup of use/imported data
	- use Socket $CRLF in many cases not \r\n per perlport/IMAP spec
	- new Keepalive attr for use with new()/Socket() enables SO_KEEPALIVE
	- LastError now uses Carp::confess for stack trace if Debug is true
	- Maxcommandlength now defaults to 1000 per RFC2683 section 3.2.1.5
	- added noop() to support IMAP NOOP
	- _imap_command now sets LastError if a OK/$good response is not seen
	- fixed fetch_hash() to return FLAGS as "" not () when no FLAGS set

version 3.17_01: Fri Apr 24 18:36:45 EDT 2009
	- *new attribute Maxcommandlength used by fetch() to limit
	  length of commands sent to a server.  This should removes
	  need for utilities like imapsync to create their own split()
	  functions and instead allows Mail::IMAPClient to hopefully
	  "do the right thing"
	- remove extra 'use' calls for Carp and Data::Dumper
	- _read_more() improperly initialized vector causing select
	  errors, thus timeouts were not working properly (now they
	  work...)
	- *change default timeout 30s => 600s: 30s seems too short in
	   practice
	- *explicit import of encode_base64 and decode_base64 from
	  MIME::Base64 note the code forces a disconnect from the
	  server on timeout as we can not easily recover from this
	  situation right now in the code
	- *numerous changes of error messages, removing superfluous
	  text and now relying on LastError instead of $! or $@ when
	  appropriate
	- separator():
	  + now return undef if an error occured for NAMESPACE or LIST calls
	  + *no longer defaults to '/' if NAMESPACE call does not succeed
	- new internal _list_response_parse() method for parsing LIST
	  responses
	- handle ECONNRESET errors on syswrite and mark connection as
	  Unconnected
	  + error "Connection lost" changed to "Write failed"
	- previously untrapped syswrite error now generate "Write
	  failed" errors
	- fix in _imap_command where LastError would be erroneously
	  set on LOGOUT
	- _record() no longer tries to infer errors based on data
	  being "recorded"
	- _send_line()
	  + cleanup in watching for: +|NO|BAD|BYE
	  + now sets LastError when an unexpected response is seen
	- _read_line()
	  + handle select errors instead of ignoring them
	  + forcefully _disconnect() on timeouts as this breaks app logic
	  + reduced duplication of code on error handling
	- added _disconnect() method to brute force drop connections
	  on timeout
	- added _list_response_parse() to reduce duplicate code for
	  LIST parsing
	- added _split_sequence() to support new Maxcommandlength argument
	- fetch()
	  + use new Maxcommandlength to split a request into multiple
	    subrequests then aggregate results before passing them
	    back to the caller
	- fetch_hash(): added checks for failed IMAP commands
	- parse_headers()
	  + properly check if fetch fails
	  + handle cases where $header and/or $field are not defined
	- size():
	  + return undef if LastError is set
	  + fix case where SIZE is not found and return undef as expected

version 3.16: Mon Apr  6 12:03:41 CEST 2009
	Fixes:
	- set LastError when the imap_command receives an unexpected 'BYE' answer.
	  rt.cpan.org#44762 [Phil Lobbes]
	- handle SIGPIPE cleanly.
	  rt.cpan.org#43414 [Phil Lobbes]
	- improve handling of quotes in folder names
	  rt.cpan.org#43445 [Phil Lobbes]
	- do not use $socket->eof(), because IO::Socket::SSL does not support it.
	  rt.cpan.org#43415 [Phil Lobbes]
	- remove excessive reconfiguration of fastio in _read_line()
	  rt.cpan.org#43413 [Phil Lobbes]

	Improvements:
	- remove experied docs about automatically created calls, which
	  do not exist since 3.00
	- remove verbose explanation about reporting bugs.

version 3.15: Fri Mar 20 13:20:39 CET 2009
	Fixes:
	- manual-page was using POD syntax incorrectly, which caused many
	  broken links on search.cpan.org
	  rt.cpan.org #44212 [R Hubbell]
2009-05-21 18:14:39 +00:00
zafer
a90dadc26c remove not working mirror. 2009-05-21 11:33:55 +00:00
zafer
3368380c0f remove not working mirror. 2009-05-21 11:32:01 +00:00
zafer
b09f31c681 update mirror. 2009-05-21 11:16:02 +00:00
zafer
4a22d0b292 update mirror. 2009-05-21 11:12:50 +00:00
ghen
07f39afeb7 Update to Dovecot 1.1.15.
v1.1.15 2009-05-17  Timo Sirainen <tss@iki.fi>

+ IMAP: When multiple commands are pipelined, try harder to combine their
  mailbox syncing together. For example with Maildir pipelining STORE 1:*
  +FLAGS \Deleted and EXPUNGE commands the files won't be unnecessarily
  rename()d before being unlink()ed.
- IMAP: SEARCH command was slower than necessary in a large mailbox.
- deliver: When forwarding messages, if -f parameter was given, it should have
  been used as the Return-Path.
- Maildir saving: Fixed race condition bugs in uidlist handling, causing files
  to be given new UIDs sometimes.
- mbox: Don't crash when expunging all messages and file doesn't end with
  [CR]LF.
- expire-tool: Use mail_uid and mail_gid settings if userdb doesn't return
  uid/gid.
- Berkeley DB dict: Transaction rollbacking was implemented wrong.
- zlib plugin: Some email / FETCH command combinations could have disconnected
  the client or sent compressed garbage.
2009-05-20 08:07:38 +00:00
martti
f6baace177 Updated mail/postfix to 2.6.1
Postfix stable release 2.6.1 fixes one defect in Milter support.
This does not affect Postfix versions 2.5 and earlier.

- Queue file corruption under very specific conditions: (smtpd_milters
  or non_smtpd_milters) enabled, AND delay_warning_time enabled,
  AND mail delivery delays, AND short envelope sender addresses
  (e.g., sendmail command-line submissions with bare usernames as
  the sender, but not bounce messages).

  The queue file would be corrupted when the delay_warning_time
  record was marked as "done" after sending the "your mail is
  delayed" notice.  The defect was introduced with Postfix 2.3, but
  it could not cause corruption before the change dated 20090427.
2009-05-20 07:46:09 +00:00
martti
04c4756a08 Updated mail/postfix-current to 2.7.20090519
20090513

	Code cleanups: better parsing of Postfix daemon "-o"
	command-line options, with better error handling.  Files:
	master/*server.c.

20090518

	Documentation: missing dummy entries for lmtp_mumble_checks.
	File: proto/postconf.proto.

20090519

	Bugfix (introduced: Postfix 2.3, but did not cause trouble
	until 20090427).  Queue file corruption with (smtpd_milters
	or non_smtpd_milters) enabled, AND with delay_warning_time
	enabled, AND with short envelope sender addresses (e.g.,
	local submissions with bare usernames, but not bounces).
	The queue file would be corrupted when the delay_warning_time
	record was marked as "done" after sending the "your mail
	is delayed" notice.  File: qmgr/qmgr_message.c.
2009-05-20 07:45:40 +00:00
wiz
272d51cc21 Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib
major change.

Reported by Robert Elz in PR 41345.
2009-05-20 00:58:05 +00:00
wiz
c8c77a65f1 Uncomment some more LICENSE lines (all "public-domain"). 2009-05-19 09:07:13 +00:00
wiz
60f460ab01 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT
block). Uncomment some commented out LICENSE lines while here.
2009-05-19 08:59:00 +00:00
plunky
63da046e1c include <time.h> and <utime.h> so that where time_t has been changed to 64-bit
values on NetBSD, we we get correctly referred to __utime50() which can handle
64-bit values. This fixes a problem where mailbox mtimes were being reset to 0

Note that this actually causes some build warnings as the code uses
"time_t tp[2]" instead of "struct utimbuf tp" (contains two time_t values)

Although the <os_bsi.h> file says it is used for BSDI, it seems to be used by
NetBSD and OpenBSD, both of which have the <utime.h> and <time.h>

bump PKGREVISION
2009-05-17 17:34:01 +00:00
plunky
b957a2a78e Fix a problem where file modification times were being reset to 0 by
including <utime.h> to make sure that compiler renaming was used to
select __utime50() instead of utime() as 64-bit time_t was being used.
2009-05-17 16:03:08 +00:00
obache
05cb918a7b Fixes `-n' option handling for fetchnews(1).
Patch provided by Jukka Salmi in PR 41432.

While here, add DESTDIR support.
2009-05-15 23:29:01 +00:00
taca
f4b88337a7 Enable squirrelmail-japanese option with Japanese patch:
squirrelmail-1.4.16-ja-20081013-patch.

Bump PKGREVISION.
2009-05-15 13:01:00 +00:00
martti
5c36f2fe5a Added sbin/postmulti to PLIST. PKGREVISION++ 2009-05-14 17:12:10 +00:00
taca
4529c8e8d6 Since iso_2022_jp.php isn't included in squirrelmail distribution,
remove extra pre-configure processing.
2009-05-14 14:24:49 +00:00
martti
d1e9aca942 Updated mail/squirrelmail to 1.4.18
The SquirrelMail Team is pleased to announce the release of
SquirrelMail version 1.4.18.  The most notable changes for this
version are several security fixes, including a couple XSS exploits, a
session fixation issue, and an obscure but dangerous server-side code
execution hole.  However, this version also includes three new
languages and more than a few enhancements to things such as the
filters plugin, the address book system and other things under the
hood.  For more complete details, see the ReleaseNotes and ChangeLog
files included in this release (they have moved to the doc/
directory).  We advise all users of SquirrelMail software to upgrade.
2009-05-14 06:54:38 +00:00
martti
287e1a95bc Updated mail/postfix-current to 2.7.20090511
This same as 2.6.0...
2009-05-13 10:34:06 +00:00
martti
1c34d90772 Updated mail/postfix to 2.6.0
- Multi-instance support introduces a new postmulti(1) command to
  create/add/remove/etc. additional Postfix instances. The familiar
  "postfix start" etc.  commands now automatically start multiple
  Postfix instances.  The good news: nothing changes when you use
  only one Postfix instance. See MULTI_INSTANCE_README for details.

- Multi-instance support required that some files be moved from
  the non-shared $config_directory to the shared $daemon_directory.
  The affected files are postfix-script, postfix-files and post-install.

- TLS (SSL) support was updated for elliptic curve encryption. This
  requires OpenSSL version 0.9.9 or later. The SMTP client no longer
  uses the SSLv2 protocol by default. See TLS_README for details.

- The Milter client now supports all Sendmail 8.14 Milter requests,
  including requests for rejected recipient addresses, and requests
  to replace the envelope sender address. See MILTER_README for
  details.

- Postfix no longer adds (Resent-) From:, Date:, Message-ID: or To:
  headers to email messages with "remote" origins (these are origins
  that don't match $local_header_rewrite_clients). Adding such
  headers breaks DKIM signatures that explicitly cover non-present
  headers.  For compatibility with existing logfile processing
  software, Postfix will log ``message-id=<>'' for email messages
  that have no Message-Id header.

- Stress-adaptive behavior is now enabled by default. This allows
  the Postfix SMTP server to temporarily reduce time limits and
  error-count limits under conditions of overload, such as a malware
  attack or backscatter flood. See STRESS_README for details.

No functionality has been removed, but it is a good idea to review
the RELEASE_NOTES file for the usual minor incompatibilities or
limitations.
2009-05-13 10:33:23 +00:00
martti
96ff628013 Updated mail/postfix to 2.5.7
- (low) The installation/upgrade procedure did not automatically
  create the data_directory.

- (medium) In the "new queue manager", the _destination_rate_delay
  code needed to postpone the job scheduler updates after delivery
  completion, otherwise the scheduler could loop on blocked jobs.

- (low) The queue manager used <transport>_concurrency_failed_cohort_limit
  instead of <transport>_destination_concurrency_failed_cohort_limit
  as documented.

- (low) The SMTP client disabled MIME parsing despite non-empty
  settings for smtp_header_checks, smtp_mime_header_checks,
  smtp_nested_header_checks, or smtp_body_checks.

- (medium) The postsuper command re-enabled the SIGHUP signal when
  it was set to "ignore". This could result in random "Postfix
  integrity check failed" errors at boot time (POSIX SIGHUP death),
  causing Postfix not to start automatically.
2009-05-13 10:32:23 +00:00
martti
97bdd322bb Activated LICENSE=... 2009-05-12 12:27:19 +00:00
martti
8b8f9427d3 Added PKG_DESTDIR_SUPPORT=user-destdir 2009-05-12 11:09:26 +00:00
hasso
b7cec2bb8b Fix install on platforms not using pax tar. Bump PKGREVISION. 2009-05-12 08:27:09 +00:00
tnn
9d7be874cc Bump the default value of the login_process_size limit from 64 to 128.
Without this dovecot fails to start on NetBSD-current, as reported by
several people. Bump PKGREVISION.
2009-05-11 08:54:49 +00:00
markd
8db247d586 Update akonadi to 1.1.2
- Avoid DBUS lockups, reported at: https://bugs.kde.org/182198
- Update user mysql.conf only if global/local one's are newer
2009-05-06 11:08:17 +00:00
reed
e5e9ad0a4c Add PREV_PKGPATH and/or SUPERSEDES for various packages that
were moved or renamed.

This was for some from 2008 and 2009 and one from 2001.

Also I noticed that a CHANGES entry was wrong as said "Renamed"
when should have said "Moved" (lua-OSBF) because PKGBASE stayed the
same.
2009-05-02 16:21:43 +00:00
hasso
4b23c06ffb Don't try to link against libc_r on DragonFly. 2009-05-02 07:51:02 +00:00
abs
01f90acb48 Add missing checksum for optional searchheader.patch.gz
Fix checksum for maildir.patch.gz (Add DIST_SUBDIR)
2009-05-01 11:58:46 +00:00
sno
6e3db2c5eb PkgSrc changes:
- Updating packages for p5 module of Mail::ClamAV from 0.22 to 0.29
  - Adjusting dependencies

Upstream changes:
0.29  Wed Apr 29 18:02:17 CDT 2009
  - Makefile.PL dies with 'No support for OS' when OS is unsupported, per
    recommended solution at http://wiki.cpantesters.org/wiki/CPANAuthorNotes

0.28  Mon Apr 27 03:18:53 CDT 2009
  - META.yml contained wrong version number (0.26).

0.27  Mon Apr 27 03:13:03 CDT 2009
  - &main returns zero on success of WriteMakefile().

0.26  Fri Apr 24 15:11:22 CDT 2009
  - Added 'no_index' for directory Inline to META.yml to hide from indexer.

0.25  Fri Apr 24 14:11:10 CDT 2009
  - Added 'provides' mapping to META.yml to conceal private copy of Inline::MakeMaker from indexers. FAILED.

0.24  Wed Apr 22 13:33:06 CDT 2009
  - Update to work with clamav-0.95.1 API. clamav libs version 0.95.1 or greater required.
  - Modified Makefile.PL to exit zero instead of dying if clamav version too old.

0.23  Wed Sep  3 20:33:40 EDT 2008
  - removed CL_EFSYNC CL_ELOCKDB to work with clamav-0.94
2009-05-01 09:03:24 +00:00
sno
b33ef9d5b2 PkgSrc changes:
- Updating package for p5 module of Email::MIME::Modifier to 1.444
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes since 1.443:
1.444     2009-04-29
          be compatible with (and require) Email::MIME::Encodings 1.313
2009-04-30 20:43:57 +00:00
sno
20e3986556 PkgSrc changes:
- Updating package for p5 module Email::MIME::Creator from 1.455 to 1.456
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
1.456   2009-04-29
        correct test expectations for Encodings 1.313
2009-04-30 20:38:12 +00:00
wiz
79366aa1e3 Add gtk-doc build dependency for gtkdoc-rebase (fixes installation on
NetBSD).
Set LICENSE to gnu-lgpl-v2.
2009-04-27 16:05:19 +00:00
sno
14f7cda278 Modify dependencies to perl-modules which are deployed with the perl-core,
mainly Scalar::Util and List::Util
2009-04-24 17:15:21 +00:00
sno
77f8f7fdc8 Module::Pluggable is a core module since perl-5.10 -> Updating dependency 2009-04-24 08:17:24 +00:00
tron
36302f1837 Update "milter-greylist" package to version 4.2.2.
Changes since version 4.2:
- Fix a crash when a LDAP server is down.
- Fix LDAP thread safety issues
- Make LDAP querries timeout configurable
- Make MX sync timeout peer-configurable
2009-04-22 13:00:36 +00:00
ghen
1d9bbdabc6 Update to Dovecot 1.1.14.
* IMAP: Don't allow APPEND to specify INTERNALDATE more than 2 hours
  into future. With Maildir future INTERNALDATEs may mess up incremental
  backups.

- Date: header was always being added to cache file when saving messages,
  even if clients didn't really want it. This caused POP3-only users to
  have dovecot.index.cache file unneededly.
- Character set conversion in specific mails may have caused Dovecot to
  allocate all the available memory (in default configuration dying after
  having allocated 256 MB). This happened only while searching messages.
- Message address parser didn't handle empty group:; correctly.
- imap/pop3-login: Don't crash when shutting down and destroying clients.
- deliver wasn't using mail_access_groups setting.
- mbox: When doing autodetection, if mbox didn't find an existing mail
  directory it just went and created it anyway, instead of failing the
  storage creation.
- Fixed some error handling in maildir and index code.
2009-04-20 14:06:17 +00:00
rh
3089cc6e00 Install resource files inside share/GNUstep/Library.
Allow unprivileged USE_DESTDIR installs.
Bump PKGREVISION.
2009-04-19 01:00:48 +00:00
rh
9d44a27e7c gnustep-make now allows unprivileged DESTDIR installs 2009-04-18 23:55:27 +00:00
sno
00ad05188a PkgSrc changes:
- Updating package for p5 module Email::MIME::Encodings to 1.313
  - Set license to artistic-2.0

Upstream changes:
1.313     2009-04-16
          bugfix by MKANAT to avoid QP-encoding CRLF
2009-04-18 21:40:41 +00:00
drochner
3f8068e93e update to 2.26.1.1
changes:
-bugfixes
-translation updates
2009-04-17 17:27:48 +00:00
markd
b7eb16c198 Add dependency on mysql - its not really optional at this point.
Bump PKGREVISION.
2009-04-15 20:45:29 +00:00
manu
f6839c163c typo 2009-04-15 03:52:23 +00:00
manu
b9a4ab2751 Add buildlink3 support, from Fredrik Pettai <pettai@nordu.net>, missing
from previous commit
2009-04-15 03:51:03 +00:00
martti
a83f778bde PKGREVISION++ after the unrar fixes... 2009-04-14 06:16:24 +00:00
adrianp
39d77bb462 The major changes compared to IMP version H3 (4.3.3) are:
* Don't cache local PGP public keys retrieved from the address book.
    * Fixed some URL escaping issue for certain links introduced with the
      security fixes from 4.3.3.
    * Fixed updating POP3 indices when deleting in mailbox view.
    * Fixed some folder creation issues occasionally seen, most often during
      maintenance tasks.
    * Other minor bugfixes.

The full list of changes (from version H3 (4.3.3)) can be viewed here:

http://cvs.horde.org/diff.php/imp/docs/CHANGES?r1=1.699.2.376&r2=1.699.2.389&ty=h
2009-04-13 22:25:25 +00:00
rh
2de43b3715 Update GNUMail to 1.2.0pre3. This tracks the corresponding changes to
Pantomime and also makes GNUMail more hier(7) compliant by utilising the
fhs directory structure.
2009-04-13 12:42:38 +00:00
rh
637087afda Update Pantomime to 1.2.0pre3. Changes include some structural overhaul,
including a brand new mailbox caching code and other performance
improvements.  This also makes Pantomime use the fhs filesystem layout
to make it more hier(7) compliant.
2009-04-13 12:40:40 +00:00
sno
3ca861cf10 PkgSrc changes:
- Updating package for p5 module Email::Valid to 0.181
  - Set license to artistic license 2.0

Upstream changes:
0.181     2009-03-23
          explicitly require perl5 version 6
          update some module metadata (Alexandr Ciornii)
          remove hateful indirect method notation (Alexandr Ciornii)
2009-04-12 20:48:08 +00:00
sno
8e624e729a PkgSrc changes:
- Updating package for p5 module Email::Stuff to 2.08
  - Set license to artistic license 2.0
  - Updating dependencies (remove p5-Clone dependency)

Upstream changes:
2.08  Sun 08 March 2009
	- Removed debugging prints accidentally left in from last update

2.07  Fri 17 Feb 2009
	- Fixed bug http://rt.cpan.org/Public/Bug/Display.html?id=27320
	  Removed unused Clone dependency
	  Update by Lyle Hopkins
2009-04-12 20:41:18 +00:00
wiz
c32c5f80b3 Enable evolution-sharp again now the dependency problem is fixed. 2009-04-12 13:17:03 +00:00
wiz
67a0aee51d Update to 0.20.0. Set LICENSE.
Version 0.20.0
24 March 2009

* Update to support 2.26.0 stable release of Evolution-Data-Server
------------------------------------------------------
Version 0.19.2.1
18 Feb 2009

Bug Fixes :
    	  #563917 : Change the API names which were changed before by mistake. (Chenthill Palanisamy)

------------------------------------------------------
Version 0.19.2
16 Feb 2009

Bug Fixes :
    	  #563301 : Fails to build with evolution-data-server < 2.24 (Christopher James Halse Rogers)

------------------------------------------------------
Version 0.19.1
19 Jan 2009

* Support for Recurrence (P Chenthill)

Bug Fixes :
    	  #555242 : Crash in Marshaling objects_added signal. (Johnny Jacob)
2009-04-12 13:16:28 +00:00
sno
759e810b0b PkgSrc changes:
- Update package for p5 module Email::Sender to 0.004
  - Add artistic-2.0 for license

Upstream changes:
0.004   2009-03-24
        require perl5 version 8
        move to Moose; let's not mess around, the Moose/Mouse stuff is not
        worth the minor savings

0.003   2009-03-12
        Sendmail transport now uses 2-arg open on Win32 so it can work at all
        Win32-friendly tests added for Sendmail by the ever-awesome DAGOLDEN
2009-04-12 12:46:05 +00:00
tonio
f790814a93 Enable sidebar patch support, as provided by tonnerre@.
This also fixes PR pkg/35917
2009-04-12 08:25:43 +00:00
sno
dfca1e1ce5 PkgSrc changes:
- removed packages p5-IO-Compress-Base, p5-IO-Compress-Zlib,
    p5-IO-Compress-Bzip2 and p5-Compress-Zlib because they are
    merged into p5-IO-Compress
  - Updated dependend packages to depend on p5-IO-Compress
    and bump PKGREVISION

Upstream changes:
  2.017 30 March 2009

      * Merged IO-Compress-Base, IO-Compress-Bzip2, IO-Compress-Zlib &
        Compress-Zlib into IO-Compress.
      * The interface to Compress-Raw-Zlib now uses the new LimitOutput
        feature. This will make all of the zlib-related IO-Compress modules
        less greedy in their memory consumption.
      * Removed MAN3PODS from Makefile.PL
      * A few changes to get the test harness to work on VMS courtesy of
        Craig. A. Berry.
      * IO::Compress::Base & IO::Uncompress::Base
        Downgraded some croaks in the constructors to just set $! (by letting
        the code attempt to open a file and fail).
        This makes the behavior more consistent to a standard open.
        [RT #42657]
      * IO::Uncompress::Base
        Doing a seek with MultiStream could drop some of the uncompressed
        data. Fixed.
      * IO::Compress::Zip
        - Fixed problem with the uncompressed & uncompressed fields when
          zip64 is enabled. They were set to 0x0000FFFF instead of
          0xFFFFFFFF. Also the ZIP64 extra field was 4 bytes short.
          Problem spotted by Dino Chiesa.
      * IO::Uncompress::Unzip
        - use POSIX::mktime instead of Time::Local::timelocal to convert
          the zip DOS time field into Unix time.
      * Compress::Zlib
        - Documented Compress::Zlib::zlib_version()
2009-04-11 23:15:19 +00:00
adam
6aec736a2a Fix problem with scanning RAR archives 2009-04-10 07:58:29 +00:00
martti
eea8b8f377 Regenerated. 2009-04-09 08:03:44 +00:00
martti
2f02c326c1 Activated LICENSE 2009-04-09 08:00:34 +00:00
martti
5964b77506 Updated mail/clamav to 0.95.1
Lots of bug fixes, see http://svn.clamav.net/svn/clamav-devel/trunk/ChangeLog
for details.
2009-04-09 08:00:10 +00:00
obache
a93047a4a8 Update enma to 1.1.0.
* support DKIM (verification only) and DKIM ADSP
    * support exclusion address list to avoid authentication
2009-04-09 02:25:37 +00:00
joerg
368d71b62e Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
joerg
1dda7f2a29 Replace NO_PACKAGE with NO_BIN_ON_* as it is about reuse on different
machines.
2009-04-09 00:44:53 +00:00
schmonz
f07decb692 Update to 1.12, addressing PR pkg/34765. From the changelog:
1.12:
- Fixed problem with overwriting existing session data items.
- Fixed several problems with handling of databytes in rules.
- Fixed crash in plugin cvm-validate when the lookup secret was unset.
- pop3front-auth now supports a no-argument variant on the AUTH command,
    used by KMail to test for authentication modes, and documented
    in http://www.tools.ietf.org/html/draft-myers-sasl-pop3-05
    Thanks Bernhard Graf for the initial patch
- pop3front-auth and -maildir now support the CAPA command.
    Thanks Bernhard Graf for the initial patch
- Made imapfront-auth more compatible with Courier IMAP by adding extra
    bits to the CAPABILITY command.  Thanks Bernhard Graf.
- plugin-cvm-validate handles modules that provide an "out of scope"
    fact by passing to the next plugin.
- Fixed handling of addresses without a domain in @file rules.
    Thanks Jorge Valdes

1.11:
- Fixed the main mailfront program to clean up temporary files properly.
- Modified the SMTP protocol module to export the SASL authentication
    information internally.
- Modified the check-fqdn plugin to append $DEFAULTHOST and
    $DEFAULTDOMAIN to addresses if necessary.
- Added separate connect and send timeouts and a maximum message size to
    the ClamAV plugin, and fixed a bug with handling port numbers
    when using multiple IPs.
- Modified the ClamAV plugin to prefer $CLAMAV_* settings over $CLAMD_*
- Added plugin API documentation.

1.10:
- Added a ClamAV virus scanner plugin.  Note: Using this plugin will
    cause mailfront to save messages to temporary files.  See
    mailfront.html for details.
- Modified the plugin API to add a version code, a flags word, and to
    (optionally) save messages to a temporary file.
- Fixed a few cases where the UCSPI-TCP protocol was assumed.
- Fixed pop3front-maildir breakage on dietlibc/uClibc and empty
    maildirs.  Thanks Wayne Marshall.

1.01:
- Fixed a bug in the counters plugin that triggered a problem in the
    SMTP protocol when handling the SIZE=# parameter.
- Reversed the order of cvm-validate and qmail-validate in the wrapper
    scripts (and documentation) due to the semantics of the two plugins.
- Added a list of built-in plugins.  The list currently contains the
    three accept* plugins, which are extremely trivial.

1.0:

Mailfront has been rewritten to be totally modular.  The core mailfront
program loads the protocol, backend, and all plugin behaviors at run
time from shared objects.

The previous commands, such as smtpfront-qmail, are now shell script
wrappers for the main "mailfront" command, and as such are depricated in
favor of using "mailfront" directly.  The *front-qmail wrappers preload
all the plugins that were previously compiled into the corresponding
programs:

	check-fqdn counters mailrules relayclient cvm-validate
	qmail-validate add-received patterns accept-sender

NOTE: The *front-reject backends have been dropped in favor of a plugin.
In addition, the $REQUIRE_AUTH feature has been moved to another plugin.
If you used this backend or feature you will need to adjust your
configuration accordingly.
2009-04-08 01:44:04 +00:00
wiz
5fd7204933 Add two missing dirrms. Bump PKGREVISION. 2009-04-07 19:29:42 +00:00
minskim
9af1640e70 Update rails packages to 2.3.1.
Changes since 2.1.1:
* Allow metal to live in plugins #2045 [Matthew Rudy]
* Added metal [Josh Peek]
* Remove script/performance/request in favour of the performance
  integration tests. [Pratik Naik]
* Add a rake task to apply a template to an existing application :
  rake rails:template LOCATION=~/template.rb [Pratik Naik]
* Add "-m/--template" option to Rails generator to apply a template to
  the generated application. [Jeremy McAnally]
* Extracted the process scripts (inspector, reaper, spawner) into the
  plugin irs_process_scripts [David Heinemeier Hansson]
* Changed Rails.root to return a Pathname object
* Added view path support for engines [David Heinemeier Hansson]
* Added that config/routes.rb files in engine plugins are
  automatically loaded (and reloaded when they change in dev mode)
  [David Heinemeier Hansson]
* Added app/[models|controllers|helpers] to the load path for plugins
  that has an app directory (go engines ;)) [David Heinemeier Hansson]
* Add config.preload_frameworks to load all frameworks at
  startup. Default to false so Rails autoloads itself as it's
  used. Turn this on for Passenger and JRuby. Also turned on by
  config.threadsafe!  [Jeremy Kemper]
* Add a rake task to generate dispatchers : rake
  rails:generate_dispatchers [Pratik Naik]
* "rails <app>" will not generate public/dispatch.cgi/fcgi/rb files by
  default now. Please use "--with-dispatchers" option if you need
  them. [Yaroslav Markin, Pratik Naik]
* Added rake rails:update:application_controller to renamed
  application.rb to application_controller.rb -- included in rake
  rails:update so upgrading to 2.3 will automatically trigger it #1439
  [kastner]
* Added Rails.backtrace_cleaner as an accessor for the
  Rails::BacktraceCleaner instance used by the framework to cut down
  on backtrace noise and config/initializers/backtrace_silencers.rb to
  add your own (or turn them all off) [David Heinemeier Hansson]
* Switch from Test::Unit::TestCase to ActiveSupport::TestCase.  [Jeremy Kemper]
* Added config.i18n settings gatherer to config/environment,
  auto-loading of all locales in config/locales/*.rb,yml, and
  config/locales/en.yml as a sample locale [David Heinemeier Hansson]
* BACKWARDS INCOMPATIBLE: Renamed application.rb to
  application_controller.rb and removed all the special casing that
  was in place to support the former. You must do this rename in your
  own application when you upgrade to this version [David Heinemeier
  Hansson]
* Fixed plugin generator so that generated unit tests would subclass
  ActiveSupport::TestCase, also introduced a helper script to reduce
  the needed require statements #1137 [Mathias Meyer]
* Update Prototype to 1.6.0.3 [sam]
* Fixed that sqlite would report "db/development.sqlite3 already
  exists" whether true or not on db:create #614 [Antonio Cangiano]
* Added config.threadsafe! to toggle allow concurrency settings and
  disable the dependency loader [Josh Peek]
* Turn cache_classes on by default [Josh Peek]
* Added configurable eager load paths. Defaults to app/models,
  app/controllers, and app/helpers [Josh Peek]
* Introduce simple internationalization support.  [Ruby i18n team]
* Make script/plugin install <plugin> -r <revision> option work with
  git based plugins. #257. [Tim Pope Jakub Kuźma]. Example:
* Added Rails.initialized? flag [Josh Peek]
* Make rake test:uncommitted work with Git. [Tim Pope]
* Added Thin support to script/server.  #488 [Bob Klosinski]
* Fix script/about in production mode.  #370 [Cheah Chu Yeow, Xavier
  Noria, David Krmpotic]
* Add the gem load paths before the framework is loaded, so certain
  gems like RedCloth and BlueCloth can be frozen.
* Fix discrepancies with loading rails/init.rb from gems.
* Plugins check for the gem init path (rails/init.rb) before the
  standard plugin init path (init.rb) [Jacek Becela]
* Changed all generated tests to use the test/do declaration style
  [David Heinemeier Hansson]
* Wrapped Rails.env in StringInquirer so you can do
  Rails.env.development? [David Heinemeier Hansson]
* Fixed that RailsInfoController wasn't considering all requests local
  in development mode (Edgard Castro) [#310 state:resolved]
2009-04-07 17:13:26 +00:00
hasso
2d1ac299a5 Make Mozilla products build on DragonFly master. 2009-04-07 08:01:01 +00:00
schmonz
022ebb7bf4 Update to 2.65. From the changelog:
* Fixed warnings caused by Python v2.6 (using hashlib, removing
    mimify, etc.)
* Deprecated QP_REQUIRED option as this is more than likely no
    longer needed and part of what triggered Python warnings
* Fixed unicode errors in certain post headers
* Attempted to incorporate Debian/Ubuntu patches into the mainstream
    release
* Support img type enclosures
* No file locking for SunOS
* Gracefully handle missing charsets
* Friendlier and more useful message if sendmail isn't installed
2009-04-07 04:41:18 +00:00
schmonz
8008e8556b Update to 4.9.0. From the changelog:
- add Kerberos authentication support to IMAP retriever classes.
    Thanks: Guido Günther, Uli M.
- clarify documentation regarding MDA_external. Thanks: AJ Weber.
- eliminate deprecation warning for sets module with Python 2.6 by
    using a compatibility wrapper module.
2009-04-07 04:39:44 +00:00
joerg
ee378e80dc Do not preserve 0777 permissions from the distfile when copying to the
final destination in ${PREFIX}.
2009-04-03 19:52:38 +00:00
tron
fc63f8f96c Update "milter-greylist" package to version 4.2. Changes since 4.2rc1:
- Make sure dump is really on disk even with a buggy ext4fs
- Build with OpenLDAP but not CURL (Matthias Scheler)

Approved by Alistair Crooks.
2009-04-02 18:34:17 +00:00
tez
f99503f7d6 Make this package work with Perl 5.9+
Approved by agc
2009-04-02 18:10:39 +00:00
joerg
80c0910fe3 Fix installation. 2009-03-28 01:03:55 +00:00
he
43cafc3804 Bump PKGREVISION following the update of textproc/icu, and the
corresponding change of ABI.

OK'ed by wiz@ (as was the textproc/icu update).
2009-03-25 22:37:12 +00:00
adam
84a38914a9 Changes 0.95:
* Google Safe Browsing support.
* New clamav-milter.
* Clamd extensions.
* Improved API.
* ClamdTOP.
* Memory Pool Allocator.
* Unified Option Parser.
2009-03-25 09:21:19 +00:00
jnemeth
67063bd7fe fix unprivileged builds 2009-03-24 21:05:42 +00:00
joerg
d2b9b13d38 Add back compressed mbox option. 2009-03-23 00:24:31 +00:00
wiz
df8e52e462 Update to 2.4.4:
2009-03-18  Jeffrey Stedfast  <fejj@novell.com>

	* README: Bumped version

	* configure.in: Bumped version to 2.4.4

2009-03-18  Jeffrey Stedfast  <fejj@novell.com>

	* configure.in: Check for select() and poll() as well as poll.h

	* gmime/gmime-gpg-context.c (poll): Implement our own poll()
	function using select() for portability to MacOS 10.2, which
	apparently doesn't have poll().

2009-02-22  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-utils.c: Use GSlice for rfc822 word tokens and date
	tokens.

	* gmime/gmime-parser.c: Updated to use GSlice.

2009-02-22  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-header.c (g_mime_header_iter_new): Use
	g_slice_new().
	(g_mime_header_iter_free): Use g_slice_free().
	(g_mime_header_list_new): Use g_slice_new().
	(g_mime_header_list_destroy): Use g_slice_free().

	* gmime/gmime-gpg-context.c (gpg_ctx_new): Use g_slice_new().
	(gpg_ctx_free): Use g_slice_free().

	* gmime/gmime-cipher-context.c (g_mime_signer_new): Use
	g_slice_new() instead of g_new().
	(g_mime_signature_validity_new): Same.
	(g_mime_signature_validity_free): Use g_slice_free().
	(g_mime_signer_free): Same.

2009-02-07  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/internet-address.c: Removed some unused macros.

2009-01-12  Jeffrey Stedfast  <fejj@novell.com>

	* mono/Makefile.am: Fixed to parallel make install, thanks to
	Diego Petten

2009-01-09  Jeffrey Stedfast  <fejj@novell.com>

	* examples/imap-example.c (write_part): Don't unref the stream we
	get from g_mime_data_wrapper_get_stream().
	(reconstruct_part_content): Fixed error-checking.

2008-11-01  Jeffrey Stedfast  <fejj@novell.com>

	* gmime/gmime-parser.c (nearest_pow): Implement using asm on i386
	- this code path isn't normally built, but it's fun to
	micro-optimize anyway ;-)

	* gmime/gmime-gpg-context.c (status_backup): Use next_alloc_size()
	macro - same as gmime-parser.c
2009-03-22 20:35:16 +00:00
wiz
b1076bb765 Remove msgfmtstrip scripts and targets using them, now that the
infrastructure supports this properly (thanks joerg!).
2009-03-22 19:01:37 +00:00
wiz
ab1027d0f6 Update to 2.26:
Evolution Exchange 2.25.92 2009-03-02
-------------------------------------

New in 2.26.0
	Bug fixes & performance improvements.

Evolution Exchange 2.25.92 2009-03-02
-------------------------------------

Updated Translations:
»·······Chao-Hsiung Liao (zh)
»·······Clytie Siddall (vi)
»·······Jani Monoses (ro)
»·······Praveen Arimbrathodiyil (ml)
»·······Takeshi AIHANA (ja)

Bug Fixes:
»·······#432885 : Rescan foreign hierarchy  to get list of shared calendars before giving up opening of the foreign calendar (Milan Crha)
»·······#545455 : Check for the correct href of the message before accessing it (Milan Crha)

Evolution Exchange 2.25.90 2009-02-02
-------------------------------------

Updated Translations:
	Andre Klapper (de)
	Changwoo Ryu (ko)
	Gabor Kelemen (hu)


Evolution Exchange 2.25.5 2009-01-19
-------------------------------------

Bug Fixes:
	#360813 : RFC 2445 - CREATED/DTSTAMP/LAST-MODIFIED always in UTC. (Milan Crha)
	#566279 : Introduces a new API in Camel needed for implementing EPlugin of Bug #565091  (Philip Van Hoof)

Other contributions:
	Remove #include <camel/camel-i18n.h>  (Matthew Barnes)

Evolution Exchange 2.25.4 2009-01-05
-------------------------------------

Bug Fixes:
	#441712: (Novell Bugzilla) Exchange fix for GAL issue. Unloacking the mutex (Ashish Shrivastava)

Other Contributions:
	Miscellaneous compiler warning cleanups (Matthew Barnes)

Evolution Exchange 2.25.2 2008-12-01
-------------------------------------

New in 2.25.2
       Regression fixed which would now enable a speedy start-up (Milan Crha)

Bug Fixes:
       #540346: Do not try to fetch contacts when not connected (Milan Crha)
       #558883: Revert related parts from bug #336074, which caused slow start up (Milan Crha)

Evolution Exchange 2.25.1 2008-11-03
-------------------------------------

Bug Fixes:
	#552261: Don't expose sqlite3 header outside. (Srinivasa Ragavan)

Updated Translations:
	Maxim Dziumanenko (uk)
	Nick Agianniotis (el)
	Kenneth Nielsen (da)
2009-03-22 16:54:06 +00:00
martti
7830e12df3 Updated mail/clamsmtp to 1.10
- Make the XFOWARD HELO available as a environment variable in scripts.
- Send an RSET to the server after filter fails an email.
2009-03-22 11:21:04 +00:00
manu
0529d18242 Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
wiz
97b8e2c4e1 Needs libical-0.43. 2009-03-22 00:03:10 +00:00
sno
3d774c235b Modify dependency to devel/p5-Module-Pluggable - the Module::Pluggable
delivered with perl-5.10 satisfies the requirement, too.

Oked by he@
2009-03-21 23:28:39 +00:00
jnemeth
133b0f3c6c - various pkglint cleanups
- add user-destdir support

- this should fix PR/41004
2009-03-21 21:30:58 +00:00
jnemeth
bf3f8af8d2 As owner of the package, I have not approved this patch. Having
had a chance to closely examine it, I would prefer it be done
slightly differently.  Also, the patch patches multiple files in
direct contravention of pkgsrc guidelines.  One of the files is
also patched by a different patch.  Having multiple patches applied
to a single file makes maitenance much more difficult.
2009-03-21 21:20:28 +00:00
joerg
2d1ba244e9 Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
2009-03-20 19:23:50 +00:00
joerg
130511b2f3 Comment out evolution-sharp until the dependencies can be resolved. 2009-03-20 18:11:03 +00:00
adrianp
ddbecb1f47 Remove deplicate DOM DEPENDS, pointed out by obache@ 2009-03-20 10:50:02 +00:00
joerg
85692967c9 Add comment about include guard. 2009-03-19 15:50:27 +00:00
ghen
aff8795d5c Update thunderbird and thunderbird-gtk1 to 2.0.0.21.
Security fixes in this version:

MFSA 2009-10 Upgrade PNG library to fix memory safety hazards
MFSA 2009-09 XML data theft via RDFXMLDataSource and cross-domain redirect
MFSA 2009-07 Crashes with evidence of memory corruption (rv:1.9.0.7)

For more info, see http://www.mozilla.com/en-US/thunderbird/2.0.0.21/releasenotes/
2009-03-19 15:08:58 +00:00
drochner
acfaba49d2 update to 2.26.0
This switches to the gnome-2.26 release branch
2009-03-19 12:02:09 +00:00
ghen
1621dfb51f Update to Dovecot 1.1.13, there were two regressions in 1.1.12:
- v1.1.12's MAILBOXDIR changes broke accessing mails in some setups
- v1.1.12's login_executable -D checking changes caused dovecot to
  crash at startup if protocols setting contained only pop3.
- mbox: pop3_lock_session=3Dyes was broken with mail_privileged_group.
2009-03-19 09:04:44 +00:00
darcy
c7a00d559b Correction to generic MAINTAINER address. 2009-03-18 18:43:03 +00:00
wiz
0844b4fecd Bump PKGREVISION for PLIST fix. 2009-03-18 12:12:40 +00:00
ghen
59c0b5c652 Fix PLIST (some directories were not removed). 2009-03-18 11:45:23 +00:00
ghen
f1b3b690f2 Update to Dovecot 1.1.12. Changes since 1.1.11:
* Added :MAILBOXDIR= to mail_location to specify the root dir for
  mailboxes. dbox users should migrate to ":MAILBOXDIR=mailboxes",
  because that's going to be the default in v1.2+.

+ Linux: Adding -D parameter to login_executable makes login processes
  dump core to login_dir if they crash.
- IMAP: SELECT didn't always return first unseen message in reply
- POP3: pop3_lock_session=yes didn't use mail_privileged_group while
  dotlocking.
- mbox: Don't crash if >=8192 bytes long line begins with "From ".
- Maildir: More fixes to handling over 26 keywords.
- Several logging fixes and improvements
- Fixed authentication caching with non-plaintext mechanisms when using
  a blocking passdb (e.g. MySQL)
- Fixed DIGEST-MD5 authentication with user@domain style usernames.
2009-03-18 08:47:15 +00:00
abs
97df00a91a Unify all the mozilla projects into using a single Makefile.common and
INSTALL, and put it in seamonkey.
Ensure all build with USE_DESTDIR.
Bump PKGREVISIONs
2009-03-18 00:08:39 +00:00
darcy
57ded33aec Correct email address for generic MAINTAINER. 2009-03-17 21:40:44 +00:00
adrianp
9f0225a0d0 Add two new patches to DSPAM:
1) Fix a bug when using SMTP/LMTP which can cause the mbox to be written
with trailing ^M's which causes the www interface to stop working.

2) Add a custom configuration option in dspam.conf of "StripRcptDomain" which,
if selected, strips the RCPT TO domain from email processed through DSPAM.
This is off by default.

PKGREVISION++
2009-03-16 18:13:34 +00:00
tron
aca55680b1 Update "milter-greylist" package to version 4.2rc1.
Changes since version 4.0.1:
- SpamAssassassin support
- Native LDAP support via OpenLDAP (off by default in pkgsrc)
- DKIM support (not supported in pkgsrc)
- P0f support
- A lot of bug fixes

pkgsrc related changes:
- Optional "curl" support for external URL checking
2009-03-16 10:15:23 +00:00
roy
b764dbdac3 Fix postgresql driver to escape strings properly.
Fix a tiny pkglint warning.
Bump revision.
2009-03-13 10:11:14 +00:00
abs
920ea45014 Updated mail/roundcube to 0.2.1
pkgsrc changes
- add PKG_DESTDIR_SUPPORT=   user-destdir

distribution changes:
- Use US-ASCII as failover when Unicode searching fails (#1485762)
- Fix errors handling in IMAP command continuations (#1485762)
- Fix FETCH result parsing for servers returning flags at the end of result (#1485763)
- Fix datetime columns defaults in mysql's DDL (#1485641)
- Fix attaching more than nine inline images (#1485759)
- Support 'UNICODE-1-1-UTF-7' alias for UTF-7 encoding (#1485758)
- Fix mime-type detection using a hard-coded map (#1485311)
- Don't return empty string if charset conversion failed (#1485757)
- Disable concurrent autocomplete query results display (#1485743)
- Fix new lines stripped from message footer (#1485751)
- Fix IE problem with mouse click autocomplete (#1485739)
- Fix html body washing on reply/forward + fix attachments handling (#1485676)
- Fix multiple recipients input parsing (#1485733)
- Fix replying to message with html attachment (#1485676)
- Use default_charset for messages without specified charset (#1485661, #1484961)
- Support non-standard "GMT-XXXX" literal in date header (#1485729)
- Added TNEF support to decode MS Outlook attachments (winmail.dat)
- Fix "value continuation" MIME headers by adding required semicolon (#1485727)
- Fix pressing select all/unread multiple times (#1485723)
- Fix selecting all unread does not honor new messages (#1485724)
- Fix some base64 encoded attachments handling (#1485725)
- Support NGINX as IMAP backend: better BAD response handling (#1485720)
- Performance fix: don't fetch attachment parts headers twice to parse filename
- Fix checking for recent messages on various IMAP servers (#1485702)
- Performance fix: Don't fetch quota and recent messages in "message view" mode
- Fix displaying of alternative-inside-alternative messages (#1485713)
- Fix MDNSent flag checking, use arbitrary keywords (asterisk) flag (#1485706)
- Fix creation of folders with '&' sign in name
- Fix parsing of email addresses without angle brackets (#1485693)
- Save spellcheck corrections when switching from plain to html editor (and spellchecking is on)
- Fix large search results on server without SORT capability (#1485668)
- Get rid of preg_replace() with eval modifier and create_function usage (#1485686)
- Bring back <base> and <link> tags in HTML messages
- Fix XSS vulnerability through background attributes as reported by Julien Cayssol
- Fix problems with backslash as IMAP hierarchy delimiter (#1484467)
- Secure vcard export by getting rid of preg's 'e' modifier use (#1485689)
- Fix authentication when submitting form with existing session (#1485679)
- Allow absolute URLs to images in HTML messages/sigs (#1485666)
- Fix message body which contains both inline attachments and emotions
- Fix SQL query execution errors handling in rcube_mdb2 class (#1485509)
- Fix address names with '@' sign handling (#1485654)
- Improve messages display performance
- Fix messages searching with 'to:' modifier
2009-03-11 12:55:10 +00:00
manu
12170efb93 Fix bad patch checksum 2009-03-10 12:41:14 +00:00
manu
d2931fd38a This patch fixes an important reliability fix when Sendmail performs local
mail delivery with non local NSS passwd source, such as LDAP.

Stock LDAP uses getpwnam(3) to lookup recipients. As mandated by SUSv2,
getpwnam(3) does not set errno, so Sendmail has no way of distinguishing
a non existing user and an error with a remote NSS source. Therefore,
when the LDAP server goes down, Sendmail bounces mail to valid recipients.

A first workround is to remove F=w from Mlocal in sendmail.cf. This will
inhibit local recipient lookups, but it has a two drawbacks
- ~/.forward do not work anymore
- For multi-recipient mails with a single inexistent user, mail.local
cause a DSN reporting an error for all users, whereas all valid users
do get the message.

A better workaround is this patch, which calls getpwnam_r(3). This newer
API do set errno and do return an error code. Sendmail is therefore able
to detect that it had a transcient error in NSS, and it will react by
queuing the message. This is what you really want to happen when LDAP
is down.

I have not been able to get any feedback from Sendmail developers about
this patch.
2009-03-09 21:24:00 +00:00
wiz
78b7af7df5 Use mk/omf-scrollkeeper.mk instead of textproc/rarian/omf.mk. 2009-03-08 15:56:43 +00:00
tron
a35062dc71 Add two new options "postfix-milter" and "sendmail-milter". One of the
two must be used to determine whether this package is built for use
with Sendmail (the default) or Postfix. Use an appropriate user (either
"smmsp" or "postfix") in the two cases. This avoid permission problems
between Postfix and milter-greylist.

Bump package revision because of these changes.
2009-03-08 15:54:26 +00:00
apb
0ea6b770f4 BUILDLINK_API_DEPENDS.evolution-data-server+= evolution-data-server>=2.24.3
Not bumping PKGREVISION because eveolution's build failed at configure time
when evolution-data-server was too old.
2009-03-07 16:32:33 +00:00
seb
faa92d21a2 Bump PKGREVISION to 2.
Change dependency on the soon to be removed net/p5-INET6 to
the identical net/p5-IO-Socket-INET6
2009-03-07 13:25:19 +00:00
adrianp
a07884cea0 Nice try but ${FIND} -empty aint that portable
Replace pax with ${PAX}
2009-02-28 17:35:04 +00:00
manu
d49eed8431 Update to dkim-milter 2.8.2, contributed from Fredrik Pettai <pettai@nordu.net>
2.8.2           2009/02/17
        Request a signature with an "i=" tag if signing for subdomains and
                a keylist entry matches.  Previously this only occurred when
                using an explicit domain list.  Problem noted by
                S. Moonesamy of Eland Systems.
        Fixes in and around dkim_socket_cleanup().  Problem noted by
                S. Moonesamy of Eland Systems.
        LIBDKIM: When logging a d2i_PUBKEY_bio() or EVP_PKEY_get1_RSA()
                failure, also log the selector and domain involved so manual
                diagnostics are possible.
        LIBDKIM/LIBAR: Feature request #SF2380508: Add new test for
                WITHOUT_LIBSM which removes references to libsm's sm_strl*()
                functions, so that libdkim and libar can stand on their own
                on systems which provide the strl*() functions.  Requested by
                Frederik Pettai.
        LIBDKIM: Report DKIM_STAT_NOSIG if the caller commands that all
                signatures should be ignored.
        LIBDKIM: Plug a memory leak caused when responding to a malloc()
                failure.
        LIBDKIM: New signature error code DKIM_SIGERROR_KEYDECODE, used if
                 d2i_PUBKEY_BIO() or EVP_PKEY_get1_RSA fails in
                dkim_sig_process().
        LIBAR: Make reference to the "_res" structure more thread-safe.
        BUILD: Make use of conf_dkim_filter_ENVDEF since site.config.m4.dist
                refers to it.  Problem noted by S. Moonesamy of Eland Systems.
2009-02-28 15:44:55 +00:00
drochner
6f2f363be9 fix a format string problem (use of the Linux-only "%Id" specifier
which made the small calendar display only nonsense,
ride on recent update
And again: Please test the pkgs at least a little bit before
committing an update.
2009-02-27 19:45:52 +00:00
wiz
f9d506ad15 Update to 2.24.5:
Evolution Exchange 2.24.5 2009-02-25
------------------------------------

Bug Fixes:
#545455 : Check for the correct href of the message before accessing
it. (Milan Crha)
2009-02-27 18:41:03 +00:00
wiz
f11d6ea0b0 Update to 2.24.5:
Evolution 2.24.5 2009-02-25
---------------------------

Updated Translations:
Wouter Bolsterlee (nl)

Bug Fixes:
#333716 : Do not store incomplete or broken files in a cache. (Milan
Crha)
#529037 : Disconnect signals on ESource-s too, not only on ECal-s.
(Milan Crha)
#559027 : Do not set date for 'None' value. (Milan Crha)
#559719 : Use it's own/unique name for the property on the 'epl'
and free the widget only if it wasn't freed yet. (Milan Crha)
#559719 : Use it's own/unique name for the property on the 'epl'
and free the widget only if it wasn't freed yet. (Milan Crha)
#561465 : Expand 'Attendee' column instead of the last. (Milan
Crha)
#564229 : Do not use uninitialized variable. (Milan Crha)
#564229 : Initialize the EPluginUI registry during class initialization,
so that it's sure to be there when we need it. (Matthew Barnes)
#567089 : Do not crash when no From set yet. (Milan Crha)
#569700 : Stop reading from a network when operation was canceled.
(Milan Crha)
#569986 : bar rendering. (Srinivasa Ragavan)
#572399 : Do not read from invalid iterator after call of row
changed. (Milan Crha)
#572543 : Always look for alternative apps for application/octet-stream.
(Milan Crha)
#572975 : Destroy file chooser dialog early enough to not have
hidden any other windows below it. (Milan Crha)
2009-02-27 18:36:31 +00:00
wiz
07ba7bf40c Update to 2.24.5:
Evolution-Data-Server 2.24.5 2009-02-25
---------------------------------------

Bug Fixes:
#477535 : Randomly mail status changes were not getting stored in
server. Fixed the issue by unsetting correct flags. (Sankar P)
#567008 : Avoiding the clearing of the uids in the spool summary
if forceindex is true. (Jeff Cai)
2009-02-27 17:40:43 +00:00
sno
6df8800efd pkgsrc changes:
- update module to 1.27

Upstream changes:

version 1.27: Tue Feb  3 12:23:08 CET 2009
	- fix application/ogg to .ogx.  Add other oggs [John Drago]
	- alternative for ogg in test scripts,
	- test by_mediatype with regexp parameter.
	- do not use /bin/pwd in t/pod.t

version 1.26: Wed Dec 17 09:01:27 CET 2008
	- added many ooxml types [Joe Spooner]

version 1.25: Sat Nov 29 15:00:20 CET 2008
	- added application/jsoni
	  rt.cpan.org #36812 [Christopher H. Laco]
	- added text/x-component
	  rt.cpan.org#41293 [Stephen Steneker]
2009-02-25 22:18:59 +00:00
sno
0e2c588523 Update required perl version to 5.8.1 to ensure additional dependencies
- Scalar::Util 1.0.2 - core in 5.7.3
- Test::More 0.47    - core in 5.8.1
2009-02-25 20:51:11 +00:00
sno
91983a3769 Removing pkgsrc dependency to sysutils/p5-Sys-Hostname-Long - the META.yml
names Sys::Hostname >= 1.1 - perl-5.10 comes with 1.11.
2009-02-25 20:09:20 +00:00
sno
532d39f0be Upstream changes:
1.316     2009-01-22
          add repo location metadata
2009-02-25 20:02:31 +00:00
sno
7ef5c144a0 - updating dependency to Email::Simple as seen in modules META.yml
- dependency to Test::Simple 0.47+ is required for really old perl
  versions
2009-02-25 19:59:13 +00:00
rhaen
ae7516973d - updated to 1.443
Changelog:
i1.443     2009-01-22
          add test for the stupid parts_set($one_part) cases
2009-02-25 13:48:38 +00:00
sborrill
84cc8d5c1b Fix memory leak and pullup bug fix for http://bugs.php.net/bug.php?id=46918
Remove this patch when PHP >= 5.2.9 is released as it will contain these
changes

Bump PKGREVISION of php-imap
2009-02-25 08:59:47 +00:00
joerg
dd2376eca5 Fix DESTDIR installation 2009-02-24 23:41:44 +00:00
wiz
89b7448c31 Update to 2.24.4:
Bug Fixes:
	#360813 : RFC 2445 - CREATED/DTSTAMP/LAST-MODIFIED always in UTC. (Milan Crha)
2009-02-24 15:31:26 +00:00
wiz
4ccf523725 Update to 0.09:
0.09  Sun May 02 2004
        - added PREREQ_PM to Makefile.PL

0.08  Sun May 02 2004
	- Changed whitelisted() function to also check for RELAY since
	  according to the sendmail spec, RELAY implies OK.

	- Switched to using BerkeleyDB package instead of File_DB since
          File_DB didn't seen to be working with BDB 4.2 libraries

	- No longer include a test.db file. Call /usr/sbin/makemap at
	  `make test` time.
2009-02-22 20:37:09 +00:00
he
475df98fa2 Updated from version 3.12 to 3.14.
Pkgsrc changes:
 o Adjust dependencies to match new requirements.

Upstream changes:

version 3.14: Mon Feb 16 14:18:09 CET 2009

	Fixes:

	- isparent() when list() returns nothing.
	  rt.cpan.org#42932 [Phil Lobbes]

	- Quote more characters in Massage(): add  CTL, [, ], % and *
	  rt.cpan.org#42932 [Phil Lobbes]

	- message_string() will only complain about a difference between
	  reported message size and actually received size; it will not
	  try to correct it anymore.
	  rt.cpan.org#42987 [Phil Lobbes]

	- No error when empty text in append_string()
	  rt.cpan.org#42987 [Phil Lobbes]

	- login() should not try authenticate() if auth is empty or undef
	  rt.cpan.org#43277 [Phil Lobbes]

version 3.13: Thu Jan 15 10:29:04 CET 2009

	Fixes:

	- "othermessage" in bodystructure parser should expect an MD5,
	  not bodyparams.  Fix and test(!) by [Michael Stok]

	Improvement:

	- minor simplifications in code of run() and _imap_command()

	- get_bodystructure trace message fix [Michael Stok]

	- add Domain option for NTLM authentication.
2009-02-22 12:38:01 +00:00
he
5d690b374e Update from version 3.023nb1 to 3.024.
Pkgsrc changes:
 o Fix typo in HOMEPAGE url
 o Get rid of nasty interactive bits by redirecting stdin to /dev/null

Upstream changes:

Version 3.024
    add git repo link to metadata
2009-02-22 12:31:13 +00:00
he
1aee7f0ad8 Update from version 1.179nb1 to 1.180.
Upstream changes:

0.180     2009-01-16
          add repo location to metadata
2009-02-22 12:25:16 +00:00
he
8a6b90cf28 Update from version 0.001 to 0.002.
Upstream changes:

0.002   2009-01-31
        fix minor documentation errors
2009-02-22 12:18:39 +00:00
he
337bb83906 Update from version 1.400 to 1.401.
Upstream changes:

1.401     2009-01-22
          add repo location to metadata
2009-02-22 12:12:17 +00:00
he
7dabdda672 Update from version 1.311nb1 to 1.312.
Upstream changes:

1.312     2009-01-22
          add repo metadata
2009-02-22 12:07:43 +00:00
he
8b91ffc713 Updated from version 1.014nb1 to 1.015.
Upstream changes:

1.015     2009-01-22
          add repo metadata
2009-02-22 12:01:58 +00:00
he
899c4f2971 Updated from version 0.11nb1 to 0.13.
Pkgsrc changes:
 o Adjust dependency on p5-Email-MIME-Creator to match new requirement

Upstream changes:

0.13    2009-02-22 14:06:00
        - bcc: POD corrections thanks to Lance Brown <lance@bearcircle.net>

0.12    2009-01-22 06:52:00
        - Fixing tests for new versions of MIME::Creator
        - Better structure of the code so that ::Template can also handle
          plain text views
        - Added onto troubleshooting
2009-02-22 11:55:59 +00:00
he
f46715904a Update from version 1.454nb1 to 1.455.
Pkgsrc changes:
 o Adjust dependency on p5-Email-MIME-Modifier to match new requirement.

Upstream changes:

1.455   2009-01-20
        fix a horrendous bug that would let you end up with:
        Content-Type: image/jpeg; charset="utf-8"
2009-02-22 11:53:38 +00:00
adrianp
1a5a230d4b Fix for OpenSolaris builds 2009-02-21 17:02:59 +00:00
drochner
1f41ea52db update to 2.24.4
changes:
-bugfixes
-translation updates
2009-02-18 14:08:26 +00:00
abs
6a05f6faf1 Use INSTALLATION_DIRS 2009-02-18 10:56:09 +00:00
joerg
00fb1353aa Rest maintainer, mail bounced 2009-02-17 12:57:07 +00:00
drochner
c4e1dc73f9 add a patch from gnome bugzilla#564465 to fix possible signature
spoofing with s/mime mails (CVE-2009-0547)
ride on last night's PKGREVISION bump
2009-02-17 11:01:43 +00:00
drochner
30bcfd90ab fix another 64-bit time_t problem which can unfortunately lead to
mail database corruption, bump PKGREVISION
2009-02-16 23:31:38 +00:00
joerg
fb36e476d0 DESTDIR support. 2009-02-16 18:21:24 +00:00
obache
f4ae470511 Upadte cue to 20090209.
Patch provided by YAMAMOTO Takashi in PR 40623.
no changelog...
2009-02-15 07:07:23 +00:00
abs
6d30372b9b Add PKG_DESTDIR_SUPPORT=destdir 2009-02-13 15:28:03 +00:00
abs
bef27f79dc MAKE_JOBS_SAFE=no 2009-02-13 15:22:02 +00:00
markd
45c870cf4a add DESTDIR support. 2009-02-11 21:11:21 +00:00
adrianp
35e43a2eee Add php DOM support depending on the version of PHP in use
PKGREVISION++
2009-02-10 21:24:51 +00:00
joerg
c6716db49c DESTDIR support. 2009-02-10 17:22:20 +00:00
rhaen
124fec813d 2.005 2009-01-22
add repository metadata
2009-02-10 14:48:04 +00:00
rhaen
64fb7e9d1f 1.863 2009-01-30
no code changes
        add strangely missing copyright information

1.862   2009-01-22
        add repository location metadata
        always require Encode, never MIME::Words; this means that using
          Email::MIME on pre-5.008 will be difficult, if not impossible
        if a header can't be decoded, fall back to the raw header
        move decoding methods to Email::MIME::Header, add header_raw
2009-02-10 14:41:45 +00:00
rhaen
bc6868554f 3.001 2008-12-11
declare our prereq on Scalar::Util
2009-02-10 14:34:25 +00:00
joerg
3c645bb7fc Switch to Python 2.5 as default. Bump revision of all packages that have
changed runtime dependencies now.
2009-02-09 22:56:21 +00:00