Hi folks
This service update includes more than 40 bug fixes together with some
security improvements. We also added TNEF support to decode those
proprietary MS Outlook attachments (winmail.dat) and tuned the performance
when displaying a message. Some translations have been updated since the
0.2-stable relase and are also included in the package.
This release is considered stable and we recommend to upgrade all existing
installations to this version. Download it from
http://roundcube.net/downloads and read the UPGRADING instructions.
We kindly request all packagers to update their distributions with this new
version. As usual, a pure GPL version is available here:
https://sourceforge.net/project/showfiles.php?group_id=139281&package_id=23…
Unfortunately there are still some translations waiting to be completed.
See http://translator.roundcube.net for the current completeness status and
feel free to translate the missing labels and messages. Please send the
updated files (packed in an archive) to our developers mailing list.
Cheers!
Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I got this error in roundcube-0.2-stable:
----
PHP Warning: openlog() expects parameter 3 to be long, string given in
/var/www/roundcubemail-0.2-stable/program/include/rcmail.php on line 89
----
My config:
----
# File: config/main.inc.php
$rcmail_config['log_driver'] = "syslog";
$rcmail_config['syslog_id'] = "roundcube";
$rcmail_config['syslog_facility'] = "LOG_USER";
----
# File: /etc/syslog.conf
user.* -/var/log/roundcube.log
----
How can i solve it?
--
Best regards.
Zhang Huangbin
- Open Source Mail Server Solution for RHEL/CentOS 5.x:
http://code.google.com/p/iredmail/
_______________________________________________
List info: http://lists.roundcube.net/dev/
I just started using RoundCube a number of days ago, and so far I quite
like it. I'm in the process of ditching Gmail, which I like in many ways,
but I'm done with Google and putting all my eggs in one basket. Anyway, I
much prefer the text buttons of Gmail to the image-buttons that are in the
default theme of RoundCube. To that end I started a custom theme. I'm
still new to the code, so it's possible I've committed some heinous errors
with respect to RoundCube code conventions and flow, but what I have seems
to work. I post it here just in case anyone else might be interested.
Here's a screenshot:
https://natha.nkinka.de/downloads/roundcube/roundcube_npk_theme.png
The "Refresh" link is a blatant ripoff from Google Mail, but I kind of like
it. The "Archive" button requires that you have a folder named "archives,"
but that is easy to change (see below). I moved the message selection
links to the top, below the button bar, where I expect to find them. I'm
also using the newly introduced threading patches by Chris January:
http://www.atomice.com/blog/?p=33. The threading is really nice and Chris
has done a great job, but there is still work to be done.
Here is a tar-gzipped archive of this theme:
https://natha.nkinka.de/downloads/roundcube/npk_roundcube_theme-20090306.ta…
Outside of unpacking that file and putting the directory in ./skins/, the
only other change necessary is the patch at the end of this mail. If you
want to archive your mail to a folder other than "archives," edit line 96
of ./skins/npk/templates/mail.html.
Thanks for RoundCube. I look forward to using it and contributing where I
can!
Saludos,
Nathan
diff --git a/roundcubemail/program/localization/en_US/labels.inc
b/roundcubemail/program/loca
index fbed1e9..29e2620 100644
--- a/roundcubemail/program/localization/en_US/labels.inc
+++ b/roundcubemail/program/localization/en_US/labels.inc
@@ -170,6 +170,15 @@ $labels['resetsearch'] = 'Reset search';
$labels['openinextwin'] = 'Open in new window';
+// button bar labels for npk theme
+$labels['buttonbararchive'] = 'Archive';
+$labels['buttonbarcompose'] = 'Compose';
+$labels['buttonbarmark'] = 'Mark';
+$labels['buttonbarreply'] = 'Reply';
+$labels['buttonbarreplyall'] = 'Reply to all';
+$labels['buttonbarforward'] = 'Forward';
+$labels['archivemessage'] = 'Move to archives folder';
+
// message compose
$labels['compose'] = 'Compose a message';
$labels['savemessage'] = 'Save this draft';
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi Roundcube Plugin API Devs,
I wanted to float a concept out there for feedback: Core plugins.
Hopefully I haven't missed a discussion about it elsewhere.
A core plugin would be a plugin which is required for roundcube to
function or must at least be replaced by a non-core plugin which serves
the same function. This is something Drupal has implemented with (in my
opinion) great success.
I believe there would be several benefits to implementing some core,
required elements of roundcube using the plugin api:
* The plugin api is assured to become potent and robust as it's heavily
depended on
* There almost no learning gap between developing/maintaining a plugin
and a core feature.
* This would eliminate the need for code which reads:
"check for a plugin to do this, otherwise do it the regular way"
* The non-plugin code base becomes smaller and more focused
I'm not proposing there be a concerted effort to re-factor everything as
plugins but making some core plugins could open doors.
In a test branch we plugin-ized a few core things and liked what we saw:
IMAP Caching:
We replaced all the imap caching calls with plugin hook calls. Then it
was easy to implement memcache caching instead of sql caching.
Temporary File Handling:
We replaced all the read/write attachments to disk calls with plugin
calls and wrote two plugins: Filesystem, to handle attachments just as
before and Database to handle attachments in a multi-server friendly
way. Memcache would be another option.
Contacts:
We added a few hooks, re-factored rcube_contacts.php and rcube_ldap.php
into plugins, and then made a horde contacts plugin.
What do you all think?
Thanks,
Ziba
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
here is a mini-patch. This is to the devel-api branch.
Internet Explorer is quite noisy if you have the developer extensions and try to use this branch.
A question to this. Is it preferred to post patches to the trac or the dev-list?
Regards
Chris
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/jr/qT59RpPB/01-fix_IE_6-7.patch
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
today I met this problem:
Content-Transfer-Encoding: base64
Content-Type: text/plain; charset="UTF-8";
name*="UTF-8''Rendel%C3%A9sek da Vincire legfrissebb.xls";
Content-Disposition: attachment;
filename*="UTF-8''Rendel%C3%A9sek da Vincire legfrissebb.xls";
Do you know about this one?
There was a conversation about MIME problems around september.
Thomas Bruederli mentioned switching to SwiftMail in this conversation,
and also earlier when there were problems about SMTP handling.
Do you plan to switch to SwiftMail or did anybody take a deep look into it?
Bye,
Balazs
_______________________________________________
List info: http://lists.roundcube.net/dev/
I try to use database-attachment-backend from
http://trac.roundcube.net/ticket/1485231, It's very useful patch,
please include this patch in develop trunk
I test it about 2 month, It's OK and useful with load balance.
--
Sincerely,
Nantharat Puwarang
Sansez [at] Gmail [dot] com
LPIC-1 : Linux Professional Institute Certified
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
Iam looking for a Developer that can help our company to integrate
RoundCube to work with our CRM, we do not have a problem to link back to
the project or pay for it,
The areas tu integrate are:
1) User Autentication
2) From an Email a Case, Opportunity, Lead or Task can be created from
the email.
The CRM is in PHP/MySQL.
Thanks for the reply,
--
--------------------------
Moises D. Vega
ELCONIX INC.
<Integrando Su Negocio>
mvega(a)elconix.com
+507 202-6981
+507 66731192
Aplicaciones de Negocios
www.elconix.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hey guys,
I'm not sure if this is the best way to provide this option, but I run a
server with a broken TLS, and Roundcube doesn't give a disable option.
The attached patch implements this on .2-stable.
It's possible misbehaving TLS could also be the cause of Ticket
#1485659 . I had gotten the same error initially.
Rick
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/DD/ShH5vZj1/tls.patch
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Sorry for the delay, been busy lately :D
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/db/XCM7F5Sx/mk-MK.rar
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/