Commit graph

7691 commits

Author SHA1 Message Date
taca
f45a78c0c6 Add support for net_getunixcred() to NetBSD before 5.0 which dosen't
have getpeereid(3); no LOCAL_PEEREID socket options.

Bump PKGREVISION.
2012-05-14 14:04:59 +00:00
abs
bf641c4cba Add back enigmail distinfo 2012-05-12 18:10:39 +00:00
ryoon
8fe21a85f6 Update to 12.0.1
Fix PR pkg/46427

Changelog:
* Fix various issues relating to new mail notifications and filtering
  on POP3 based accounts
* Fixes an occasional startup crash seen in TB 12.0
* Fixes an issue with corrrupted message bodies when using movemail
2012-05-11 08:20:35 +00:00
ghen
d214bf4fcf Update to Dovecot 2.1.6
* Session ID is now included by default in auth and login process log lines. It
  can be added to mail processes also by adding %{session} to mail_log_prefix.
+ Added ssl_require_crl setting, which specifies if CRL check must be successful
  when verifying client certificates.
+ Added mail_shared_explicit_inbox setting to specify if a shared INBOX should
  be accessible as "shared/$user" or "shared/$user/INBOX".
- v2.1.5: Using "~/" as mail_location or elsewhere failed to actually expand it
  to home directory.
- dbox: Fixed potential assert-crash when reading dbox files.
- trash plugin: Fixed behavior when quota is already over limit.
- mail_log plugin: Logging "copy" event didn't work.
- Proxying to backend server with SSL: Verifying server certificate name always
  failed, because it was compared to an IP address.
2012-05-10 13:25:37 +00:00
dholland
9a7f67d020 Build fixes for new glib2. 2012-05-10 07:28:16 +00:00
wiz
323b5ee327 Since p5-Crypt-OpenSSL-RSA versions before 0.27 are broken with
perl-5.14, and perl-5.14 is pkgsrc's default, depend on at least that
version. Bump PKGREVISION.
2012-05-09 06:21:39 +00:00
dholland
dadf6c182a Hack around misuse of fpos_t. Fix some code that assumed fpos_t is a
4-byte integer type. If this code ever worked on NetBSD, it was only
by accident. PKGREVISION++ for the fixes.
2012-05-07 19:21:57 +00:00
dholland
0bcdacfbcf Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)
It turns out there were a lot of these.
2012-05-07 01:53:12 +00:00
dholland
986743aa94 Build fix for new glib2. 2012-05-06 23:02:30 +00:00
dholland
270448a55c Fix build with new glib2. 2012-05-06 22:56:10 +00:00
dholland
536ab9239f Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)
caught by pkglint
2012-05-06 22:56:00 +00:00
dholland
8367b04899 Patch for building with the new glib2, from Dieter Roelants. 2012-05-06 16:48:34 +00:00
dholland
549921f319 Fix build with the new glib2. 2012-05-06 04:34:03 +00:00
dholland
c2c4983b74 Turn off G_DISABLE_DEPRECATED as well as GTK_DISABLE_DEPRECATED; part
of fixing the build with the new glib2.
2012-05-06 04:15:43 +00:00
ryoon
f9eba05f1a Add MASTER_SITE_MOZILLA_ESR, for Extended Support Release version of
mozilla.org products (firefox and thunderbird).
Suggested by obache on pkgsrc-changes@.
2012-05-04 00:08:07 +00:00
obache
bb4f796e32 Drop dependency on libXp (from Imake)
* libXp was used by Xaw8, but it had been obsolated, and in pkgsrc,
  x11/libXaw/buildlink3.mk had been switched to pick up Xaw7 by default.
* With x11/xorg-cf-files, libXp was offered with XawClientLibs,
  but updated to 1.0.4, it was removed.
* And pkgsrc had been switched to use always xorg-cf-files and imake from pkgsrc,
  so all platforms should not require libXp from libXaw with Imake.

Bump PKGREVISION.
2012-05-03 09:55:29 +00:00
ryoon
732049871e Update to 10.0.4
Patches from Bernd Ernesti on pkgsrc-users.

Changelog:
The following problems are fixed.
* Security fixes
* Using MAPI send with Thunderbird in offline mode will now work correctly
* Language packs will now work for all releases of an ESR branch
2012-04-29 20:36:30 +00:00
taca
2b5ef2b860 Update mail/ruby-actionmailer32 to 3.2.3.
## Rails 3.2.3 (unreleased) ##

*   Upgrade mail version to 2.4.3 *ML*
2012-04-29 13:03:17 +00:00
ryoon
6e38c36d70 Update to 12.0
Sync with thunderbird-12.0
2012-04-28 17:10:26 +00:00
ryoon
36c61d43ad Update to 12.0
* Remove unused option.
* Update enigmail to 1.4.1

Changelog:
* Global Search results now include message extracts in the results
* Various security fixes
* Various improvements to RSS feed subscription and general feed handling
* Thunderbird now supports add-ons that provide different types of
  local mail storage
2012-04-28 16:56:58 +00:00
taca
f7bcb1d5e4 Update postfix package to 2.8.10.
Major changes with Postfix 2.8.10
---------------------------------

This release adds support to turn off the TLSv1.1 and TLSv1.2
protocols.  Introduced with OpenSSL version 1.0.1, these are known
to cause inter-operability problems with for example hotmail.

The radical workaround is to temporarily turn off problematic
protocols globally:

/etc/postfix/main.cf:
    smtp_tls_protocols = !SSLv2, !TLSv1.1, !TLSv1.2
    smtp_tls_mandatory_protocols = !SSLv2, !TLSv1.1, !TLSv1.2

    smtpd_tls_protocols = !SSLv2, !TLSv1.1, !TLSv1.2
    smtpd_tls_mandatory_protocols = !SSLv2, !TLSv1.1, !TLSv1.2

However, it may be better to temporarily turn off problematic
protocols for broken sites only:

/etc/postfix/main.cf:
    smtp_tls_policy_maps = hash:/etc/postfix/tls_policy

/etc/postfix/tls_policy:
    example.com         may protocols=!SSLv2:!TLSv1.1:!TLSv1.2

Important:

- Note the use of ":" instead of comma or space. Also, note that
  there is NO space around the "=" in "protocols=".

- The smtp_tls_policy_maps lookup key must match the "next-hop"
  destination that is given to the Postfix SMTP client. If you
  override the next-hop destination with transport_maps, relayhost,
  sender_dependent_relayhost_maps, or otherwise, you need to specify
  the same destination for the smtp_tls_policy_maps lookup key.
2012-04-28 13:58:47 +00:00
obache
99dc9c311a Recursive bump from icu shlib major bumped to 49. 2012-04-27 12:31:32 +00:00
ghen
0655dbe06c Update to Dovecot 2.1.5
* IMAP: When neither the session nor the mailbox has modseq tracking enabled,
  return the mailbox as having NOMODSEQ in SELECT/EXAMINE reply. Old versions
  in this situation always simply returned HIGHESTMODSEQ as 1, which could have
  broken some clients.

+ dict file: Added optional fcntl/flock locking (default is dotlock)
+ fts-solr: doveadm fts rescan now resets indexes, which allows reindexing
  mails. (This isn't a full rescan implementation like fts-lucene has.)
+ doveadm expunge: Added -d parameter to delete mailbox if it's empty after
  expunging.
- IMAP: Several fixes related to mailbox listing in some configs
- director: A lot of fixes and performance improvements
- v2.1.4 didn't work without a mail home directory set
- mbox: Deleting a mailbox didn't delete its index files.
- pop3c: TOP command was sent incorrectly
- trash plugin didn't work properly
- LMTP: Don't add a duplicate Return-Path: header when proxying.
- listescape: Don't unescape namespace prefixes.
2012-04-23 17:43:15 +00:00
wiz
f45db6731b Update to 2.09:
version 2.09: Sat Feb 25 14:47:39 CET 2012

	Improvements:

	- remove dependency to Test::Pod by moving 99pod.t from t/
	  to xt/ as result of rt.cpan.org#69918 [Martin Mokrejs]
2012-04-22 10:57:24 +00:00
obache
840d50ae56 Update cyrus-imapd24 to 2.4.16.
Changes to the Cyrus IMAP Server since 2.4.15

      * Bug #3651 - 64 bit dirhash breaks existing systems. NOTE this
        includes a fix to the re-written rehash tool released with 2.4.15

Changes to the Cyrus IMAP Server since 2.4.14

      * Bug #3664, #3665 - Sieve filters don't work if mailbox contains
        dots
      * Bug #3651 - 64 bit dirhash breaks existing systems. NOTE - this
        includes a complete rewrite of tools/rehash, making it much simpler
        and more reliable. Check the usage statement
      * Bug #1228 - mailbox dumps need to dump quotaroots
      * Bug #3613 - CATENATE command returns BADURL
      * Bug #3627 - enabling improved_mboxlist_sort documentation mention
        subscription files
      * Bug #3661 - Memory leaks in sync_server, nntpd, popd
      * Bug #3621 - quota bug involving nested quota roots
      * Bug #3667 - FLAGS.SILENT needs to return new MODSEQ if QRESYNC
        enabled
2012-04-19 11:18:17 +00:00
wiz
39e07cdb98 Update to 2.02, provided by Uwe Klaus in PR 46025. Ok reed@ (maintainer)
Changes since 2.01 not found.

Package changes:
Enable S/MIME support per default.
Add patch for openssl in NetBSD-5.99*.
2012-04-18 20:50:21 +00:00
ryoon
91fb00ceaf Update to 6.5
* patches/patch-bin_cmew is merged to upstream.

Changelog:
Mew 6.5 stable release (2012/04/16)

Mew 6.5rc2 (2012/04/05)

* Checking libwrap for stunnel.
* Supporting stunnel 4.53.
	TAKANO Yuji <takachan>
* Disabling libwrap.
	ARAI Shun-ichi <hermes>

Mew 6.5rc1 (2012/03/28)

* Workaround of cmew for Ruby 1.9.
	Tatsuya Kinoshita <tats>
* mew-make-temp-name allows non-ASCII characters
	Yoshinari Nomura <nom>

Mew 6.4.50 (2012/03/07)

* Supporting stunnel 4.51.
	Seiji Ariga <ariga>
* Hilighting HTML produced by w3m.
* Fixing regex of mew-regex-ignore-scan-body-list.
	Tatsuya Kinoshita <tats>
* Fixing cmew bugs.
2012-04-16 17:00:28 +00:00
wiz
3249e0a82f Reset maintainer, developer has left the building 2012-04-15 22:00:58 +00:00
schmonz
3b347c607d Update to 4.26.0. From the changelog:
- switch to using BODY.PEEK in IMAP retrieval; I no longer see
  problems with this feature in my testing. If users experience
  incompatibility with any IMAP servers where 4.25.0 worked, please
  let me know.
2012-04-15 01:43:23 +00:00
schmonz
33d63f954a Merge patch-hier.c into patch-aa. Quell pkglint:
* Add comments for each patch (and move some comments from Makefile).
* Define LICENSE explicitly.
2012-04-15 00:20:49 +00:00
ghen
da2289893e Update to Dovecot 2.1.4.
+ Added mail_temp_scan_interval setting and changed its default value
  from 8 hours to 1 week.
+ Added pop3-migration plugin for easily doing a transparent IMAP+POP3
  migration to Dovecot: http://wiki2.dovecot.org/Migration/Dsync
+ doveadm user: Added -m parameter to show some of the mail settings.
- Proxying SSL connections crashed in v2.1.[23]
- fts-solr: Indexing mail bodies was broken.
- director: Several changes to significantly improve error handling
- doveadm import didn't import messages' flags
- mail_full_filesystem_access=yes was broken
- Make sure IMAP clients can't create directories when accessing
  nonexistent users' mailboxes via shared namespace.
- Dovecot auth clients authenticating via TCP socket could have failed
  with bogus "PID already in use" errors.
2012-04-10 12:12:21 +00:00
wiz
921f67a120 Grammar fix. 2012-04-08 21:28:17 +00:00
wiz
4773e0d7e2 All supported python versions in pkgsrc support eggs, so remove
${PLIST.eggfile} from PLISTs and support code from lang/python.
2012-04-08 20:21:41 +00:00
joerg
44de266fc0 Don't install cat pages. Bump revision. 2012-04-07 13:17:10 +00:00
tron
33623a0381 Add patch from Dovecot Mercury repository to fix crash this crash in
the IMAP server:

Panic: file mail-storage.c: line 628 (mailbox_alloc): assertion failed:
(uni_utf8_str_is_valid(vname))

Problem reported and fix tested by Thorsten Frueauf.
2012-04-06 15:56:26 +00:00
wiz
4362401cb1 Update to 2007f, requested by Harry Waddell on pkgsrc-users.
Set LICENSE while here.

imap-2007f fixes a couple bugs.
Fix for RFC 4959 Initial Client Response auth failures noted first by
  MacOSX Lion Mail users.
Adjust tcp_open.c:tcp_socket_open to make it a little more useful by adding
  a write file descriptor test to the select in the case that the open
  timeout is set.
In osdep/unix/env_unix.c:create_path there was a printf that should have
  been an sprintf. Doesn't matter on modern systems.
2012-04-05 10:41:54 +00:00
pettai
e34253b569 Fixes for PR pkg/45818 (#1 and #2) 2012-04-04 22:09:49 +00:00
ryoon
18128db2dd * Fix enigmail runtime error
** Add NetBSD and DragonFly uname etc.
* Readd enigmail distfile
2012-04-04 20:05:09 +00:00
wiz
fa6466b098 Remove duplicate part of man page. Bump PKGREVISION. 2012-04-04 14:27:41 +00:00
ryoon
f244e5e734 Fix enigmail runtime error.
Reported by Jan Danielsson on pkgsrc-users@, thank you.
* Add NetBSD and DragonFly uname etc.
2012-04-03 21:52:49 +00:00
ryoon
2900c09496 Fix build on FreeBSD 9.0.
* Patches are borrowed from deve/xulrunner
2012-04-01 20:53:43 +00:00
hans
0d148997c6 Restore fix needed to build this on SunOS. 2012-03-31 21:56:36 +00:00
taca
61af83fdfd More strict dependency to ruby-i18n_05.
Bump PKGREVISION.
2012-03-28 15:18:50 +00:00
dholland
a103fb99a5 add missing PAM bl3.mk 2012-03-27 21:46:51 +00:00
joerg
c5491d25c2 Don't install cat pages. Bump revision. 2012-03-26 14:04:00 +00:00
ryoon
28940dfb23 Readd enigmail distfile. 2012-03-24 04:29:53 +00:00
ryoon
c4ecdfc265 Fix build with gcc<4.5.
For example, fix build on DragonFly 3.0.1.
See https://bugzilla.mozilla.org/show_bug.cgi?id=621446
2012-03-23 19:35:05 +00:00
taca
6895b0face Bump PKGREVISION reflecting the default Ruby's version change. 2012-03-22 14:25:25 +00:00
taca
86240cb091 Update poppassd to 4.1.0.
Use the same distfile with qpopper 4.1.0.
2012-03-22 14:15:32 +00:00
taca
2dba4be9f6 Update qpopper to 4.1.0.
4.1

* IPv6 support
* Significantly improved performance
* Cygwin compatibility (for use under Windows)
* Ability to execute arbitrary programs when users log in
* And lots more
2012-03-22 14:13:28 +00:00