I would like to write a plugin that enables the user to specify an external
SMTP server for every identity. But there are some questions I got.
I startet and used the identity_form hook to inject the additional form
elements, but how am I supposed to get the values that were entered by the
user? identity_update and identity_create do not provide the additional
data to my plugin. And of course the data is not saved automatically.
Second question: When I get the data, how is a plugin supposed to save
data? Do I save the data with:
rcmail::get_instance()->user->save_prefs(array('key' => $value));
or is there a way to save the data right where the identity is saved?
I hope you can help me developing this plugin.
Old thread: http://lists.roundcube.net/mail-archive/dev/2008-02/0000032.html
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
I updated and completed with love the french translation of labels.inc.
Thanks for your work falks, its just great!
Baptiste Darthenay
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/v9/qyrmCHOc/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/
BT/aba52c80
Hi,
I'm implementing _reminders_ into my calendar plugin.
I'd like to ask if someone could please help to convert
to following MySQL-Script for Postgres and/or SQLite.
Thanks in advance!
Regards,
R.
_________________________________________________________
CREATE TABLE `reminders` (
`reminder_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL,
`events` int(10) unsigned NOT NULL,
`cache` int(10) unsigned NOT NULL,
`caldav` int(10) unsigned NOT NULL,
`type` text,
`props` text,
`runtime` int(11) NOT NULL,
PRIMARY KEY (`reminder_id`),
CONSTRAINT `reminders_ibfk_1` FOREIGN KEY (`user_id`)
REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci;
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
I was just updating the localisation files for en_GB, I was using a diff
tool to make sure I got text changes as well as new text. The spacing in the
en_US files is not the same as that in other files (generated by the
translator). Having diff ignore whitespace is easy but extra blank lines and
lines with comments in the en_US files cause a lot of noise. I have made the
format of the en_US files match those created by the translator and attached
them as well as the updated en_GB.
Phil
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/yn/y3rJNpcf/en_US.ziphttp://detached.gigo.com/rc/yn/y3rJNpcf/en_GB.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi!
This is the latvian (lv_LV) translation update to 100% for labels,
messages and also for managesieve and message_highlight plugins.
Greetings,
--
KASPARS TENTERS
Vidzemes University of Applied Sciences
http://www.va.lv
Vidzemes Augstskola, Cesu - 4, Valmiera, LV - 4201
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Fk/fErZZEYp/roundcube.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/
BT/aba52c80
Dear list members
I wrote a custom login screen witch is grabbing the login cookies from
the RC login screen an this cookies are sent back to the client with a
redirect.
So far in RC 0.5.3 I had no problem in logging in with this method,
despite the introduction of the security tokens.
In the current beta version 0.6 it seams that the cookies are changed on
every request during login. Is this correct?
I could narrow down my issue to the file
'./program/include/rcube_session.php' (Line 575), but I don't completely
understand the code at this position.
A advise would be nice.
Regards
Dominic
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Dear developers,
Is it possible to use a separate filter for searching members of LDAP
contact group in Roundcube-0.6-beta? I'm not so clear how to achieve this
after reading comment in main.inc.php.dist.
Currently, my LDAP structure looks like below:
- All groups are placed under ou=Groups,dc=xxx. e.g. mail=group01(a)domain.ltd
,ou=Groups,dc=xxx.
- Group members are placed under ou=Users,dc=xxx, e.g.
mail=user01(a)domain.ltd,ou=Users,dc=xxx, with attribute
'memberOfGroup=group01(a)domain.ltd' to identify group membership.
How can i list members of contact group in Roundcube Address Book? Maybe add
'filter_members' in "groups => array();" like below:
'groups' => array(
'filter_members' => '(memberOfGroup=%u)',
...
),
Thanks for your great work, and looking forward to your reply.
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Dear Roundcube lovers
We're proud to announce the next major release of the Roundcube
webmail package: 0.6 is out now as beta.
And it's packed with new features, some of them have been awaited for
long time. So what's new?
* A full-featured address book with rich contact information
The address book UI was finally extended to store rich contact data
including photos. We worked hard to create a flexible and intuitive UI
to enter and manage the contact data. Along with that, import and
export of vcards was improved to support all the new fields. If you
have LDAP directories configured as address sources, you might review
the configuration and map the new contact fields to the according LDAP
attributes using the 'fieldmap' property.
* Group support for LDAP address books
While speaking of LDAP, the LDAP wrapper of Roundcube now also
supports address groups thanks to the contribution of Andreas Dick.
This requires some additional configuration which is described in the
comments of config/main.inc.php.dist
* ACL rights/namespace management plugin
The new package includes a plugin which extends the folder manager to
manage Access Control Lists according to RFC4314 and RFC2086. This
allows one to share folders with other users if the IMAP server
supports ACL. If there's a LDAP directory configured, the ACL manager
even does auto-completion when adding a new user.
* memcache support for session storage
As an alternative to the SQL-based storage of user sessions, Roundcube
0.6 is now capable of using memcache for fast and redundant storage of
session data. Set 'session_storage' and 'memcache_hosts' config
options to enable it.
* File uploads with progress display
Using the features of the APC module, Roundcube can now display the
progress of file uploads. This has to be enabled in config using the
'upload_progress' option. Make sure APC is available in PHP and that
apc.rfc1867 is set in php.ini
* Automated update process with database schema check
Upgrading Roundcube installations has become an easy task with the new
update shell script. Unpack the new package in some directory and then
run bin/installto.sh <TARGETDIR> from there. TARGETDIR is the location
of the Roundcube installation which you want to upgrade. The script
then copies all files to the target directory and does all
modifications necessary to get the database and config files
up-to-date.
* Exchange logo by config
And last but not least, one can now set a customized logo by config
without the necessity to create a new skin. We'd like to encourage all
hosting providers to set the 'skin_logo' config option with an URL to
their logo. This will hopefully clarify to your users, what service
they're actually using. We registered an increased amount of support
requests from users who don't understand that Roundcube is not a
public service but that they have to contact their ISP for help.
Of course there are also many improvements under the hood to make
Roundcube faster, more stable and more secure.
So go forth and install Roundcube 0.6 beta on your servers [1]. We
recommend to test it on a separate environment and report bugs to our
bug tracking system [2]. An improved and stabilized version will
follow soon.
A little note for skin developers: the new address book also brings
the following new template objects which need to be placed in the HTML
templates: contactphoto, contacthead, contactedithead,
photouploadform. Have a look at the default skin templates to get
inspiration for the placement and styling.
Many thanks to all who use and improve Roundcube every day!
Best regards,
Thomas
[1] http://roundcube.net/download
[2] http://trac.roundcube.net/
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Attached (an then probably detached).
Ciao,
luigi
- --
/
+--[Luigi Rosa]--
\
A plan depends as much upon execution as it does upon concepts.
--Frank Herbert, "Dune"
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk5MuR4ACgkQ3kWu7Tfl6ZT+aQCgicwsAjnwCcDpUZ1uw8N/y/kE
tVsAn16Ju4v81N8m9Pa2oYvMHzjV4Dhy
=oj8Y
-----END PGP SIGNATURE-----
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/RD/9FgqK3u+/labels.inchttp://detached.gigo.com/rc/RD/9FgqK3u+/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/
BT/aba52c80
Hi,
I’ve attached updated Swedish localizations of labels.inc and messages.inc.
Regards,
Jonas Nasholm
Bitfuse Network
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/VE/EAnTMpgp/sv_SE.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello Roundcube users
We just published a new release which fixes a recently reported XSS
vulnerability as an update to the stable 0.5 branch. Please update
your installations with this new version or patch them with the fix
which is also published in the downloads section or our
sourceforge.net page [1].
And stay tuned, 0.6-beta is on the way with lots of new features ;-)
~Thomas
[1] https://sourceforge.net/projects/roundcubemail/files/roundcubemail/0.5.4/
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
hi!
i have two things i would like to do with the login form:
(1) i would like to display "E-Mail" instead of username. our username
is the full email address - so it is easier to directly ask for that :)
the only way i found to achieve this was to modify the
.program/include/rcube_template.php, line 1101
> $table->add('title', html::label('rcmloginuser', Q(rcube_label('mail'))));
(2) i would like to add some information below the login box.
of course, this is easily achieved by updating my specific skin.
i was now thinking if either of these modifications - especially (1) -
might be of interest to a wider audience and could be made configurable?
cheers,
raoul
ps. you an see the result at https://secure.ipax.at/webmail.new/
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello,
I am new to this forum and am working on creating a plugin.
Now I am looking for information or a sample to the next in my plugin to be applied.
The plugin comes in 'setting' and has two windows.
- In the left panel, the three sub components of the plugin
- In the right pane should fill the window of the left pane selected item.
Another question is whether it is possible to configure on a easy way to use parts of a configfile of another program (the same building as the rc config file) to read.
example
$CONF['database_type'] = 'mysql';
$CONF['database_host'] = 'localhost';
Regards,
Jan Kruis
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Attached
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/tG/2ufeKmN0/roundcube-ar.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Ciao,
luigi
- --
/
+--[Luigi Rosa]--
\
Only wimps use tape backup: _real_ men just upload their important
stuff on ftp, and let the rest of the world mirror it.
--Linus Torvalds on linux-kernel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk4qxWsACgkQ3kWu7Tfl6ZQUNACdHnIuIUP9J/a+Ci161hny6lqj
fkkAoMOEO3Xs+U+1TA4qF04KpanTTdXW
=TmtH
-----END PGP SIGNATURE-----
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/KW/YJytNNPV/messages.inchttp://detached.gigo.com/rc/KW/YJytNNPV/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/
BT/aba52c80
Hi
I've just update the missing lines in portuguese brazilian translation.
Thanks
Robson F. Ramaldes
!DSPAM:4e2ac22162603538221248!
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/xm/WGB7S6lf/labels.inchttp://detached.gigo.com/rc/xm/WGB7S6lf/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/
BT/aba52c80
Hi,
we're in process of migrating from RC v0.4.2 to v0.5.3 and we've noticed a significant change in caching behaviour.
Ib v0.4.2 Roundcube cached headers for messages that were requested by the user, either single messages or messages that appeared in the mailbox view. So if I had page size set to 40, the first time I login Roundcube would cache 40 message headers.
Roundcube 0.5.3 caches the whole inbox. We have around 200,000 email customers, that's hundreds of millions messages and storing that in DB is pretty pointless.
I'm wondering, what is the reason behind changing the caching behaviour so drastically. Is it configurable? Does it improve searching, navigation performance or something else?
Thanks,
Vlad
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi Devs and Listlurkers,
I have started to implement a new feature.
Now it is possible to associate a event category with a CalDAV server:
Preferences -> Calendar -> Categories -> Radio Button
The snapshot is here:
http://mail4us.net/dev/plugins/calendar.zip
Regard it as a proof of concept.
Serveral things are missing:
(*)
The GUI has to be improved. It is not visible for a user
whether a category is successfully linked to a CalDAV or not,...
(*)
The plugin should check if CalDAV credentials are valid for they are
saved ...
I really appreciate your input. Please test it!
There were some security concerns regarding password saving.
If there is a (validity check later) placeholder for the
password (%p -> session password or %gp -> google account password
[requires google_contacts plugin] the placeholder and not the real
password is saved.
Please post your problems, suggestions or whatever at my issue tracker:
http://code.google.com/p/myroundcube/issues/detail?id=227
Regards,
R.
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi all,
I have updated the dutch translation and fixed one wrong translation
(credits go to Cor Bosman as he pointed that error)
BR,
Mark Moses
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/qI/qy6Cu8tg/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/
BT/aba52c80
Hi list,
I've been investigating all morning a weird mailbox crash in roundcube.
Symptoms: a user contacts me because he/she can't open a folder in the
webmail. The webmail hangs and finally crashes. On the server, I see a
php5-cgi process using 99% of cpu. I use spawn-fcgi with nginx so
killing the crazy process solves the issue, but it reappears if the user
click on the folder again.
I had the problems twice already, and it's always caused by a weirdly
formatted message. Today's message is here: http://pastebin.com/3kKRPvQR
It's difficult to track down, but I eventually figured out that the
imap debug log would stop on the guilty message. Removing it, and
reconstructing the mailbox (in cyrus-imap) fixes the issue.
I'm wondering if this issue is roundcube related, or a problem with
php, the content encoding or maybe the weather (!). The system is
running on Debian Squeeze with roundcube 0.5.2
Your advice are most welcome.
Cheers,
Julien
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Dear List,
Please don't use this translation. The current Hungarian translator team
(Barnabas BONA <bsi(a)hosember.hu>, Imre Gergely <gimre(a)narancs.net> and
myself) is in the process of reviewing a new Hungarian translation, we are
in the final stages after testing.
I will get back to you with the final translation for inclusion.
Sandor, I'm happy that another translator joined our group, I will also
include you in the discussion and the process!
Best regards,
ikkhares
2011/6/2 Gyányi Sándor <gyanyi.sandor(a)webgame.hu>
> Hi,
>
>
>
> I’ve completed translation of the program/localization/hu_HU.
>
> The attached files are made with the translation tool.
>
>
>
> Best regards,
>
> Sandor
>
>
> *Detachments* -The following attachments have been detached and are
> available for viewing.
>
> - http://detached.gigo.com/rc/rH/dAj+r3zS/hu_HU.zip
>
> Only click these links if you trust the sender, as well as this message.
>
>
> _______________________________________________
> List info: http://lists.roundcube.net/dev/
> BT/dc962605
>
>
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello,
I'm not much experienced in database queries.
I see that rcube_mdb2.php has no wrapper for REGEXP queries.
So, please, can anyone give advice if the following query
is cross-database (MySQL [ok], Postgres, SQLite, MSSQL)?
SELECT *
FROM events WHERE summary
REGEXP 'Word2*.Word1'
Thanks in advance and kind regards,
R.
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
The question to plugin authors. How do you use 'abort' flag and what do
you think about it?
See rcube_plugin_api::exec_hook(). I'm not sure that 'abort' flag should
break the loop. I think it was designed to prevent only default action.
Imagine two plugins that are executing some actions when folder is
updated. If first plugin will set abort=true, the second plugin will be
prevented from any actions. I think the second plugin should decide if
it wants to do anything not the API.
--
Aleksander 'A.L.E.C' Machniak
LAN Management System Developer [http://lms.org.pl]
Roundcube Webmail Developer [http://roundcube.net]
---------------------------------------------------
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello,
I have created a script to fix messagelist table header.
http://www.roundcubeforum.net/5-release-support/14-release-discussion/8599-…
The code can be inserted in template mail.html before closing body tag
or used by a plugin (hook render_page).
It works with recent versions of:
* IE
* FF
* Chrome
* Opera
There are issues with Safari. A fixed table header is slightly
misplaced for some reason. I was not able to find a solution yet
(Safari
is locked out yet).
It has been not test tested with Konquerer/Netscape/Android; I don't
use these browsers.
Please review the code. I appreciate any feedback. Maybe someone is
able to solve the Safari issue.
Please focus on comments "ToDo" aswell. These comments mark hard coded
stuff which should be replaced to make the script skinable.
Thanks for contributions in advance! Please notice, I'm not the most
skilled
Javascript/Jquery coder!
R.
--- Schnipp ----
{{{
<script>
$(document).ready(function(){
function fixTHEAD(){
// always remove the dummy row first
$('#messagelist_empty_row').remove();
var last_row = $('#messagelist > tbody > tr:last').position().top;
// check if messagelist has vertical scrollbar
if(last_row < ($('#messagelistcontainer').height() -
$('#messagelist > tbody > tr:first').height())){
//No scrollbar, so we can unfix thead
$('#messagelist thead tr').css('position','');
return;
}
// add a dummy row because first row gets hidden when we fix thead
$('<tr
id="messagelist_empty_row"><td> </td></tr>').insertBefore('#messagelist
> tbody > tr:first');
// add missing min-width style to threads column to getter a
proper
table rendering
// when thead is fixed
$('#messagelist tbody tr td').each(function(){
var elem = $(this);
if(elem.attr('class') == 'threads'){
elem.attr('style','min-width: 17px');
}
});
// unfix thead to get default column widths
$('#messagelist thead tr').css('position','');
// read default column widths
var width = new Array();
var i = -1;
var w = 0;
var subject_col;
var rightwidth = $('#mailrightcontainer').width();
$('#messagelist thead tr td').each(function(){
var elem = $(this);
i++;
// remember where subject column is located
if(elem.attr('class') == 'subject'){
subject_col = i;
}
width[i] = elem.width();
w = w + width[i];
});
// adjust the subject column width if there is not enough space
for
default column widths
// ToDo: is it detectable?
var scrollbar_width = 17;
// ToDo: is the left space of 40px detectable?
var space = rightwidth - w - (40 + scrollbar_width);
if(space < 0 && subject_col){
width[subject_col] = Math.max(width[subject_col] + space, 150);
}
// now fix thead and adjust column widths
$('#messagelist thead tr').css('position','fixed');
i = -1;
$('#messagelist thead tr td').each(function(){
var elem = $(this);
i++;
elem.width(width[i]);
});
}
// lock out safari
if(!bw.safari){
// add border-spacing style for IE to avoid unwanted spaces in
fixed thead
$('#messagelist').attr('style', 'border-spacing:0');
// remove the fixed table layout style
$('#messagelist').css('table-layout','auto');
rcmail.addEventListener('listupdate', function(evt) {
fixTHEAD();
// adjust messagelist table if the container is resized
$('#mailrightcontainer').resize(function(){
fixTHEAD();
});
// adjust messagelist table if row is inserted and there were no
scrollbars before
rcmail.addEventListener('insertrow', function(evt) {
fixTHEAD();
});
});
}
});
</script>
}}}
--- Schnapp ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/8d1870bd
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi everyone,
Today I propose you 4 small patches which I needed for a client. I
generated them with git which explains the numbers in the patches names.
These four patches do the following :
- Add of a french translation for a preference setting (default addressbook)
- Add of a user's preference to be able to display a contact's lastname
before his firstname in autocompletion when composing an email.
- Small bug fix where a contact with an empty email was displayed at
autocompletion
- Add of a user's preference to be able to sort contacts on their
lastname in emails autocompletion
Have a good day.
Vincent BOURDEIX
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/8S/gqbypSSE/0006-Modification-to.patchhttp://detached.gigo.com/rc/8S/gqbypSSE/0002-Add-of-a-transl.patchhttp://detached.gigo.com/rc/8S/gqbypSSE/0004-Add-setting-to-.patchhttp://detached.gigo.com/rc/8S/gqbypSSE/0005-Modification-to.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/
BT/aba52c80
Hi,
I would really love to have a PGP plugin for roundcube.
Did - since 2009 - anything happen that isn't listed here:
http://trac.roundcube.net/wiki/PluginRepository/Encryption ?
What can I do to encourage you to continue this project? ;)
We want to start a webmail service here in germany, that makes PGP
usable for everyone via web-browser.
The only webmailer I found until now is squirrelmail - but I'd love to
set up roundcube instead for this project.
I know PHP, but didn't develop anything for roundcube yet.
Would be cool if we could continue the Encryption Plugin :)
Best regards!
--
morphium - morphium(a)jabber.ccc.de - 113332157
http://identi.ca/morphium - http://twitter.com/morphium86
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello!
Sending an updated slovene translation.
Cheers,
Barbara
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/R4/6eDpsRMd/sl_SI.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
Changes to the set_row_attribs function for tables in r4853 mean that the
add_row function always has to be called first if you want to set attributes
on the first row of a table. Setting attributes on subsequent rows is
unchanged. For example, before r4853:
$table = new html_table(array('cols' => 1));
$table->set_row_attribs(array('id' => 'rcmrow1'));
$table->add(null, 'first row');
Would have given the first row an id of rcmrow1. But now you have to do:
$table = new html_table(array('cols' => 1));
$table->add_row();
$table->set_row_attribs(array('id' => 'rcmrow1'));
$table->add(null, 'first row');
I am not sure if this is an intended change or a bug. Does anyone know?
Phil
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Aj/CwmppUrn/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/
BT/aba52c80
Hi,
I've update the Simplified Chinese localization program/localization/zh_CN
the former $labels['fromknownsenders'] has false translation to 'from unknown senders' back in english.
see attach.
Best regards,
waiting@CCF
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/GR/ZwVwK0uc/zh_CN.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Attached
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Ua/93Nxsj9C/roundcube-ar.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
$rcmail_config['referer_check'] = true;
makes address book fails, still happy with the update, keep the good
work
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello.
I've finished the localization of Spanish (Spain) files. The are in
the attachment.
Goodbye.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/q5/e6RkeVVu/es_ES.zip
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hello everybody,
I'm Vincent BOURDEIX, and I'm a member of the OBM project core-team.
Since we started a few weeks ago using roundcube as a webmail, we're
going to do some contributions in the near future to match our
customer's needs. I'm currently working on the ticket
http://trac.roundcube.net/ticket/1486782 which is about displaying the
priority info in the list of messages. I didn't quite finished to write
the patch, that's why I didn't join it to the Trac ticket yet.
I've already added the priority column on my local installation which
retrieves the information correctly (from the headers) but now I'm
facing a little problem : I would like to be able to sort my messages on
the priority column, but IMAP doesn't seem to be able to do that since I
get this error message : "SORT: Invalid Sort criterion priority". Now
what I think you can help me with is, what is the best way to "manually"
sort the messages list, given the way roundcube is organized ?
Thanks in advance,
Vincent BOURDEIX
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi again,
The problem is in the subject, so I trimmed the email to it's minimal size
removing all privacy concerned fields, still being able to trigger the error.
The email is attached. I'd be grate if you could suggest me a workaround
to silence this error.
Mirko
Return-Path: <removed(a)for.privacy.com>
Received: (qmail 14808 invoked by uid 89); 28 Dec 2010 12:00:42 +0100
Received: from unknown (HELO smtpout038D.attiva.biz) (88.44.63.38)
by lynn with SMTP; 28 Dec 2010 12:00:41 +0100
Received: from FBCMFE02B28.fbc.local ([192.168.31.8]) by smtpout038D.attiva.biz with Microsoft SMTPSVC(6.0.3790.3959);
Tue, 28 Dec 2010 12:00:35 +0100
Received: from SENDHOST ([94.95.250.3]) by FBCMFE02B28.fbc.local with Microsoft SMTPSVC(6.0.3790.3959);
Tue, 28 Dec 2010 12:00:31 +0100
Return-Receipt-To: "REMOVED" <removed(a)for.privacy.com>
From: "REMOVED" <removed(a)for.privacy.com>
To: <removed(a)for.privacy.com>
Subject: =?gb2312?B?TnVvdmUgZGlzcG9zaXppb25pIHJlbGF0aXZlIGFsbGUgdmVuZGl0ZQ==?=
=?gb2312?B?IHN0cmFvcmRpbmFyaWUsIHB1YmJsaWNpdOAgc3VpIHByZXp6aSBlIA==?=
=?gb2312?B?b3JkaW5hbnphIG9yYXJpIGFubm8gMjAxMSBwZXIgaWwgQ29tdW5lIA==?=
=?gb2312?B?ZGkgRG9sbw==?=
Date: Tue, 28 Dec 2010 11:59:17 +0100
Message-ID: <!~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAUx1fnaybYkSebB5VqRox88KAAAAQAAAACNIAje8VNUaAhxBR0mcHNQEAAAAA(a)comune.dolo.ve.it>
MIME-Version: 1.0
Content-Type: multipart/related;
boundary="----=_NextPart_000_0000_01CBA686.AE337EF0"
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook, Build 10.0.6626
Importance: Normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138
Return-Path: removed(a)for.privacy.com
X-OriginalArrivalTime: 28 Dec 2010 11:00:31.0695 (UTC) FILETIME=[71E27DF0:01CBA67E]
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi folks,
today it is possible to configure multiple IMAP servers for retrieving
mails.
It would be great to support even multiple SMTP servers according to
the IMAP servers fpr sending mails.
It should be possible to set one SMTP server to each IMAP server.
The problem for now is, that if you do not have an own SMTP server you
cannot send mail for external mail domains than the current SMTP server
is configured for.
Hope you understand my problem.
Have a nice day ;)
Christian
--
/*
http://blog.m3d1c5.orghttp://twitter.com/m3d1c5
*/
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80