pkgsrc/mail
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
..
akonadi Update akonadi to 1.1.2 2009-05-06 11:08:17 +00:00
alpine include <time.h> and <utime.h> so that where time_t has been changed to 64-bit 2009-05-17 17:34:01 +00:00
anomy-sanitizer Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
archivemail Update to archivemail-0.7.2: 2008-12-17 17:18:15 +00:00
autorespond Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
avenger Update to 0.7.9. 2008-09-08 10:16:06 +00:00
balsa Use mk/omf-scrollkeeper.mk instead of textproc/rarian/omf.mk. 2009-03-08 15:56:43 +00:00
bbmail Correct email address for generic MAINTAINER. 2009-03-17 21:40:44 +00:00
bmf Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bogofilter Updated mail/bogofilter to 1.1.7 2008-10-15 12:15:40 +00:00
bulk_mailer Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
clamav Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
clamsmtp Activated LICENSE=... 2009-05-12 12:27:19 +00:00
claws-mail Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
claws-mail-archive Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-attachwarner Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-attremover Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-bogofilter Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-cachesaver Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-dillo-viewer Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-fetchinfo Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-gtkhtml Add dependency on html2ps to permit printing of html mail 2009-01-16 14:40:31 +00:00
claws-mail-mailmbox Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-newmail Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-notification Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-pgp Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-pgpcore Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
claws-mail-pgpinline Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-pgpmime Update to 3.6.1: 2008-10-15 16:22:02 +00:00
claws-mail-rssyl Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-smime S/Mime plugin in the main plugins since claws-mail-3.6. 2009-01-01 07:55:38 +00:00
claws-mail-spamassassin Update to 3.6.1: 2008-10-15 16:22:02 +00:00
claws-mail-spamreport Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-synce Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-tnef Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
claws-mail-trayicon Update to 3.6.1: 2008-10-15 16:22:02 +00:00
claws-mail-vcalendar Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
clawsker Updated claws-mail and all of its plug-ins to 3.7.0 2009-01-11 03:11:37 +00:00
columba Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
cone USE_NCURSESW is gone, use USE_NCURSES instead. 2008-02-27 08:25:17 +00:00
coolmail Reset maintainer on his request. 2008-01-19 09:16:17 +00:00
courier-analog Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
courier-imap Get rid of the "gnutls" and "ssl" options and replace with a 2008-02-21 15:50:29 +00:00
courier-maildir Update mail/courier-maildir to track code from courier-0.58.0. No 2008-02-19 18:45:18 +00:00
courier-mta Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
cucipop Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
cue Upadte cue to 20090209. 2009-02-15 07:07:23 +00:00
cyrus-imapd Fixes `-n' option handling for fetchnews(1). 2009-05-15 23:29:01 +00:00
cyrus-imapd21 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
dbmail Update DBMail to 2.2.10. 2008-05-06 01:49:20 +00:00
deliver Put back a couple of IRIX conditionals the way they used to behave, 2008-03-11 18:47:40 +00:00
demime update mirror. 2009-05-21 11:12:50 +00:00
distribute Reset maintainer for itojun's packages. 2007-11-17 13:40:15 +00:00
dk-milter Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
dkim-milter Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
dot-forward Uncomment some more LICENSE lines (all "public-domain"). 2009-05-19 09:07:13 +00:00
dovecot Update to Dovecot 1.1.15. 2009-05-20 08:07:38 +00:00
dovecot-sieve Update to Dovecot 1.1.1. Beta's and RC's have been tracked in pkgsrc-wip, 2008-06-22 17:41:23 +00:00
drac Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
dspam Fix install on platforms not using pax tar. Bump PKGREVISION. 2009-05-12 08:27:09 +00:00
elm Fix broken build (and some related problems) on 64-bit platforms. 2008-07-21 05:35:37 +00:00
elm-me Nuked 45 patches that were all doing the same mechanical transformation. 2008-01-05 19:21:00 +00:00
elmo Installs Perl script, so require perl. 2008-09-19 15:36:28 +00:00
enma Update enma to 1.1.0. 2009-04-09 02:25:37 +00:00
esmtp Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
etach Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
etpan Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
evolution Remove msgfmtstrip scripts and targets using them, now that the 2009-03-22 19:01:37 +00:00
evolution-data-server Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
evolution-exchange Update to 2.26: 2009-03-22 16:54:06 +00:00
evolution-sharp Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
exim Add PKG_DESTDIR_SUPPORT=destdir 2009-02-13 15:28:03 +00:00
exim-html Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
exim3 Make it easier to build and install packages "unprivileged", where 2007-07-04 20:54:31 +00:00
exmh Get rid of hostname -s in pkgsrc, on Solaris it sets the hostname to "-s". 2009-01-14 12:20:57 +00:00
ezmlm Uncomment some more LICENSE lines (all "public-domain"). 2009-05-19 09:07:13 +00:00
ezmlm-idx Uncomment some more LICENSE lines (all "public-domain"). 2009-05-19 09:07:13 +00:00
faces Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
fastforward Uncomment some more LICENSE lines (all "public-domain"). 2009-05-19 09:07:13 +00:00
fetchmail remove not working mirror. 2009-05-21 11:32:01 +00:00
fetchmailconf remove not working mirror. 2009-05-21 11:33:55 +00:00
fetchyahoo Fix DESTDIR. 2008-04-07 16:53:38 +00:00
fix-mime-charset Add DESTDIR support. 2008-06-12 02:14:13 +00:00
freepops Update to 0.2.8. From the changelog: 2008-11-02 20:51:40 +00:00
fromto Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
getmail Update to 4.9.0. From the changelog: 2009-04-07 04:39:44 +00:00
gld Add DESTDIR support. 2008-06-20 01:09:05 +00:00
gmime Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gmime24 Update to 2.4.4: 2009-03-22 20:35:16 +00:00
GNUMail Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
gnus Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
greetdelay update mirror. 2009-05-21 11:16:02 +00:00
grepmail Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
heirloom-mailx Import heirloom-mailx-12.4 as mail/heirloom-mailx. 2008-10-30 13:01:00 +00:00
hypermail
ifile 1.3.4 in old. 2008-03-17 11:25:15 +00:00
ifile-procmail Fix DESTDIR. 2008-04-07 17:14:20 +00:00
im Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
imap-uw Fix a problem where file modification times were being reset to 0 by 2009-05-17 16:03:08 +00:00
imap-uw-utils Bump the package revisions of all packages that depend on the 2008-11-13 14:21:04 +00:00
imapfilter Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
imapproxy Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
imapsync Updated mail/imapsync to 1.264, and adjusted to use p5-Mail-IMAPClient2 2008-09-08 22:25:13 +00:00
imp The major changes compared to IMP version H3 (4.3.3) are: 2009-04-13 22:25:25 +00:00
incm Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
ingo Update to 1.2.1 2008-10-12 12:04:50 +00:00
isync Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
ja-mh make MAKE_JOBS_SAFE to NO. 2008-11-10 05:06:45 +00:00
jchkmail Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
kbiff add DESTDIR support. 2009-02-11 21:11:21 +00:00
libesmtp Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libetpan Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libmilter Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libsieve Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libspf-alt Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
libspf2 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libsylph Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libytnef Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
mail-notification Use mk/omf-scrollkeeper.mk instead of textproc/rarian/omf.mk. 2009-03-08 15:56:43 +00:00
mailagent Replace NO_PACKAGE with NO_BIN_ON_* as it is about reuse on different 2009-04-09 00:44:53 +00:00
mailcrypt Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
maildrop + Update to latest courier-maildir dependency (0.58.0). 2008-02-19 18:45:28 +00:00
mailfront Update to 1.12, addressing PR pkg/34765. From the changelog: 2009-04-08 01:44:04 +00:00
mailgraph 1.13 is now in old. 2008-03-17 11:43:06 +00:00
mailman Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
mailscanner Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
mailserv Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
mailsync Bump the package revisions of all packages that depend on the 2008-11-13 14:21:04 +00:00
mailwrapper DESTDIR support. 2008-12-18 17:28:15 +00:00
mairix Mark as destdir ready. 2008-07-14 12:55:56 +00:00
majordomo Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
mb2md Added support for installation to DESTDIR. 2008-02-16 15:45:10 +00:00
mdfrm Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
mess822 Bring over leapsecs_read() fix to the included libtai, fixing the 2008-07-30 10:40:56 +00:00
metamail Add DESTDIR support and clean up, based on PR 38520. 2008-05-10 11:52:14 +00:00
mew Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
mhonarc
milter-greylist Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
milter-regex Update "milter-regex" package to version 1.7. Changes since 1.6: 2008-08-09 17:26:36 +00:00
mimedefang Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
mini_sendmail Add a few more sendmail compatibility command line flags (all ignored) - 2007-10-27 11:30:36 +00:00
mpop Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
msmtp Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
mush Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
mutt Fix indentation. 2008-05-25 20:49:39 +00:00
mutt-devel Enable sidebar patch support, as provided by tonnerre@. 2009-04-12 08:25:43 +00:00
netbiff Require GTK2, not GTK for gui. 2008-09-29 12:39:30 +00:00
newmail DESTDIR support. 2009-02-10 17:22:20 +00:00
newspipe Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
nmh Use INSTALLATION_DIRS. 2008-08-21 20:35:36 +00:00
nullmailer set permissions on the fifo when we make the fifo rather than using 2007-11-26 08:27:24 +00:00
oe2mbx DESTDIR support. 2009-02-16 18:21:24 +00:00
offlineimap Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
OSBF-lua Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
p5-Catalyst-View-Email Updated from version 0.11nb1 to 0.13. 2009-02-22 11:55:59 +00:00
p5-Email-Abstract Modify dependency to devel/p5-Module-Pluggable - the Module::Pluggable 2009-03-21 23:28:39 +00:00
p5-Email-Address Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-Date Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-Date-Format Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-Folder Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-FolderType Module::Pluggable is a core module since perl-5.10 -> Updating dependency 2009-04-24 08:17:24 +00:00
p5-Email-LocalDelivery Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-MessageID Removing pkgsrc dependency to sysutils/p5-Sys-Hostname-Long - the META.yml 2009-02-25 20:09:20 +00:00
p5-Email-MIME - updating dependency to Email::Simple as seen in modules META.yml 2009-02-25 19:59:13 +00:00
p5-Email-MIME-Attachment-Stripper Upstream changes: 2009-02-25 20:02:31 +00:00
p5-Email-MIME-ContentType Updated from version 1.014nb1 to 1.015. 2009-02-22 12:01:58 +00:00
p5-Email-MIME-Creator PkgSrc changes: 2009-04-30 20:38:12 +00:00
p5-Email-MIME-Encodings PkgSrc changes: 2009-04-18 21:40:41 +00:00
p5-Email-MIME-Modifier PkgSrc changes: 2009-04-30 20:43:57 +00:00
p5-Email-Reply Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-Send Modify dependency to devel/p5-Module-Pluggable - the Module::Pluggable 2009-03-21 23:28:39 +00:00
p5-Email-Sender PkgSrc changes: 2009-04-12 12:46:05 +00:00
p5-Email-Simple 2.005 2009-01-22 2009-02-10 14:48:04 +00:00
p5-Email-Simple-Creator Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Email-Stuff PkgSrc changes: 2009-04-12 20:41:18 +00:00
p5-Email-Valid PkgSrc changes: 2009-04-12 20:48:08 +00:00
p5-Email-Valid-Loose Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-GMail-IMAPD Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-IMAP-Admin Updated from version 1.6.4nb1 to 1.6.6. 2008-11-17 23:08:42 +00:00
p5-IMAP-Client Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Audit Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Box Modify dependencies to perl-modules which are deployed with the perl-core, 2009-04-24 17:15:21 +00:00
p5-Mail-ClamAV PkgSrc changes: 2009-05-01 09:03:24 +00:00
p5-Mail-DKIM Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Ezmlm Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-IMAPClient pkgsrc changes: 2009-05-21 18:14:39 +00:00
p5-Mail-IMAPClient2 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-ListDetector Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Mbox-MessageParser Make this package work with Perl 5.9+ 2009-04-02 18:10:39 +00:00
p5-Mail-Milter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Sender Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Sender-Easy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Sendmail Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-SPF-Query Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-SRS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Mail-Webmail-Gmail Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MailTools Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MIME-Charset Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MIME-EncWords Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MIME-Lite Update from version 3.023nb1 to 3.024. 2009-02-22 12:31:13 +00:00
p5-MIME-Lite-HTML Update from version 1.22nb1 to 1.23. 2008-11-17 23:27:42 +00:00
p5-MIME-tools Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MIME-Types pkgsrc changes: 2009-02-25 22:18:59 +00:00
p5-Net-LMTP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Net-ManageSieve Import p5-Net-ManageSieve-0.06 as mail/p5-Net-ManageSieve. 2008-10-31 11:33:35 +00:00
p5-Net-SMTP_auth Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-razor-agents Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Sendmail-AccessDB Update to 0.09: 2009-02-22 20:37:09 +00:00
p5-Sendmail-PMilter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-URI-imap Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-User-Identity Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
Pantomime Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
pear-Auth_SASL Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pear-Mail Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pear-Mail_Mime Add DESTDIR support. 2008-06-12 02:14:13 +00:00
perdition Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
perdition-bdb Bump PKGREVISION for db4 shlib name change (4.6 -> 4.7). 2008-09-07 11:24:27 +00:00
perdition-gdbm Add DESTDIR support. 2008-06-12 02:14:13 +00:00
perdition-ldap Add DESTDIR support. 2008-06-12 02:14:13 +00:00
perdition-mysql Add DESTDIR support. 2008-06-12 02:14:13 +00:00
perdition-odbc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
perdition-postgresql Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pfqueue Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
php-imap Fix memory leak and pullup bug fix for http://bugs.php.net/bug.php?id=46918 2009-02-25 08:59:47 +00:00
pine Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
pine-pgp-filters Requires gpg. Bump revision. 2008-10-02 18:31:13 +00:00
policyd Solaris/SunPro fixes. 2008-03-03 11:45:17 +00:00
policyd-weight Maintainer update from PR pkg/38349, containing security fixes. 2008-03-31 20:50:11 +00:00
popa3d Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
poppassd Add DESTDIR support. 2008-06-12 02:14:13 +00:00
poppy Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
postfix Updated mail/postfix to 2.6.1 2009-05-20 07:46:09 +00:00
postfix-current Updated mail/postfix-current to 2.7.20090519 2009-05-20 07:45:40 +00:00
postgrey Recursive PKGREVISION/ABI-depends bump for db4 4.6->4.7 update (shlib 2008-09-06 20:54:31 +00:00
prayer Bump the package revisions of all packages that depend on the 2008-11-13 14:21:04 +00:00
procmail Support PKGMANDIR. 2008-03-16 22:05:01 +00:00
proxsmtp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pulsar Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-libgmail Add DESTDIR support. 2008-06-20 01:09:05 +00:00
pymsgauth Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
qcheck Update MASTER_SITES. 2008-04-18 04:02:58 +00:00
qgreylist Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
qmail Uncomment some more LICENSE lines (all "public-domain"). 2009-05-19 09:07:13 +00:00
qmail-conf
qmail-lint Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
qmail-qfilter
qmail-run Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
qmailanalog
qmHandle Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
qmqtool Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
qpopper Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
qtools
queue-fix Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
queue-repair Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
rblcheck Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
relay-ctrl
ripmime
rmail-mime Correct email address for generic MAINTAINER. 2009-03-17 21:40:44 +00:00
roundcube Remove deplicate DOM DEPENDS, pointed out by obache@ 2009-03-20 10:50:02 +00:00
rss2email Update to 2.65. From the changelog: 2009-04-07 04:41:18 +00:00
ruby-actionmailer Update rails packages to 2.3.1. 2009-04-07 17:13:26 +00:00
ruby-mailfactory Update ruby-mailfactory package to 1.4.0. 2008-09-15 15:41:53 +00:00
ruby-mime-types Initial import of ruby18-mime-types-1.15 as mail/ruby-mime-types. 2008-04-04 15:19:40 +00:00
ruby-tmail Update ruby-tmail pacakge to 1.2.3.1. 2008-06-22 16:09:32 +00:00
safecat Added support for installation to DESTDIR, similar to the way RPM 2008-02-16 15:21:40 +00:00
sendmail Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
sendmail813 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
sendymail Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
serialmail Bring over leapsecs_read() fix to the included libtai, probably 2008-07-30 10:54:10 +00:00
sigrot Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
sma Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
smtpfeed Update MASTER_SITES and HOMEPAGE. 2008-03-17 11:37:41 +00:00
solid-pop3d Convert to use the options framework. 2007-09-07 22:07:31 +00:00
spamass-milter Add DESTDIR support. 2008-06-20 01:09:05 +00:00
spamassassin Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
spamd Switch to mk/pf.buildlink3.mk. 2008-06-26 20:59:51 +00:00
spamdyke Update to 4.0.10. From the changelog: 2008-12-25 16:43:35 +00:00
spamprobe Fix typo, spotted by Chris Ross. 2007-10-25 21:45:42 +00:00
sqlgrey Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
squirrelmail Enable squirrelmail-japanese option with Japanese patch: 2009-05-15 13:01:00 +00:00
squirrelmail-decode Activated LICENSE=... 2009-05-12 12:27:19 +00:00
squirrelmail-locales Activated LICENSE=... 2009-05-12 12:27:19 +00:00
sqwebmail + Add full DESTDIR support. 2008-02-19 18:45:32 +00:00
ssmtp Fix DESTDIR support. 2009-02-07 23:21:05 +00:00
sylpheed Add PREV_PKGPATH and/or SUPERSEDES for various packages that 2009-05-02 16:21:43 +00:00
sympa Update sympa to 5.4.4. Bug fixes (including SQL injestion and privilege 2008-12-20 19:02:12 +00:00
t-prot Fix DESTDIR. 2008-04-07 18:08:18 +00:00
teapop Fix building with ldap option enabled 2007-12-22 21:13:46 +00:00
thunderbird Don't try to link against libc_r on DragonFly. 2009-05-02 07:51:02 +00:00
thunderbird-bin-nightly Update versions of nightly binaries (older ones are unavailable on master site). 2009-01-04 18:48:47 +00:00
thunderbird-gtk1 Update thunderbird and thunderbird-gtk1 to 2.0.0.21. 2009-03-19 15:08:58 +00:00
tmda Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
tnef Add DESTDIR support. 2008-06-20 01:09:05 +00:00
tnef2txt Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
turba Update to 2.3.1 2008-12-15 23:19:35 +00:00
up-imapproxy Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
vm Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
wl Fixes two issuses: 2008-11-29 02:55:41 +00:00
wmbiff Revert accidental changes and replace "OWNER" by "MAINTAINER" again. 2008-05-25 20:45:28 +00:00
wmmail Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xbiff Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
xbuffy Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
xfmail Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
xmailbox Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
xmailwatcher Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
YoSucker Mechanical changes to add DESTDIR support to packages that install 2008-03-04 17:57:17 +00:00
Makefile Enable evolution-sharp again now the dependency problem is fixed. 2009-04-12 13:17:03 +00:00