Dear folks,
I want to share my thoughts about the folder name abbreviation in the
folder list. I am new out here, so bear with me.
I really dislike the abbreviation of folder names. I also don't understand
why abbreviation is necessary. I can understand the abbreviation if the
folder list has a fixed width. But since you can move the splitter at your
convenience to show more of the folder names, I don't see why the folder
names are abbreviated. Could it be a remnant of the past?
If I understand the information from http://trac.roundcube.net/ correctly
the abbreviation was added as early as changeset 38 in October 2005. The
vertical splitter seems to be added with changeset 1766 in September 2008.
Doesn't the vertical splitter make abbreviation unnecessary?
1) I suggest to remove the abbreviation of folder names in the folder
list. At least make it optional for people who really dislike it (like me).
Looking at the tracker site I noticed some things I want to share also.
2) Changeset 1792 increased the maximum length of folder names in the
folder list from 16 to 25. But only for "Message mode" (when an e-mail was
opened)! When you go back to the message list you will see the folder names
get shortened! It seems like it was forgotten to change the maximum length
in skins\default\templates\mail.html also.
3) The abbreviation routine "abbreviate_string" seems to be added as early
as changeset 37. The used algorithm has not changed since then but it is
totally bogus! The function does not shorten the string in the exact middle
and the function makes the string two characters longer than the allowed
maximum length!
The algorithm would only work if the place holder for the removed part is
only one character. I suggest to change the function into something like
this (untested!):
function abbreviate_string($str, $maxlength, $place_holder='...')
{
$length = mb_strlen($str);
if ($length > $maxlength)
{
$place_holder_length = mb_strlen($place_holder);
$first_part_length = floor(($maxlength - $place_holder_length) / 2);
$second_starting_location = $length - $maxlength + $first_part_length
+ $place_holder_length;
$str = mb_substr($str, 0, $first_part_length) . $place_holder .
mb_substr($str, $second_starting_location);
}
return $str;
}
I also wonder if the place holder "..." is a candidate for localization.
Thanks for your attention.
White
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all, I searched the tickets but didn't see this anywhere so I thought I bring it up.
Using RC 0.3.1 and Google Chrome 4.0.249.43 there are a couple display bugs I've noticed.
1. When first loading the login screen the gray background doesn't paint the entire widow. But if I adjust the window size, it seems to correct itself.
2. In the compose view (and reply/forward), the main text area for the body of the email doesn't extend to the bottom of the window, as it would in other browsers.
I know, not huge defects, but given that Chrome now has stepped up to third place in the browser wars (bypassing Safari for the first time) I figured it would be worth looking into.
I'm attaching screenshots for both of these.
// Andres.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Hx/ke4YtPdX/chrome_compose.jpghttp://detached.gigo.com/rc/Hx/ke4YtPdX/chrome_login.jpg
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,
I remember seeing an issue on the list for a problem with downloading attachments on RC 0.3.1 with IE7 over HTTPS. The problem doesn't occur when using HTTP. Safari and Firefox have no issues. I've searched the list (with and without google) but can't seem to find any matches on RC 0.3.1 and IE7 with attachments over HTTPS.
Can someone please point me to the right direction?
Thanks in advance,
Br,
Dennis
_______________________________________________
List info: http://lists.roundcube.net/dev/
hi, please add this new georgian files
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/9e/qJQghoMy/ka_GE.7z
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'm sending a slovene translation of labels.inc and messages.inc again.
I've made 2 typos in the string names.
Please commit the corrections.
Thanks,
Barbara
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ch/kB7we3vf/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/
Hello all of you
If you login to RC with the same email adress, but with an other
Servername, RC creates a new user. That means, you'll lose your settings
and your contact information and the other informations, that are
related to a user (cache, pluginsettings). The database also stores some
redundant datas. I'm wondering if there a reason, why the it makes sense
to create multiple account for the same emailadresse. I don't see the
advantage.
If the name of the email server changes, your account settings are gone.
At the moment there is no way to map this accounts. And the user don't
understand the diffence if the entered mail.mydomain.com or mydomain.com
and afterwards his contact are gone.
Thanks
Dominic Lüchinger
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi there
I'd like to get some facts and figures about how and where you people use
Roundcube and what number of users access their mails via Roundcube. We
already have a list of hosters who offer
http://trac.roundcube.net/wiki/RoundCube but this might not be complete and
it lacks any numbers.
We often get requests about this topic and I'd like to give some proven
answers about the power of Roundcube when used in large-scale environments.
So please post some details about how you use Roundcube including:
- Number of users (max)
- Average of concurrent users
- Number of hosts serving Roundcube
- Database backend software
- IMAP backend software
- Other webmail software which is offered as alternative
Please also note if you would be willing to share your experience about the
integration of Roundcube in your environment with people who ask us for help.
Thanks a lot!
Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
This mailing list (hosted at gigo.com) will see delays Dec 22 through Dec
23, as gigo.com goes through a hardware upgrade. During this time posts to
lists may be delayed by as much as 24 hours. My intent is to keep this down
to a few hours or less.
The administrators of the mailing lists have my contact info. End users may
check the status of the server by visiting http://status.gigo.com .
-Jason Fesler
postmaster@ various domains, including the list you're reading this on.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
from what I understood, there is not much interest in supporting the
configuration of an SMTP server as part of an identity in roundcube.
That's perfectly fine thanks to the plugin system, which can make use of
the smtp_connect hook. But to use it, this hook needs to tell the plugin
what the current identity is, e.g. by passing $from. This approach is a)
sort of obvious and b) has been shown to work here
<http://nixbioinf.org/cgit/cgit.cgi/roundcubemail-0.3.1_multismtp/>.
Attached patch (wrt the trunk) does just that. It simply introduces an
optional argument to connect; it's a stripped down version of above
patch, moving as much as possible into a future (trivial) plugin.
The patch might also fix a general problem where an smtp object exists,
but because smtp_init() was called with $connect == false there is no
SMTP connection. I know roundcube doesn't do it, but it's theoretically
possible - so it should either test for the smtp object being connected
or remove the $connect parameter from smtp_init() altogether.
Please don't take that patch as is - I did not test it at all, it's a
mere suggestion to sketch a possible implementation. I obviously expect
no acknowledgment for it :-)
Cheers, Axel.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Ht/Z9BeoZc3/connect_alias.diff
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
The more I use RC the more I like it...
When the message has an rfc/822 attachment, the only option is to
"download" the message and then see it as a text document, or use some
other program. I really dont care much one way or another, but for some,
not being able to see this message could be seen as a problem.
Could this message be retrieved and shown in a new window?
Could the user be presented with options to see and download?
I have not gotten into the guts (yet) to see how this could be
implemented, but since we already download a message and "display" it to
the user, I don't think this could be much of a problem.
--
Jorge
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
Updated Croatian translation is attached.
Best regards,
Svebor Prstačić
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Sj/TDpahJxO/lang.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/
I have been using the latest version and have the following comments:
1.- There should be a toggle-preview button. Going back and forth to the
settings page to toggle the checkbox is just annoying.
2.- The selection boxes which are currently at the bottom of the message
window should probably be at the top in order to reduce the distance one
has to drag the mouse between selecting all and using one of the top
buttons to perform an action.
Browsing through the code,
#1 can be as simple as adding a button to the "messagetoolbar", the nice
image I leave to the image gurus...
#2 can be done by placing the <div id="listcontrols"> inside the <div
id="messagetoolbar">
--
Jorge
_______________________________________________
List info: http://lists.roundcube.net/dev/
hello all
i want to share some modifications i made to roundcube code in order to
get quota work .. i made this because i manage a computer with apache
(only) and other with smtp and imap (only) and i want the user may be
able to see his/her quota
i saw in the code (thanks to Roland Liebl for show me the file) that
quota are retrieved via imap .. i don't have quotas via imap but in
filesystem and my scenario is a little complex .. well, this changes
modify some configuration variables and part of the code to process the
quota
[config/main.inc.php]
$rcmail_config['quota'] = array(
'backend' => 'cmd',
'program' => '/usr/bin/ssh
-i /usr/local/www/apache22/data/sitios/roundcubemail031/config/ssh_reporte reporte(a)madara.ipigto.rimed.cu /usr/bin/quota',
'program_parameters' => '-f /srv -v',
'zero_as_unlimited' => TRUE);
[program/steps/mail/func.inc]
function rcmail_quota_content($quota=NULL, $attrib=NULL)
{
global $CONFIG, $IMAP, $COMM_PATH, $RCMAIL;
$display = isset($_SESSION['quota_display']) ? $_SESSION['quota_display'] : '';
$quota = array(
'total' => 0,
'used' => 0,
'percent' => 0,
);
switch ($CONFIG['quota']['backend']) {
case 'imap':
if (empty($quota)) {
if (!$IMAP->get_capability('QUOTA'))
return rcube_label('unknown');
else
$quota = $IMAP->get_quota();
}
break;
case 'cmd':
$user = split("@", $RCMAIL->user->get_username());
exec($CONFIG['quota']['program'] ." ". $CONFIG['quota']['program_parameters'] ." ". $user[0], $result);
list($quota_fs, $quota['used'], $quota_sl, $quota['total']) = preg_split('/ /', trim($result[2]));
if (substr($quota['used'], -1) == '*') { $quota['used'] = substr($quota['used'], 0, -1); }
$quota['percent'] = (($quota['used'] * 100) / $quota['total']);
break;
default:
return rcube_label('unknown');
break;
}
if ($quota && !($quota['total']==0 && $CONFIG['quota']['zero_as_unlimited']))
{
$quota_result = sprintf('%s / %s (%.0f%%)',
show_bytes($quota['used'] * 1024), show_bytes($quota['total'] * 1024),
$quota['percent']);
if ($display == 'image') {
$quota_result = array(
'percent' => $quota['percent'],
'title' => $quota_result,
);
if ($attrib['width'])
$quota_result['width'] = $attrib['width'];
if ($attrib['height'])
$quota_result['height'] = $attrib['height'];
}
}
else
return rcube_label('unlimited');
return $quota_result;
}
i want to ask to roundcube developers to adopt this modifications in
order to strengthen the quota retrieval system .. the complete
configuration may be as follow:
[config/main.inc.php]
// Quota Retrieval System
$rcmail_config['quota'] = array(
'backend' => 'imap',
'zero_as_unlimited' => TRUE);
$rcmail_config['quota'] = array(
'backend' => 'cmd',
'program' => '/usr/bin/quota',
'program_parameters' => '-f /filesystem -v',
'zero_as_unlimited' => TRUE);
well, that's all
_______________________________________________
List info: http://lists.roundcube.net/dev/
hello all
i want to ask to roundcube developers to consider add this feature: show
smtp error description when the user send a mail and smtp server returns
an error
would be a good idea if the behavior of this feature can be defined by a
configuration (main) variable .. the variable may be named:
// Set if the SMTP Error Description should be displayed
$rcmail_config['show_smtp_error_description'] = true|false;
// Show the SMTP Error Description via 'alert()' function?
$rcmail_config['show_smtp_error_description_alert'] = true|false;
i ask this because i manage a smtp server that returns some errors to
users due to some conditions but roundcube doesn't show the error
description and i don't know how to modify the code in order to achieve
this
well, that's all
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all
I am working on a customised skin based on the roundcube default skin from version 0.3.1.
How can I change the background color of a selected/hovered item in the "toolbarmenu" of "markmessagemenu" and "messagemenu"?
I replaced all background-color entries in all css files where #CC3333 was used and I have empties the browsers cache. But the items on the toolbarmenu still appear with a red background. I am using Firefox 3.
Thanks for any hints.
Christian
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Hq/wPsaunkw/toolbar-background.jpg
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,
Can some one post the list of all available template objects which can be
used on template hooks.
Thank You,
Chamila
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi
Here is a partial translation of the labels text. Hope it is useful.
/Thomas
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/A5/xjlPPxq5/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 all,
I'm lost if it comes to design icons which fits default roundcube icon set.
I would need two icons for the default toolbar (22x22 .png and .gif)
(*) webcalendar plugin
(*) nabble plugin
"Webcalendar" is an interface to Calendar plugin.
"Nabble" are embedable apps (http://n3.nabble.com/) which I have integrated by a plugin.
At the moment I use icons which may conflict to copyrights and they does not fit at all. Any help is very appreciated!
Regards,
R.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Gp/WvIksuR1/calendar.pnghttp://detached.gigo.com/rc/Gp/WvIksuR1/nabble.gif
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,
I am wondering how to generate the file: program/js/app.js from
program/js/app.js.src?
--
() ascii ribbon campaign - against html e-mail
/\ www.asciiribbon.org - against proprietary attachments
Jorge Valdes - jvaldes(a)intercom.com.sv
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi Roundcube folks
Attached are a couple of updates to the Danish translations of Roundcube
GUI.
Thank you very much for you work so far!
Best
Rasmus Wehner
Denmark
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Dk/KuLUVokD/labels.inchttp://detached.gigo.com/rc/Dk/KuLUVokD/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/
You're guys a good webmasters. I'm working on messages list menu and got
a few problems. I've prepared it in two versions, vertical and horizontal:
http://194.150.197.210/rc-dev/listmenu.htmlhttp://194.150.197.210/rc-dev/listmenu-v.html
1. I'm not sure which is better (vertical one is maybe too high?)
2. Save button in FF3 (3.0.15) hasn't got left,right,bottom border. It
becomes visible on mouse over.
3. If horizontal variant is better, how to make the height of all
<fieldset>'s to be the same (of course not in pixels, height:150px is
working, but something like 100% of the menu div would be better)?
4. Not tested with IE.
--
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/
If message e.g. delivery report contains message/rfc822 parts, we are
displaying its bodies below the message main body. Thunderbird is doing
the same with one difference, it'd display them also on attachments
list. Should we do this the same?
Sample message attached in this related ticket
http://trac.roundcube.net/ticket/1486246
--
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/
Currently we have possibility to cache messages in browser. However this
feature is problematic. See http://trac.roundcube.net/ticket/1486281.
There're also other issues related to javascript commands included into
(cached) page. Because of that we're using such complicated procedure
for ETag generation:
$etag = md5($MESSAGE->uid.$mbox_name.session_id()
.intval($MESSAGE->headers->mdn_sent)
.intval($MESSAGE->is_safe)
.(!empty($MESSAGE->attachments) ? intval($CONFIG['inline_images'])
: '')
.intval($PRINT_MODE)
.$_SESSION['sort_col'].$_SESSION['sort_order']
.$IMAP->messagecount($mbox_name, 'ALL', true)
);
It relies on messagescount, sorting, session_id, etc. It means, I think,
cache is used rarely. Maybe we shouldn't allow caching messages at all?
--
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'm new to roundcube and I'm customizing it for my university project.
I've created a plugin to add a tab for blacklist in the settingstab. But the
problem is the HTML content is not displaying properly in side the tab. I
have attached the code here with. Is my approach is not correct? How can I
do it efficiantly?(I have analyed the seetings and moruserinfo plugins to
get an idea)
<?php
class moreblacklist extends rcube_plugin
{
public $task = 'settings';
function init(){
$rcmail = rcmail::get_instance();
$this->register_handler('
plugin.blacklist_sections', array($this, 'blacklist_sections'));
$this->register_action('plugin.blacklist', array($this, 'blacklist'));
$this->add_hook('list_prefs_sections', array($this, 'blacklist_link'));
$this->add_hook('user_preferences', array($this, 'prefs_table'));
$skin = $rcmail->config->get('skin');
$_skin = get_input_value('_skin', RCUBE_INPUT_POST);
if($_skin != "")
$skin = $_skin;
// abort if there are no css adjustments
if(!file_exists('plugins/moreblacklist/skins/' . $skin .
'/settings.css')){
if(!file_exists('plugins/moreblacklist/skins/default/settings.css'))
return;
else
$skin = "default";
}
$nav_hooks = (array)$rcmail->config->get('settingsnav');
$nav = array();
foreach($nav_hooks as $key => $val)
$nav['settingsnav'][] = $val;
$rcmail->config->merge($nav);
$this->include_stylesheet('skins/' . $skin . '/settings.css');
$browser = new rcube_browser();
if($browser->ie){
if($browser->ver < 8)
$this->include_stylesheet('skins/' . $skin . '/iehacks.css');
if($browser->ver < 7)
$this->include_stylesheet('skins/' . $skin . '/ie6hacks.css');
}
$this->add_hook('template_object_userprefs', array($this, 'userprefs'));
$this->add_texts('localization/');
$rcmail->output->add_label('moreblacklist.blacklist');
}
function blacklist()
{
$rcmail = rcmail::get_instance();
$rcmail->output->send("moreblacklist.blacklist");
exit;
}
function blacklist_link($args)
{
$temp = array();
$temp['blacklistlink']['id'] = 'blacklistlink';
$temp['blacklistlink']['section'] =
$this->gettext('moreblacklist.blacklist');
$args['list'] = $args['list'] + $temp;
return $args;
}
function blacklist_sections()
{
$this->infohtml("");
}
function prefs_table($args)
{
if ($args['section'] == 'blacklistlink') {
$args['blocks']['main']['options']['blacklistlink']['title'] = "";
$args['blocks']['main']['options']['blacklistlink']['content'] =
$this->blacklist_sections("");
}
return $args;
}
//the content genarated by this code is not displaying
function infohtml()
{
$table = new html_table(array('cols' => 2, 'cellpadding' => 3));
$field_id = 'blackselect';
$table->add('title', html::label($field_id,
Q($this->gettext('blacklist'))));
$imap_host = new html_select(array('name' => '_blacklistinf', 'id' =>
$field_id,
'size' => 20));
$table->add(null, $imap_host->show());
$out .= $table->show();
return $out;
}
function userprefs($p)
{
$rcmail = rcmail::get_instance();
(array)$parts = explode(",",$p['parts']);
foreach($parts as $key => $val)
$parts[$key] = trim($val);
(array)$temparr = explode("<fieldset>",$p['content']);
for($i=1;$i<count($temparr);$i++){
$temparr[$i] = "<div class=\"settingsplugin\" id=\"" . $parts[$i-1] .
"\"><fieldset>" .
str_replace("</fieldset>","</fieldset></div>",$temparr[$i]);
if($_GET['_section'] == "blacklistlink" || $_POST['_section'] ==
"blacklistlink"){
$temparr[$i] = str_replace("<legend />","<legend>" .
$this->gettext('blacklist') . "</legend>",$temparr[$i]);
}
}
$p['content'] = implode($temparr);
return $p;
}
}
?>
I would be greatful if some one could help me on this.
Thanks,
Chamila
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi All
I have updated the squirrelmail_usercopy plugin to support copying
userpreference and addressbook from squirrelmail database.
Added some fields in config. Driver should be set to 'sql' to use the
database backend.
Please test and apply.
Regards
Johannes
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/U4/zpMH3lf7/config.inc.php.disthttp://detached.gigo.com/rc/U4/zpMH3lf7/squirrelmail_usercop.new
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,
I submitted this patch a fair while ago but it was not included.
It adds the following fields:
'work_number',
'home_number',
'fax_number',
'mobile_number',
'title',
'company',
'work_address',
'home_address',
'note'
it also stores and exports these in vcards as well.
I have updated it to be applied to current trunk (r3140)
I have only added labels for US so other language labels will need to be
modified.
Cheers
Brendan
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/1G/CTpenbVN/extended_address_boo.diff
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!
Up to 100%.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Kk/PfxxF/9t/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/
Le jeudi 26 novembre 2009 00:03, vous avez écrit :
> On Nov 25, 2009, at 12:56 PM, fakessh wrote:
> > I failed to operate roundcubemail with the changes indicated in
> > your post
> > when mod_security is active
>
> Hmm, not sure of the next step.
> Can you post the logged mod_security errors like you did last time ?
>
> > I still need your help and your advanced knowledge in the operation of
> > roundcube
>
> I wouldn't say my knowledge is advanced, I've just been using it for
> quite some time.
I just put into production roundcube for some friends. I can not make changes
in the day, the webmail is stable yet. I'd do this Thursday night at midnight
Paris time (0:00) just enough time to do the tests you ask me.
you wrote on my personal address, rather than post on the dev list
this is probably a problem of click
thanks charles
thank you for your assistance is invaluable to me
many thanks
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi! I am free(dom) software enthusiast user based in Spain, I have come to know Round Cube from some time (and I think it rocks) ago and I would like to contribute even if just a little.
Since I am not into coding, but I have a decent command of english, I can help with translations.
I send some missing labels in order to complete the Spanish (Spain) translation, so it can be 100% complete!
Best regards from Spain:
David Ballesteros.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/QG/JeKocjPm/labels.inc.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/
Here is an updated labels.inc for the es_ES localization:
+ Added missing translations.
--
() ascii ribbon campaign - against html e-mail
/\ www.asciiribon.org - against propietary attacments
Ing. Jorge Valdes - jvaldes(a)intercom.com.sv
IntercomSCI El Salvador
- Transformando sus Telecomunicaciones
voz: +503 2278-5068
fax: +503 2265-7025
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/UC/QwYSNxD/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 devs, Phil W. has created a great improvement of the addressbook
(http://lists.roundcube.net/mail-archive/dev/2009-11/0000102.html [1]). I
like this patch very much. Lots of people in the forum are asking for a
more advanced addressbook. Are there any concerns to commit this patch to
trunk or at least to a separate branche? The roadmap states that vcard rich
contact informations is a milestone for v0.5. But why not to make users
happy a little bit earlier? Also it is important for me to know, if Phil's
improved search method will be adopted ('google_contacts' plugin). Thank
you! R.
Links:
------
[1]
http://lists.roundcube.net/mail-archive/dev/2009-11/0000102.html
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello guys,
There a feature I need in roundcube, it's to have the number of messages
that possess the attribute "Flagged" in the folders list.
I am wondering if this can be done as a plugin or needs to be part of the
core... I am no PHP expert, but maybe if you can give me some hints on
where this should be implemented I would be able to do it myself :)
Thanks,
Julien
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
Here is the updated french translation (only labels.inc since
messages.inc is already complete)
Regards,
Joel
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/5K/wwrDG837/labels.inc.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/
Hello!
I'm sending an updated slovenian translation.
Barbara
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/kt/kbJOGCNl/RDC_slovene_translat.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/
Hello,
I noticed that passwords are output in plain text to the imap log file if
imap_debug is set to true in main.inc.php. If I don't configure my web
server correctly (e.g. don't set AllowOverride with Apache) then the log
file may be downloaded from the logs directory, exposing the passwords.
Obviously it pays to make sure that my web server is configured correctly,
but since this is an easy mistake to make I think it would be worthwhile
masking passwords in the imap debug log.
I attach a patch that does just that.
Regards,
Chris January
--
http://www.atomice.com
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/1s/eZkh2HNv/imap-log-hide-passwo.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 everyone!
In the attachment you'll find the updated Latvian localization files.
Please add them to the current development branch.
Changes:
* added latest messages and labels;
* minor consistency tweaks.
Regards,
Rudolfs
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/wj/Ggc9XiF5/lv_LV.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/
Hi all,
since the 0.3.1 version I was randomly logged out when a
replay or forward an email?
I'm the only that see this issue?
Thanks
--
Sandro Pazzi
IdWeb s.r.l.
Viale Romagna 69/A - 06012 Citta' di
Castello (PG)
Tel. 075 851 97 28
Fax 075 851 97 30
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I saw this ticket on trac, I know its assigned but I thought I would give
a patch a shot, hope that's ok. If any one has done any work on it I would
be happy to compare ideas.
http://trac.roundcube.net/ticket/1484272
The patch adds a number of different options:
"top_posting": adds some new lines and puts the cursor above the original
message when replying.
"show_sig": 4 different options about when to automatically add a
signature to a message: never, always, only new messages, only
replies/forwards
"sig_above": when replying or forwarding put the signature about the
existing message
"strip_existing_sig": this option was suggested on the ticket, don’t
remove existing sig from the message when replying.
I have also added a new button on the compose screen toolbar, "Insert
Signature" - does what it says on the tin.
The addition of these new options does not change the current behaviour of
RC.
The signature above message stuff in the plain text editor is not prefect,
may be some one has some ideas how to improve it. Also when inserting sig
above message it will not add the "-- " i'm not sure if people want it
there or not but I thought leaving it in might cause content to be lost
when clients strip sigs.
Phil
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/PQ/bc4Poey3/signature.pnghttp://detached.gigo.com/rc/PQ/bc4Poey3/rc_sig_above.r3030.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
I've updated the Portuguese Brazilian localization
Only 3 lines were left in labels.inc
Thanks
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/KH/G56EV2lG/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/
Update for labels.inc attached for cy_GB
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/fk/z77s2HLL/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/
This is full 100% translation. Partially it's based on the translation by
Natali Stasyuk, but it is complemented, many of the elements are reformed
and mistakes are corrected (especially in labels.inc file). Now it's been
testing by more than 500 users of our corporate webmail. If there are some
remarks I'll correct and report.
--
Best Regards,
Volodymyr M. Kononenko,
Ukraine, ITS NTUU "KPI" System Administrator
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/f4/x8vmTBaV/uk_UA.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/
It doesn't look like this calendar [1] project has been touched in a
while, so I took it upon myself to turn this into a v0.3 plugin. This is
my first plugin, so I'm still learning. I have the icon showing in the
task bar, and menu items in the toolbar. Now that the easy part is out of
the way. I have to get the logic working.
Is anybody working on this functionality? I was thinking you could
incorporate different calendar backends. If no one is working on this then
I would like to post my code up on github and other folks could work on it
as well or merge what I have.
[1] http://sourceforge.net/projects/rccalendar/
--
Neskie Manuel
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
I've coded a plugin to access googlemail contacts. It is readonly at the moment. Any comments/improvements are very appreciated.
Regards,
Rosali
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/gP/xwb54eCD/google_contacts.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/
Hello,
This is in regards to
http://lists.roundcube.net/mail-archive/announce/2008-12/0000000.html
Let me know if this is the wrong venue, I was directed here by a forum
moderator.
I have several old versions of roundcube deployed for clients. Recently two
of them were compromised using this vulnerability. My fault for not staying
up to date, I think I even emailed myself the security update bulletin just
never did it.
At any rate, the vulnerability was used to create an adware serving system.
My real question is this, contained in the adware directory are some large
text files that I deduce the adware author used to rotate links etc., these
files contain links to other compromised roundcube sites.
What would be the best way to go about the process of notifying these
admins??
Although this was several months ago, I just spot checked some of the links
and they are still compromised.
Thanks,
Andy
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
here is the next revision of threaded message list patch
Changes comparing to roundcubemail-threading-20090706.patch from
http://www.atomice.com/blog/?page_id=34:
1. Ported to 0.3-SVN-r2976
2. Implemented auto expand of threads with unread messages only.
3. Added GUI configuration option for autoexpand control (on, off, unread).
4. Autoexpansion works in both static and JS message lists.
5. Automatically change between 'unread children' and message icons in a
list (in parent message rows) when child message is marked read/unread.
6. Count messages, not threads in a message view pane.
7. Fixed navigation in a message view pane when threading is enabled.
8. Fixed setting folders with non-ASCII named to threaded mode.
9. Fixed incorrectly displayed rows (children of collapsed row) after
multi-level expand/collapse. Simplified expand logic.
10. Fixed expand indicator is not changing when expanding/collapsing
with keyboard.
11. Fixed plus key on a numeric keypad is not working (at least on linux
Fedora 11 + Firefox 3.5.2).
12. Added support for whole thread expand/collapse with
clicking/pressing hotkeys while holding the Control key.
13. Save expand state in env everywhere (after keypresses too).
14. Added russian translation.
15. Fixed indentation and braces style in JS to comply with RC coding style.
Changes to my previous public revision:
16. (Multiple) selection works fine with threaded view too now (based on
patch published by Nathan Kinkade). Selection list is altered
immediately on a select action (opposed to Nathan's patch). Nested
messages are added to selection list when collapsed parent is selected,
and removed from it on a thread expand. I ask everybody to test this
feature with both mouse and keyboard shortcuts.
17. Remove a bit of unused code.
18. Add only one div of a variable width to a messagelist row instead of
set of divs. See comments inline.
19. Make dragging work with threaded view (locate subject text differently).
20. Re-read messagelist portion after move/delete operation if threading
is enabled. See comments inline. (This does not fix a bug with
non-atomic move/delete operations I noted before). I'm not sure I did it
100% right because of that bug which makes testing nearly impossible in
my setup.
I think that code (except thread caching which I don't use and didn't
touch it at all, it is up to Chris) is a true beta quality now (based on
my testing) and is ready to be tested intensively in different setups.
Comments are welcome as usual.
Best,
Vladislav
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/1h/WkvtBXFZ/roundcubemail-thread.patchhttp://detached.gigo.com/rc/1h/WkvtBXFZ/unread_children.png
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/