View | Details | Raw Unified | Return to bug 149635
Collapse All | Expand All

(-)mail/roundcube/Makefile (-2 / +2 lines)
Lines 6-15 Link Here
6
#
6
#
7
7
8
PORTNAME=	roundcube
8
PORTNAME=	roundcube
9
DISTVERSION=	0.4-beta
9
DISTVERSION=	0.4
10
PORTEPOCH=	1
10
PORTEPOCH=	1
11
CATEGORIES?=	mail www
11
CATEGORIES?=	mail www
12
MASTER_SITES=	SF/${PORTNAME}mail/${PORTNAME}mail-beta/${DISTVERSION}
12
MASTER_SITES=	SF/${PORTNAME}mail/${PORTNAME}mail/${DISTVERSION}
13
DISTNAME=	${PORTNAME}mail-${DISTVERSION}
13
DISTNAME=	${PORTNAME}mail-${DISTVERSION}
14
14
15
MAINTAINER?=	ale@FreeBSD.org
15
MAINTAINER?=	ale@FreeBSD.org
(-)mail/roundcube/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (roundcubemail-0.4-beta.tar.gz) = ccbae69017c6d0056b12536e5adc52cd
1
MD5 (roundcubemail-0.4.tar.gz) = 6e5d2313087ce1e1209eb0f4fd71beab
2
SHA256 (roundcubemail-0.4-beta.tar.gz) = cf9cbaccd09cb164e85a889d929f07fe37b7d5d10a3cad021e0d9ffb5b728941
2
SHA256 (roundcubemail-0.4.tar.gz) = 1da2a57f0fa866cabc179d01c2a29c80dcf6108d45e415210129ef90ff8b2c1c
3
SIZE (roundcubemail-0.4-beta.tar.gz) = 2033675
3
SIZE (roundcubemail-0.4.tar.gz) = 2159645
(-)mail/roundcube/files/patch-config_main.inc.php.dist (-13 lines)
Lines 1-13 Link Here
1
--- config/main.inc.php.dist.orig	2008-04-26 00:18:03.000000000 +0200
2
+++ config/main.inc.php.dist	2008-04-26 00:19:22.000000000 +0200
3
@@ -188,8 +188,8 @@
4
 // requires to be compiled with Open SSL support
5
 $rcmail_config['enable_spellcheck'] = TRUE;
6
 
7
-// For a locally installed Nox Spell Server, please specify the URI to call it.
8
-// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
9
+// For a locally installed spellcheker, specify the URI to call it, for example:
10
+// 'http://' . $_SERVER['HTTP_HOST'] . '/spellchecker.php?lang='
11
 // Leave empty to use the Google spell checking service, what means
12
 // that the message content will be sent to Google in order to check spelling
13
 $rcmail_config['spellcheck_uri'] = '';
(-)mail/roundcube/files/patch-program_include_iniset.php (-10 lines)
Lines 1-10 Link Here
1
--- program/include/iniset.php.orig	2010-04-26 15:54:45.000000000 +0200
2
+++ program/include/iniset.php	2010-04-26 15:54:53.000000000 +0200
3
@@ -25,7 +25,6 @@
4
 // an error/warning in the logs later. See (#1486307).
5
 $crit_opts = array(
6
     'mbstring.func_overload' => 0,
7
-    'suhosin.session.encrypt' => 0,
8
     'session.auto_start' => 0,
9
     'file_uploads' => 1,
10
 );
(-)mail/roundcube/files/patch-program_include_rcube_message.php (-11 lines)
Lines 1-11 Link Here
1
--- program/include/rcube_message.php.orig	2009-08-27 10:08:27.000000000 +0200
2
+++ program/include/rcube_message.php	2009-09-07 17:47:43.000000000 +0200
3
@@ -384,7 +384,7 @@
4
 
5
         // part is a file/attachment
6
         else if (preg_match('/^(inline|attach)/', $mail_part->disposition) ||
7
-                 $mail_part->headers['content-id'] || (empty($mail_part->disposition) && $mail_part->filename)) {
8
+                 $mail_part->headers['content-id'] || $mail_part->filename) {
9
 
10
           // skip apple resource forks
11
           if ($message_ctype_secondary == 'appledouble' && $secondary_type == 'applefile')

Return to bug 149635