pkgsrc/mail
wiz 44d9a395b3 Update to 2.2.4:
2007-02-08  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.4

2007-02-06  Jeffrey Stedfast

	Fix for bug #394433

	* configure.in: Detect if the system has GNU's getopt
	implementation available for us to use.

	* Makefile.am: Don't build our own copy of the GNU getopt library
	if the system has it available.

	* src/uuencode.c: If the system has getopt.h, use it instead of
	our own getopt.h.

	* src/uudecode.c: If the system has getopt.h, use it instead of
	our own getopt.h.

2007-02-06  Jeffrey Stedfast

	More fixes on account of my test suite...

	* tests/test-cat.c (test_cat_substream): end = start + random
	amount... duh. Fixes a bug where sometimes the end bound was < the
	start bound.

	* gmime/gmime-stream-cat.c (stream_substream): Calculate the
	length of each of the source streams correctly. D'oh.
	(stream_substream): Fixed the calculation for s->start.
	(stream_substream): Fixed the s->end calculation for when end
	within the source stream's bounds.
	(stream_substream): Keep track of how long our substream is going
	to be for use with setting absolute bound_end on a multi-stream
	substream.

2007-02-05  Jeffrey Stedfast

	Fixes on account of the awesome test suite I wrote earlier... still
	need to fix ::substream() tho (or maybe it's just the test that's
	broke?).

	* gmime/gmime-stream-cat.c: Added an id member to struct
	_cat_node, for use with debugging...
	(stream_read): Seek in the source stream, don't call
	Cat::stream_seek() to do it.
	(stream_seek): Swapped the logic of the "within bounds" check, had
	it backwards. When seeking past a stream, set the node->position
	to the length of the stream (technically, it's like we read() thru
	all that data, right?). Instead of resetting all streams starting
	at n->next, reset them all starting at current->next... since 'n'
	technically might be before 'current'.
	(g_mime_stream_cat_add_source): Assign each node an id for easier
	debugging...

2007-02-05  Jeffrey Stedfast

	* tests/test-cat.c: The beginnings of a test suite for
	GMimeStreamCat.

	* gmime/gmime-stream-cat.c (stream_read): Go to the next stream if
	nread <= 0, not just nread == 0.

2007-02-04  Jeffrey Stedfast

	* gmime/gmime-stream-mem.c (stream_reset): No longer need to
	update stream->position.

	* gmime/gmime-stream-mmap.c (stream_reset): Same g_return_if_fail
	change. Also don't update stream->position.
	(stream_seek): Added similar sanity checking/eos resetting as
	StreamFs code.

	* gmime/gmime-stream-file.c (stream_read): Style changes.
	(stream_write): Style changes.
	(stream_close): Fixed compiler warning.
	(stream_reset): Changed g_return_if_fail to a true if-then.
	(stream_seek): Changed to mimic the StreamFs changes.
	(g_mime_stream_file_new): Similar to fs_new() change.

	* gmime/gmime-stream-fs.c (stream_close): Loop the close()
	ourselves.
	(stream_reset): Changed g_return_if_fail to a true if-then. Also
	be better about resetting eos.
	(stream_seek): Rewritten to be more correct/robust (at least I
	hope). Also properly reset eos when appropriate.
	(g_mime_stream_fs_new): If lseek() fails, pretend start offset is
	0.

	* gmime/gmime-stream.c (stream_reset): No longer needs to update
	stream->position.
	(g_mime_stream_reset): Update stream->position if everything reset
	smoothly. This is just a convenience change to subclass
	implementations.

	* gmime/gmime-stream-cat.c (stream_read): Rewritten. Hopefully
	correct now? Ugh. We can hope...
	(stream_write): Fixed to work better.
	(stream_close): Rewritten.
	(stream_reset): Rewritten to reset the streams, don't seek.
	(stream_seek): Rewritten... still not correct, but should be ok
	assuming our bound_start is 0.
	(stream_length): Rewritten to not depend on a pre-calculated
	length value... this Does Not Work (tm) if the source streams are
	unbound and we've written to them.
	(stream_substream): Rewritten... because ::seek() is so complex
	for this type of stream, I've tried to eliminate a lot of the
	headaches by making substreams only slurp up the streams within
	the bounds of the start/end requested. If the entire contents
	within the requested bounds are contained within a single source
	stream, we return a substream of said source stream instead.
	(g_mime_stream_cat_add_source): Don't precalculate the length here
	anymore.

	* gmime/gmime-stream-buffer.c (stream_read): Fixed to never allow
	buflen to be negative if the read() of our source stream fails.
	(stream_close): Handle the case where we've already been closed.
	(stream_eos): Simplified.
	(stream_reset): Stylistic changes.
	(stream_seek): Don't allow seeks under our bound_start.

2007-02-03  Jeffrey Stedfast

	* gmime/gmime-stream-cat.c (stream_flush): Flush all streams up to
	and including the current stream, not just the current stream.
	(stream_write): break if we don't write any data to
	current->stream or get an error so we can try the next stream.

	* gmime/gmime-stream-file.c (stream_close): Same as below.

	* gmime/gmime-stream-fs.c (stream_close): Allow closing multiple
	times... makes this consistant with the other streams.
	(stream_write): If a system write fails with EFBIG or ENOSPC, set
	eos to TRUE.

2007-01-20  Jeffrey Stedfast

	* tests/test-streams.c (test_stream_gets): printf formatter fixes.

	* examples/imap-example.c: #include <glib/gstdio.h>, fixes bug
	#394434.

2007-01-20  Jeffrey Stedfast

	Fixes bug #394419

	* gmime/gmime-filter-charset.c (filter_filter): Do iconv const
	casting.
	(filter_complete): Same.

2006-11-02  Jeffrey Stedfast

	* gmime/gmime-utils.c (g_mime_utils_header_format_date): Changed
	the names of the parameters to date and tz_offset to prevent
	warnings from -Wshadow.

	* gmime/gmime-filter-html.c (writeln): Fixed another possible
	buffer overflow condition pointed out by hpj.

	* gmime/gmime-filter-crlf.c (filter_filter): Fixed a possible
	buffer overflow condition pointed out by hpj.

	* gmime/gmime-gpg-context.c (gpg_ctx_op_step): Modified to use
	poll() rather than select()

2006-09-18  Joe Shaw

	* mono/Makefile.am: Use SOURCES_XML instead of XML_SOURCES to
	specify the sources.xml file.  XML_SOURCES breaks with newer
	automakes.

2006-08-29  Pawel Salek

	* gmime/gmime-message-partial.c: set buf just before use - since
	the mem stream buffer may get reallocated in the meantime leading
	to segfaults.

2006-08-29  Jeffrey Stedfast

	* gmime/gmime-param.c (decode_quoted_string): Unescape escape
	sequences. Fixes bug #352771.

	* gmime/gmime-message.c (g_mime_message_set_subject): Updated the
	docs.
	(g_mime_message_get_subject): Same.

2006-08-21  Peter Bloomfield

	* gmime/gmime-utils.c (g_mime_utils_unquote_string): handle an
	arbitrary sequence of quoted and unquoted sections.

2006-08-02  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.3

	* gmime/gmime-message.c (process_header): Decode the values for
	Subject, From, Reply-To so that g_mime_message_get_subject/etc all
	return decoded strings like they were meant to.

2006-06-23  Jeffrey Stedfast

	* gmime/gmime-gpg-context.c (swrite): Use g_build_filename() and
	g_get_tmp_dir() rather than hard-coding the tmpfile to be in /tmp.

2006-06-23  Jeffrey Stedfast

	* gmime/gmime-part.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-parser.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-param.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-multipart-signed.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-multipart-encrypted.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-multipart.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-message-partial.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-message-part.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-message.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-iconv.c (g_mime_iconv_open): Use g_ascii_* versions
	of str[n]casecmp.

	* gmime/gmime-header.c (g_mime_header_new): Use
	g_mime_strcase_[hash,equal] rather than param_[hash,equal] to
	reuse code.

	* gmime/gmime-gpg-context.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-filter-enriched.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-disposition.c (g_mime_disposition_add_parameter):
	Use g_mime_strcase_[hash,equal] rather than param_[hash,equal] to
	reuse code.
	(g_mime_disposition_new): Same.
	(param_equal): Removed.
	(param_hash): Removed.

	* gmime/gmime-content-type.c: Use g_ascii_* versions of
	str[n]casecmp.
	(g_mime_content_type_new_from_string): Use
	g_mime_strcase_[hash,equal] rather than param_[hash,equal] to
	reuse code.
	(g_mime_content_type_set_parameter): Same.
	(param_equal): Removed.
	(param_hash): Removed.

	* gmime/gmime-charset.c: Use g_ascii_* versions of str[n]casecmp.

2006-06-23  Jeffrey Stedfast

	* gmime/gmime-stream-cat.c (stream_seek): Fixed to only seek if
	necessary and also to use ::reset() if seeking back to the
	beginning of the stream so that it works for non-seekable streams
	too. Fixes bug #345503 - again thanks to Charles for reporting
	this bug.

	* gmime/gmime-object.c (subtype_bucket_foreach): Fixed to also
	free the bucket memory. Fixes bug #345768, thanks to Charles Kerr
	for pointing this out.

2006-06-22  Jeffrey Stedfast

	* gmime/gmime-gpg-context.c: Removed #define _POSIX_SOURCE to fix
	bug #172179.

2006-06-15  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.2

2006-06-01  Jeffrey Stedfast

	* gmime/gmime-utils.c (parse_broken_date): Fixed to handle
	MM-DD-YY properly and also to fallback to DD-MM-YY if the first
	pair of digits isn't within range for a proper month.

2006-05-30  Jeffrey Stedfast

	* gmime.h.in: Removed.

	* gmime.h: Now static, no longer auto-generated.

	* gmime/gmime.c: Set the gmime_[major,minor,micro]_version
	variables.
	(g_mime_check_version): New function to check the required
	version.

	* gmime/gmime-stream-fs.c: Implement our own no-op version of
	fsync() for systems that don't have fsync().

2006-05-24  Jeffrey Stedfast

	* examples/imap-example.c (main): Use g_mkdir() to make this
	example portable to Win32.

2006-05-01  Jeffrey Stedfast

	* gmime/gmime-gpg-context.c (gpg_ctx_parse_status): Handle prompts
	from GnuPG asking for the user's PIN for their SmartCard.

2006-04-21  Jeffrey Stedfast

	* gmime/gmime-stream.h: #include <stdio.h> for SEEK_SET/CUR/END
	enum values.

2006-03-16  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.1

	* gmime/gmime-parser.c (parser_step): No-op if we are in an ERROR
	state.
	(parser_construct_message): Don't bail if we don't start in state
	INIT, this is valid.
	(parser_step_from): We need to bail even if parser_fill() returns
	> 0 if the line is incomplete (e.g. a forced refill was needed but
	no additional data could be read).

2006-03-16  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.0, it's about time I made a
	stable release.

2006-03-15  Jeffrey Stedfast

	* gmime/gmime-parser.c (parser_step_from): If we fail to find a
	From line, set an error state. Also fixed the End-Of-Data check to
	prevent an infinite loop if the stream ends with \n\n.
	(parser_construct_message): Make sure our state starts off at
	INIT. Also check for the ERROR state in our parser_step() loop and
	return NULL if we encounter an error.

2006-03-03  Jeffrey Stedfast

	* util/url-scanner.c (g_url_web_end): Allow urls such as
	"http://www.novell.com./path" (note the '.' before the path
	component).
	(g_url_addrspec_start): If the '@' is the first character in the
	match, then it isn't a valid email address.
2007-03-08 20:04:06 +00:00
..
anomy-sanitizer Oops, some files had been installed with mode 600. Take 644 instead. 2006-12-21 19:33:28 +00:00
archivemail PKGMANDIR support. 2006-11-14 13:50:42 +00:00
autorespond Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
avenger Imported avenger. 2006-10-25 14:05:31 +00:00
balsa2 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
bbmail Modular Xorg support. 2007-02-15 14:46:27 +00:00
bmf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bogofilter Update bogofilter to 1.0.3. 2007-02-16 15:47:39 +00:00
bulk_mailer Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
clamav Updated mail/clamav to 0.90.1 2007-03-06 10:32:33 +00:00
clamsmtp Update to 1.8: 2006-10-27 17:37:18 +00:00
columba Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
coolmail Modular Xorg support. 2007-02-06 18:30:26 +00:00
courier-analog This is an optional package, the Courier log analyzer. Courier-analog generates 2007-01-03 12:56:13 +00:00
courier-imap Fix coutier-imap to link to BDB_LIB instead of -ldb. 2006-10-10 12:55:39 +00:00
courier-maildir DESTDIR support. 2006-11-03 19:14:25 +00:00
courier-mta Install couriertcpd into sbin, which is the location expected by stock 2006-06-26 05:21:17 +00:00
cucipop Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
cue Update cue to 20061225. 2007-01-02 12:47:22 +00:00
cyrus-imapd Replace use of timezone (on BSDs traditionally a function, not a 2006-12-01 13:36:59 +00:00
cyrus-imapd21 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
dbmail Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
deliver Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
demime Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
distribute Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
dk-milter Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
dkim-milter Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
dot-forward These packages generate catted manpages. Add USE_TOOLS+=nroff. 2006-01-05 02:57:10 +00:00
dovecot Update to dovecot-1.0rc26. 2007-03-07 09:50:41 +00:00
drac Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
dspam Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
elm Assume stdarg.h exists instead of using varargs.h in some cases. 2006-07-17 17:41:00 +00:00
elm-me Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
elmo USE_TOOLS+=flex 2006-06-09 16:03:23 +00:00
esmtp Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
etach Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
etpan USE_TOOLS+=yacc 2006-06-20 22:12:59 +00:00
evolution Also take tm_isdst into account by applying a 3600 second correction. 2006-10-11 16:45:49 +00:00
evolution-data-server Make it build on Darwin 2007-01-18 15:22:15 +00:00
evolution-exchange Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
exim Update mail/exim from 4.63 to 4.66 2007-01-10 12:54:36 +00:00
exim-html Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
exim3 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
exmh Modular Xorg support. 2007-02-15 14:46:27 +00:00
ezmlm Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
ezmlm-idx Update to 0.444, a bugfix release, and quell pkglint. From the changelog: 2006-12-29 06:21:06 +00:00
faces Modular Xorg support. 2007-02-15 14:46:27 +00:00
fastforward cdb_seek.c needs DJB errno hack. 2006-01-08 18:27:11 +00:00
fetchmail Use documented trick to disable Python detection instead of patching 2007-01-17 19:18:01 +00:00
fetchmailconf Add second Berlios download site to MASTER_SITES. The main one gets 2007-01-17 17:36:51 +00:00
fetchyahoo Import fetchyahoo version 2.10.6. 2007-01-13 15:38:52 +00:00
fix-mime-charset Drop maintainership, I don't use them any longer. 2006-06-15 13:31:28 +00:00
fromto Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
getmail Update to 4.7.2. From the changelog: 2007-02-21 00:29:05 +00:00
gld Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
gmime Update to 2.2.4: 2007-03-08 20:04:06 +00:00
GNUMail The GNUstep packages have GNUmakefile instead of Makefile. 2006-09-22 07:08:15 +00:00
gnus pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
gotmail Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
greetdelay Update to 0.03. From the changelog: 2007-01-30 22:09:06 +00:00
grepmail Update grepmail to 5.3032. 2006-10-15 10:43:36 +00:00
hypermail USE_TOOLS+=yacc 2006-06-20 22:12:59 +00:00
ifile Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ifile-procmail Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
imap-uw Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
imap-uw-utils Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
imapfilter Adapt for lua-5.1.1. Bump PKGREVISION. 2006-08-14 22:36:12 +00:00
imapproxy Update MASTER_SITES/HOMEPAGE -- mostly disappeared. 2007-03-04 11:29:57 +00:00
imapsync Import imapsync-1.182 2006-08-10 11:18:16 +00:00
imp Update to 4.1.3 2006-08-17 20:17:12 +00:00
incm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ingo Update to 1.1.1 2006-10-29 08:22:02 +00:00
isync Avoid segfault when parsing configuration file under netbsd 2007-01-18 18:26:21 +00:00
ja-mh Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
ja-squirrelmail Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
jchkmail Fix PLIST, from joerg at britannica dot bec dot de 2006-04-11 11:12:20 +00:00
kbiff Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
libesmtp Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libetpan Update to 0.48 2007-01-09 15:46:37 +00:00
libmilter Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
libspf-alt Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
libsylph Needs msgfmt. 2006-12-06 16:30:48 +00:00
mail-notification Bump revisions due to gnome-vfs2 update: dbus-glib is now a dependency. 2006-09-16 12:20:32 +00:00
mailagent Use variables instead of interactively asking the user to provide values. 2007-03-01 18:04:48 +00:00
mailcrypt List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-05 16:41:34 +00:00
maildrop Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
mailfront Pass the runtime path to bglibs to the linker, now that they're dynamic. 2006-08-02 02:42:22 +00:00
mailgraph Removed an empty line to make the SUBST block appear in a single 2006-06-18 01:02:45 +00:00
mailman Fixed indentation. 2007-01-18 06:33:45 +00:00
mailscanner Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mailserv Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:47:16 +00:00
mailsync pkglint USE_LANGUAGES cleanup. Patch from Sergey Svishchev. 2007-02-22 19:30:02 +00:00
mailwrapper Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mairix USE_TOOLS+=flex 2006-06-09 16:03:23 +00:00
majordomo Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
mb2md Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE, 2005-09-28 20:52:18 +00:00
mdfrm Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
mess822 Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
metamail Add missing RCS Id. 2006-09-16 15:29:35 +00:00
mew Teach emacs22{,nox11}. 2007-02-20 12:41:53 +00:00
mhonarc Update mhonarc to version 2.6.16. 2007-02-28 16:04:16 +00:00
milter-greylist Don't assume time_t and long are the same (on sparc64, they aren't). 2007-03-07 17:33:51 +00:00
milter-regex Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mimedefang Update to mimedefang 2.58 2006-11-08 09:42:05 +00:00
mini_sendmail Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mpop I will be the maintainer. I use this software frequently for a few months. 2006-06-25 03:32:23 +00:00
msmtp List the info files directly in the PLIST and honor PKG{INFO,MAN}DIR. 2006-04-05 16:41:34 +00:00
mush The directory share/misc must be pre-created, otherwise it will be a 2006-10-09 02:41:11 +00:00
mutt Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mutt-devel - Add an smime option (enables by default). When disabled, it removes the perl 2007-03-04 17:22:45 +00:00
nail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
newmail Use DT_REG / DT_DIR directly if available and fall back to DTTOIF 2006-01-24 19:08:09 +00:00
newspipe Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
nmh Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
nullmailer Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
oe2mbx Update MASTER_SITES and HOMEPAGE. Mark as not for Linux, 2007-02-22 19:20:05 +00:00
offlineimap Update mail/offlineimap to 4.0.16 2007-02-16 15:46:21 +00:00
p5-Email-Abstract Update p5-Email-Abstract to 2.131. 2006-10-26 14:54:07 +00:00
p5-Email-Simple Update p5-Email-Simple to 1.995. 2006-10-26 14:31:48 +00:00
p5-Email-Valid Update p5-Email-Valid to 0.176. 2006-10-26 14:41:53 +00:00
p5-GMail-IMAPD Initial import of p5-GMail-IMAPD, version 0.93: 2006-08-09 08:03:33 +00:00
p5-IMAP-Admin Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Mail-Audit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Mail-Box p5-File-Spec has gone (superseded by p5-PathTools), but the version in 2007-01-13 21:24:58 +00:00
p5-Mail-ClamAV Update to 0.20: 2007-02-21 22:10:47 +00:00
p5-Mail-DKIM Updated to version 0.22. 2007-02-15 21:39:56 +00:00
p5-Mail-Ezmlm Removed the superfluous "quotes" and 'quotes' from variables that don't 2006-04-22 09:22:05 +00:00
p5-Mail-IMAPClient Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Mail-ListDetector Update p5-Mail-ListDetector to 0.34. 2006-11-03 11:21:48 +00:00
p5-Mail-Mbox-MessageParser Update to 1.5000: 2007-02-24 23:08:35 +00:00
p5-Mail-Milter 0.07 Wed Mar 22 15:45:00 2006 UTC 2006-03-30 04:12:20 +00:00
p5-Mail-Sender Import mail/p5-Mail-Sender-0.8.13 into pkgsrc 2007-03-02 10:43:21 +00:00
p5-Mail-Sender-Easy Import mail/p5-Mail-Sender-Easy-0.0.5 into pkgsrc 2007-03-02 10:53:59 +00:00
p5-Mail-Sendmail Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Mail-SPF-Query Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
p5-Mail-SRS Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
p5-Mail-Webmail-Gmail Initial import of p5-Mail-Webmail-Gmail, version 1.08: 2006-08-09 07:59:11 +00:00
p5-MailTools DESTDIR support. 2006-11-05 17:06:43 +00:00
p5-MIME-Lite Updated to 3.01. 2006-03-10 06:06:33 +00:00
p5-MIME-Lite-HTML Initial import of p5-MIME-Lite-HTML, version 1.21, into the NetBSD 2006-04-18 18:55:18 +00:00
p5-MIME-tools DESTDIR support. 2006-11-05 17:06:43 +00:00
p5-MIME-Types Update mail/p5-MIME-Types to 1.16. Changes from version 1.15 include: 2006-05-02 04:33:51 +00:00
p5-Net-LMTP Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Net-SMTP_auth Initial import of p5-Net-SMTP_auth version 0.08 into the NetBSD Packages 2006-10-01 21:44:17 +00:00
p5-razor-agents Updated to version 2.82. 2006-07-15 12:38:39 +00:00
p5-Sendmail-AccessDB Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Sendmail-PMilter Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
p5-User-Identity Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
Pantomime The GNUstep packages have GNUmakefile instead of Makefile. 2006-09-22 07:08:15 +00:00
pear-Mail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
pear-Mail_Mime Update pear-Mail_Mime to 1.3.1. 2006-10-23 20:17:16 +00:00
perdition Give this away to pkgsrc-users. I don't have a use for this anymore, so I 2007-03-02 23:44:13 +00:00
perdition-bdb Ensure that db4 is actually linked. Since it used -ldb on DragonFly 2006-06-28 13:46:58 +00:00
perdition-gdbm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
perdition-ldap The databases/openldap package has been split in -client and -server component 2006-05-31 18:52:38 +00:00
perdition-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
perdition-odbc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
perdition-postgresql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
pfqueue Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
php-imap Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:54 +00:00
pine Add an option fancythreads' to add Eduardo Chappa's fancy threading' UI 2007-03-03 21:54:23 +00:00
pine-pgp-filters Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
popa3d Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
poppassd Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
poppy Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
postfix Add an option to use dovecot for SASL. 2007-02-20 16:49:29 +00:00
postfix-current Updated mail/postfix-current to 2.4-20070214 2007-02-15 06:38:13 +00:00
postgrey Removed an empty line to make the SUBST block appear in a single 2006-06-18 01:02:45 +00:00
prayer Fixed ownership of the installed files to allow installation as 2006-10-23 08:31:29 +00:00
procmail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
proxsmtp Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
pulsar Use BSD_INSTALL_* to set permission correctly. 2006-06-06 01:30:25 +00:00
pymsgauth Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
qcheck
qgreylist pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
qmail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
qmail-conf Rename "SITES_* to "SITES.*" for file-specific lists of sites from which 2006-07-27 18:48:02 +00:00
qmail-lint Update package Makefile now that bsd.pkg.extract.mk is using the 2006-01-21 18:57:40 +00:00
qmail-qfilter Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
qmail-run Cosmetic only: 2007-02-08 09:04:48 +00:00
qmailanalog USE_TOOLS+=nroff 2005-11-01 19:40:13 +00:00
qmHandle Get rid of USE_PERL5. The new way to express needing the Perl executable 2005-07-16 01:19:06 +00:00
qmqtool Initial import of qmqtool, a qmail queue manipulation program geared 2007-01-18 06:35:24 +00:00
qpopper Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
qtools Whitespace. 2005-08-19 03:55:00 +00:00
queue-fix Use versioned tarball. 2005-10-12 09:53:55 +00:00
queue-repair This package is incompatible with mail/qmail, as it does not follow 2006-12-29 06:44:00 +00:00
rblcheck Forgot to remove that patch after rblcheck update; it is no longer 2006-09-13 05:13:29 +00:00
relay-ctrl Up too late last night. Dovecot's imap-login exports IP, so we can 2007-03-01 06:12:06 +00:00
ripmime Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
rmail-mime Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
rss2email Update to 2.60. From the changelog: 2007-01-19 00:57:03 +00:00
ruby-actionmailer Update ruby-actionmailer to 1.3.2. 2007-02-19 00:09:05 +00:00
ruby-tmail Sort PLIST. 2006-09-07 15:51:25 +00:00
safecat Update to 1.13. From the changelog: 2007-01-15 11:01:24 +00:00
sendmail Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
sendmail812 8.12.11nb5: 2006-10-12 21:05:25 +00:00
sendymail Import sendymail version 0.5.8. 2007-01-14 14:05:34 +00:00
serialmail leapsecs_read.c needs DJB errno cure. 2006-01-23 16:24:09 +00:00
sigrot Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
sma Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
smtpfeed Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
solid-pop3d Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
spamass-milter Update spamass-milter to 0.3.1, based on patch provided by Jaap Boender 2006-10-12 12:19:09 +00:00
spamassassin Updated to version 3.1.8. 2007-02-15 21:43:43 +00:00
spamd Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
spamprobe Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
squirrelmail Depend on the latest version. 2007-01-10 14:34:39 +00:00
squirrelmail-decode Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
squirrelmail-locales Updated mail/squirrelmail-locales to 1.4.9 (20070106). 2007-01-10 14:24:26 +00:00
sqwebmail Fix an obvious typo. PR#35081 by diro at nixsys dot bz. 2006-11-20 11:45:14 +00:00
ssmtp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sylpheed Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
sylpheed-claws Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
sylpheed-devel Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
sympa p5-File-Spec has gone (superseded by p5-PathTools), but the version in 2007-01-13 21:24:58 +00:00
teapop Needs perl. Bump revision. 2006-12-06 19:44:46 +00:00
thunderbird Fix build on DragonFly as RNG_RNGInit was calling itself due to bad 2007-03-07 22:02:25 +00:00
thunderbird-bin-nightly Use Makefile.common from seamonkey-bin-nightly dir instead of 2006-09-24 16:44:36 +00:00
thunderbird-gtk1 Dynamically generate the part of the PLIST for libfreebl. This is because 2007-03-07 21:32:53 +00:00
tmda Improve interface to tofmipd rc.d script, akin to that of qmail-run. 2007-02-27 00:18:46 +00:00
tnef Update to 1.4.3: 2006-11-18 21:08:17 +00:00
tnef2txt Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
turba Update to 2.1.2 2006-08-05 12:52:25 +00:00
up-imapproxy Fix install args (Problem noted by Jukka Salmi) 2006-05-10 12:25:09 +00:00
vm Use a common PLIST by taking advantage of the variables exported by 2006-04-05 15:50:27 +00:00
wl Remove elmo-shimbun, as it is not in the module list. Bump revision. 2007-02-22 20:26:45 +00:00
wmbiff Modular Xorg support. 2007-02-06 12:24:50 +00:00
wmmail Modular Xorg support. 2007-02-06 18:53:45 +00:00
xbuffy Modular Xorg support. 2007-02-06 18:30:26 +00:00
xfmail Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
xmailbox Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
xmailwatcher Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
yatsvrs Fix build on DragonFly 1.6+. 2006-09-22 18:58:59 +00:00
YoSucker Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Makefile enable p5-Mail-Serner and p5-Mail-Sender-Easy 2007-03-02 10:55:58 +00:00