I installed RC from Fedora 9 and found problems making it work. From
apache error log I found this:
[Tue Mar 10 10:41:09 2009] [error] [client 192.168.0.5] MDB2 Error: not
supported (-6): setOption: [Error message: unknown option
disable_smart_seqname]\n
[Tue Mar 10 10:41:09 2009] [error] [client 192.168.0.5] PHP Notice:
setOption: [Error message: unknown option disable_smart_seqname]\n in
/usr/share/roundcubemail/program/include/bugs.inc on line 101
Checking the sources I found rcube_mdb2 in line 88:
if ($this->db_provider == 'pgsql') {
$db_options['disable_smart_seqname'] = true;
$db_options['seqname_format'] = '%s';
}
Commenting out the first option made it work. Any ideas on why?
_______________________________________________
List info: http://lists.roundcube.net/dev/
congratulation, and I just miss the last labels to translate
so here it is the updated label.inc, may be this one can included on
the current release
On Tue, Mar 10, 2009 at 9:40 PM, Thomas Bruederli <roundcube(a)gmail.com> wrote:
>
> 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/
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/bW/5wnfKj2M/labels.inc.bz2
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 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/
Chris Moules wrote:
> I think this might be related to something that we saw/fixed in our
> development tree. This was after merging plugin-api with trunk however.
>
> We noticed this when testing the plug-ins, noticeably the 'markasjunk'
> plug-in.
> - $rcmail->output->command('display_message',
> $this->gettext('reportedasjunk'), 'confirmation');
thx, this form works for me
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
Roundcube Webmail Project Developer http://roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/dev/
I'm working on simple password change plugin using plagin-api branch. It
adds Settings -> Password tab. For now I have only two issues (lack of
features):
1. not translated messages when using show_message()
$rcmail->output->show_message('passwordincorrect', 'error');
2. not working set_pagetitle()
$rcmail->output->set_pagetitle($this->gettext('changepasswd'));
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
Roundcube Webmail Project Developer http://roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I have been using RoundCube Webmail for about 6 months and like the
simplicity and ease of use. There is one thing missing, or at least I
can't find it, and that is the ability to set up a mailing list. For
example, I would like to add about 1/2 of my Address Book into a group
named Men. Then, when I wanted to email all the men in that group, I
simply select the group name "Men" and it will load all the addresses in
this
group.
Another option is to have 3 columns of check boxes to the left of the names
in the address book. Then I could scroll down and check the names to send
the group email too and they will all migrate into the email as Recipient,
CC or BCC.
Most email accounts have these types of options and since this is my work
email, it would help me to have these types of options available. Have you
considered adding them to RoundCube? Would it be possible to update
RoundCube to include these options?
Thank you in advance for your consideration.
--
Sincerely,
Marvin Peck
Certified Canine Training
and Behavior Specialist
APDT and IACP Member
Office 757-689-2126
Cell 757-270-4696
www.westlakekennels.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
On Tue, Feb 17, 2009 at 6:47 PM, Balazs Horvath
<balazs.horvath(a)weboor.net> wrote:
>
>
> till, 09.01.13 19:12:
>
> On Tue, Jan 13, 2009 at 7:00 PM, Balazs Horvath
> <balazs.horvath(a)weboor.net> wrote:
>
>
> 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
>
>
> I'd rather not. ;-)
>
> Do you know if you are using the fileinfo extension to "guess" the
> mimetype? Like, is it installed on your server (check in phpinfo()).
> Also, can you double-check the message source and let us know what the
> attachment is sent with?
>
> Till
>
>
>
> Thanks Till!
> It took quite long but I convinced the sysadmin to install fileinfo. This
> solved
> the problem. I think this info should be included in the INSTALL file just
> after
> - libiconv (recommended)
> - fileinfo (recommended)
>
> I double checked the message source and it was sent with "text/plain"
>
> Balazs
>
Balazs,
I'm glad it's working for you. I'm CC'ing the list, so others can use
this solution as well.
RE: libiconv -- it should be enabled in most PHP installs nowadays.
I'm gonna see about our installer and the docs. :-)
Thank you,
Till
_______________________________________________
List info: http://lists.roundcube.net/dev/
When will be realesed the new translations?, in the next roundcube
translation or the current one is repackaged?
Thank you.
El vie, 06-02-2009 a les 14:47 +0100, Mikel González escribió:
> When will be released the asturian translation?, in the next roundcube
> release or the current one it's repackaged with the new trasnlations?
>
> Thank you
>
>
> El vie, 06-02-2009 a les 13:42 +0100, Dangerous Piper escribió:
> > Hi, I have translated Roundcube into asturian (ISO code: ast) and here
> > you have.
> >
> > Could you add the asturian iso in /program/localization/index.inc
> >
> > For testing i simply added
> >
> > 'ast' => 'Asturianu',
> >
> > into $rcube_languages = array(
> >
> >
> > Thanks,
> > Mikel.
> >
> >
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi, I have translated Roundcube into asturian (ISO code: ast) and here
you have.
Could you add the asturian iso in /program/localization/index.inc
For testing i simply added
'ast' => 'Asturianu',
into $rcube_languages = array(
Thanks,
Mikel.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ke/UZVQPdL8/ast.tar.gz
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
I created two tickets with patches (well svn diffs to be exact):
* http://trac.roundcube.net/ticket/1485721 (feature request)
* http://trac.roundcube.net/ticket/1485720 (feature/bug fix)
Summaries are :
* allow to use NGINX as web proxy to multiple roundcube
installation, using per session/user balancing
* allow to use NGINX imap proxy with roundcube
I would be interested in seeing those changes incorporated in the svn
tree.
Please let me know if you have any queries.
Regards,
Thomas Mangin
Technical Director
--
Exa Networks Limited - http://www.exa-networks.co.uk/
Company No. 04922037 - VAT no. 829 1565 09
27-29 Mill Field Road, BD16 1PY, UK
Phone: +44 (0) 845 145 1234 - Fax: +44 (0) 1274 567646
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello everybody!
Can anyone make standalone file (seems... third file) to make
installator messages able translated?
It is not very comfortable to edit program files... :)
_______________________________________________
List info: http://lists.roundcube.net/dev/
I have 2 draft files (maildir file contents pasted below) that were
generated by roundcube 0.2 beta but will not display. In 0.2-beta the
contents flashes on the screen then disappears from the editor. In
0.2-stable and trunk it does not display at all.
if you look at the message source you can see that the html data appears
to be correct, but the plain text version just repeats the first line of
the message multiple times.
Also, the html version looks to be placing the entire message into the
sig block (div id="_rc_sig").
-----------------------------------------------------------------------
MIME-Version: 1.0
Date: Sun, 18 Jan 2009 21:59:25 -0800
From: name removed <foo(a)bar.com>
To: undisclosed-recipients:;
Subject: removed
Message-ID: <ccbb9979202b6626eb6cb19ca08f57cd@localhost>
X-Sender: foo(a)bar.com
User-Agent: SmarttNet Webmail/0.2-beta
Content-Type: multipart/alternative;
boundary="=_fffad799bbf2f57fa04f19df575da7d5"
--=_fffad799bbf2f57fa04f19df575da7d5
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="UTF-8"
Name Removed 13th, 14th worked 8:30-4:30 =7hrs
Name Removed 13th, 14th worked 8:30-4:30 =7hrs
Name Removed 13th, 14th worked 8:30-4:30 =7hrs
Name Removed 13th, 14th worked 8:30-4:30 =7hrs
--=_fffad799bbf2f57fa04f19df575da7d5
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="UTF-8"
<div id=3D"_rc_sig">
<pre>Name Removed 13th, 14th worked 8:30-4:30 =3D7hrs</pre>
<pre>Name2 Removed 14th worked 8:30-4:30 7hrs, 15th worked 8-4 7hrs.</p=
re>
<pre>Name3 Removed 13th,14th,15th Jan worked 9-5 7hrs</pre>
<pre>*****5 line sig block removed*****</pre>
</div>
--=_fffad799bbf2f57fa04f19df575da7d5--
-----------------------------------------------------------------------
MIME-Version: 1.0
Date: Sun, 18 Jan 2009 16:41:36 -0800
From: name removed <foo(a)foobar.com>
To: undisclosed-recipients:;
Subject: subject removed
Message-ID: <c515102eca30abdd88d1d6f19744791e@localhost>
X-Sender: foo(a)foobar.com
User-Agent: SmarttNet Webmail/0.2-beta
Content-Type: multipart/alternative;
boundary="=_32a9391f81ec3dbe950f2f159f9632b8"
--=_32a9391f81ec3dbe950f2f159f9632b8
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="UTF-8"
Hi Carol
Hi Carol
Hi Carol
Hi Carol
Hi Carol
Hi Carol
Hi Carol
--=_32a9391f81ec3dbe950f2f159f9632b8
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset="UTF-8"
<div id=3D"_rc_sig">
<pre>Hi Carol</pre>
<pre>These are the updates needed for last week please.</pre>
<pre>name2 removed, Thurs 15th Jan worked 6-2.</pre>
<pre>name3 removed, Thurs 15th Jan worked 8-4.</pre>
<pre>name4 removed, Thurs 15th Jan worked 10-6.</pre>
<pre>name5 removed, Tue 13th Jan worked 7 Hrs.</pre>
<pre>****5 line sig block removed*****</pre>
</div>
--=_32a9391f81ec3dbe950f2f159f9632b8--
--
Chris St Denis
Programmer
SmarttNet (www.smartt.com)
Ph: 604-473-9700 Ext. 200
-------------------------------------------
"Smart Internet Solutions For Businesses"
_______________________________________________
List info: http://lists.roundcube.net/dev/
hello dev team,
attached is the new Icelandic language file. Now 100% completed
regards,
Hakon Asgeirsson
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/tH/CmfW7tS/labels.inc
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 everyone,
I'm wondering if it's possible to have some sort of lookup facility
that can force the use a "mail" attribute and a "cn" attribute of an
LDAP tree, instead of letting a user fill in their own name and e-mail
address (and reply-to field). The reason for asking is the following:
We (a university) are planning to use Roundcube as the replacement
webmail client. In our current webmail solution (old version of IMP)
we can use hook functions to read the "mail" and "cn" attribute from
an LDAP tree and use that as the from address and name. Our students
are not able to change their from address and name in their identity
in IMP. We want to prevent our students from using names like "cutie",
"16 year old.." from their webmail interface. We also want to prevent
them from changing their from email address in case they think it
would be nice to send an email as if they were a teacher or so.
At the moment I have some sort of workaround to prevent the changing
of name and from e-mail address by introducing a new identities_level
in main.inc.php that disables the columns I specified in program/steps/
settings/edit_identity.inc. In this case, students are only allowed to
change what we allow them to change (signature for instance). It would
be nice however if we could have a similar "hook" function like IMP
has, so that if they choose to have their name to be changed in one
place (the LDAP tree), all connected services (including webmail)
would automatically change too.
Is there some sort of patch or functionality available that can
achieve that?
Thanks in advance,
Br.
Dennis
_______________________________________________
List info: http://lists.roundcube.net/dev/
I have RC, set up with postgre, and recently for some emails it started
to halt with something similar like the reasons in this ticket.
Before tinkering something out by myself, I would like to ask, what
could be the best solution to this, I mean in terms of programming. Or
maybe there's already a patch for this.
What I have tried is the brute force version, with utf8_encode and
utf8_decode on serialize functions, but it the problem still remains.
Best regards
--janis
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
Does disposition notification work for anyone in 0.2 stable or in trunk? It
worked for me before but now it no longer works and I'm looking for
confirmation before debugging.
No longer works == no question window when set to "ask user" in preferences.
Thanks,
--
Arkadiusz Miśkiewicz PLD/Linux Team
arekm / maven.pl http://ftp.pld-linux.org/
_______________________________________________
List info: http://lists.roundcube.net/dev/
On Fri, Jan 23, 2009 at 9:35 AM, narendra kothule
<narendra.kothule(a)gmail.com> wrote:
> Hello .
>
> I am developing site using joomla 1.5. want to use webmail service . i found
> Roundcube is good solution for webmail .
>
> Good to see that Roundcube component / extention for joomla 1.5 is under
> development.
> (http://www.joomlaplug.com/component/option,com_fireboard/Itemid,89/func,vie…)
>
> Could you please tell probably when this component will release. so that i
> can wait for.
Hello,
for starters, let me introduce you to what is called "netiquette".
It's plain unaccetable to spam multiple lists/emails with your
request. It's not just that the mailinglists are not supposed to be
about a Joomla component, it's also high up on my personal scale of
annoying things if I receive an email not once, but three times and
have to moderate another message. ;-)
Furthermore, we are not affiliate with this or any other Joomla
component, or JoomlaPlug, or Joomla in general. For an idea of what we
are, please check the following links:
http://roundcube.nethttp://en.wikipedia.org/wiki/RoundCube
You'll probably find out that RoundCube is also not "a webmail service
script", but a _simple_ mail client to read email from an IMAP
mailbox. Sort of like Apple Mail, Outlook/Entourage or Thunderbird.
Creating mailboxes and mail server administration is outside of our
scope.
Also, as you figured out already, JoomlaPlug has a forum to handle
support, etc., so please post there. :-)
Thank you,
Till
_______________________________________________
List info: http://lists.roundcube.net/dev/
hello,
I configured my roundcube with a ldap-server and autocomplete emails out of
this server. I will get only the first email of each contact but there are
multiple in some contacts. Can someone give me a hint (I have basic php
experience) how to edit autocomplete.inc to add this feature?
thanks
jay
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi, howdy.
There is an update (labels.inc) pt_PT Portuguese from Portugal.
(Attach file)
--
Nuno Costa
Criaçãoweb.NET - webdesign e aplicações web
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/wU/nUUMeTTC/labels.inc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
It is safe to assume that current trunk is to become a 0.2.1 release? Is
it safe to track the trunk on production server?
Are there any RC specific guidance for svn repository concerning branches?
--
Dennis
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi everybody
The second stable version of the RoundCube Webmail package completes
unfinished work from the 0.2-stable release. It comes up with about 80
bug fixes as well as some performance improvements. See
http://trac.roundcube.net/wiki/Changelog for details.
You can download the package from http://roundcube.net/downloads and
we recommend to update all existing installations of RoundCube.
The upgrading process now became very easy with the integrated update
script. It's runnable from the shell or from within the web-based
installer. Read the UPGRADING instructions for details.
Happy new year!
Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi, Im attaching a "new" (modified and completed) version of es_ES
lang, I renamed it to es_AR because i did some changes.
Bye!
PS: After I finished this, I discover the online translation tool...
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/5u/n9UR55hM/es_AR.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/
> Date: Tue, 13 Jan 2009 23:04:06 +0600
> From: Artur Smolkin <dev(a)roundcube.ru>
> Subject: [RCD] RoundCube Logo
> To: dev(a)lists.roundcube.net
> Message-ID: <496CC986.9050204(a)roundcube.ru>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> Hello everybody!
> Do anyone have RoundCube logo with white or transparent background?
>
Hi, the official logo has transparent background, found at the path;
skins/default/images/roundcube_logo.png
--
Gokdeniz Karadag
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello everybody!
Do anyone have RoundCube logo with white or transparent background?
--
Artur Smolkin
Manager of Russian RoundCube Webmail Project
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I have finished localizing the labels.inc and messages.inc files for bangla
( বাংলা ) language
please see the attached files
thanks
sincerely
Shah Chandon
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Wb/94q5UxRy/labels.inchttp://detached.gigo.com/rc/Wb/94q5UxRy/messages.inc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello
I suggest the addition of a Company field in the address book. It should be easy to do and add value to the software.
If needed, I can code that and send you a patch
Thanks
Jonathan Araújo
Administrador de Infraestrutura de TI
Gerência de TI - INDG S.A.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi devs,
We have been following this application for some time now and we like it a lot.
It would be nice to be able to retrieve alternate email addresses from LDAP to generate multiple identities instead of the current identities section.
Can this be implemented as this is what is holding us back to implement RC for our clients.
PS: We estimate to enable this application for some 60,000 email accounts as soon as this hurlde is resolved.
For that reason we want this extention to be a standard implementation in the application so it upgrades easily in the future.
Please give us some feedback on your views about this.
-----------------------
Wkr,
Dirk Rennen
KPN Belgium N.V.
Koningin Astridlaan 166
1780 Wemmel
Belgium
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I've been using RC for a while and there's really only 1 feature I really
miss. The ability for RC to learn email addresses when you send email.
Would anyone be interested if I were to develop a patch for this? I've not
yet looked at the code but I can't imagine it could possibly be too
horrific.
Cheers
Steve
_______________________________________________
List info: http://lists.roundcube.net/dev/
I was looking into the development guidelines File Naming conventions and I have a suggestion:
I should mention that certain extentions output plain text from standard browsers which can be easily fixed.
Secondly the fix open an opportunity to expand and clarify the intention of the files by adding the intention in front of the file
Screen output files: filename.php
Process files: filename.php => process/filename.php or process.filename.php (with filename same as calling or pulling filename so you know what it relates to)
Includeble script block: filename.inc => inc.filename.php
Includeble functions: filenmame.inc => fie.filename.php or lib.filename.php (personally prefer the first)
Includeble classes: filename.class.php => class.filename.php
That way output is always empty + you know what's in the file without opening it.
You basically can do the same for javascript:
Basic js file: filename.js
Included js file: filename.js.src => src.filename.js
You should also consider putting html comment tags around the javascript code (<!-code //-->) so it wont output if javascript is turned off.
To make sure javascript is turned on, you should consider disabling all process buttons and turning them on at runtime.
I haven't looked at the database conventions, but what I personally always do is the following:
SELECT field FROM Table WHERE otherfield LIKE 'value' LIMIT 0,1;
As you can see sql-specific parts are in uppercase, fields in lowercase and table in ucfirst. This way you can separate what they are by simply looking how it's written.
PS the LIMIT 0,1 (mysql) is a faster query then without, even when you know there can only be one value returned, as it stops looking after it's found one which it wont if the limit is not there.
Note that it's just a suggestion, which I've used myself for a few years now. Especially in complicated applications it's proven to be very useful to me as it reduces time when searching for the wright file, even after some time has passed working on the application.
-----------------------
Wkr,
Dirk Rennen
KPN Belgium N.V.
Koningin Astridlaan 166
1780 Wemmel
Belgium
_______________________________________________
List info: http://lists.roundcube.net/dev/
For most of plain text messages we have two FETCH commands now:
C: FH12 UID FETCH 4790 (UID RFC822.SIZE FLAGS INTERNALDATE BODYSTRUCTURE
BODY.PEEK[HEADER.FIELDS (DATE FROM TO SUBJECT REPLY-TO IN-REPLY-TO CC
BCC CONTENT-TRANSFER-ENCODING CONTENT-TYPE MESSAGE-ID REFERENCES
DISPOSITION-NOTIFICATION-TO X-PRIORITY)])
[08-Jan-2009 15:21:29 +0100]: C: ftch FETCH 640 (BODY.PEEK[1])
We can prefetch a small part of message body (first part) using
BODY.PEEK[1]<0.4096> in first FETCH. Then we should check if message is
realy a plain text and if body size (from BODYSTRUCTURE) is not bigger
than 4096 bytes. If so we can skip the second FETCH.
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
Roundcube Webmail Project Developer http://roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi! I have another great patch from my performance fixes set ;) I've
observed that when message is displayed (with disabled cache) we have:
1. FETCH for headers
2. FETCH for message (body) structure
3. one FETCH for each message/attachment part (it really sucks when
message contains several attachments)
4. FETCH for body
So, here's the patch which joins 1. and 2. into one command call and
joins all fetches from 3. into one command call. Speed up is significant
for all messages, specially for those having many attachments. Imagine a
message with ten attachments. Previously there was ca.10 + 3 fetches *
0.2 sec. (in my mailbox with ca.800 messages) = 2.6 sec. Now, only 3
fetches * 0.2 = 0.6 sec.
I'm posting this here, because it's too late to commit such changes (not
tested well) before 0.2-stable release. So, enjoy and test in your
environments.
ps. Thomas, maybe you can wait a few days and review this patch to
include in 0.2-stable? It would be nice.
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
Roundcube Webmail Developer http://roundcube.net
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Wr/HvaAQAVp/perf.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/
Hello everybody !
So ! 0.2 stable is here, I see 0.2.1 is planned for bug fixes, so 0.3 is
almost here, and in 0.3 plugin api is planned so.. when we will able to
begin to code a plugin (maybe with a different branch ? )? :]
Regards,
--
Maximilien Cuony [The_Glu]
http://theglu.org
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
Does any one know what was used to minimise the JS files in the 0.2stable
tarball? Also why the tarball is different from the 0.2stable branch/tag? I
generated some patches against 0.2stable from the SVN and then they don’t
work with the other version :/.
Thanks
Phil
_______________________________________________
List info: http://lists.roundcube.net/dev/
Thunderbird has a very cool feature called "Edit as new". What it does
is simple. It takes the message "as is" without quoting it like replying
or forwarding, so I can reuse my messages as templates and don't have to
painfully copy/paste the message every time I want to duplicate it. For
example: one of my customers has to send a password mail "by hand" to
his newly registered customers and uses an old send message as template
(changing the private data) using the "Edit as new" feature in
Thunderbird. When he is not at his computer he wants to send this
message using the webmailer (my RoundCube installation of course).
I already implemented this in my installation with minimal effort using
the forward command as template. I don't have a patch for the newest svn
trunk but can provide it if this is going to be implemented. I can
provide the patch and translation files for German. What I need is a
picture for the button that appears next to the forward button maybe on
of you has an idea?
Could you please add your thoughts about this?
Regards
Christian
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi Devs,
I was hoping someone would have the time to look at
http://trac.roundcube.net/ticket/1485634
It's a bug patch I posted a few weeks ago which details how turning on
skip deleted and caching at the same time can cause serious
misbehavior. It's been a real pain for us in our environment. I think
it's serious enough that, until its fixed, it at least warrants
something like a warning in the config file that those options are
incompatible.
Thanks.
Ziba
Webmaster Team
University of Michigan
_______________________________________________
List info: http://lists.roundcube.net/dev/