Greetings,
thought of mentioning the following design flaw / bug that i just came
across.
I reside in europe and a friend of mine resides in australia.
he sent me an email to which i replied and i noticed the following:
the listing of the mail is appearently based on the dispatch time of the
email
itself disregarding time zone differences. this displays the messages in the
wrong incoming order.
if my friend sent me the email at 10:00 am australian time, and i check my
mail at
gmt+2, should i …
[View More]receive any other email that arrives within the gmt+2 time
frame
it would be listed prior to the mail from australia, naturally since gmt+2
is the localtime
and the message that arrives at a future time of gmt+2 remains on the top of
the
list thou the actual local time is less than the local 10:00 gmt+2 time.
hope you guys understood that, havent had my cup of coffee yet :)
regards
BL
[View Less]
Hello all,
We recently released RoundCube (slightly modified) for a client of about
30 users.
They requested that I provide documentation in the form of a user guide
for them.
I have already begun outlining the document. I began by looking at the
instructions on the wiki, but then decided to just start from scratch.
My plan is this:
1 - Complete Outline of Document
2 - Flesh Out Content of Outline (Form Rough Draft)
3 - Will use the rough draft to generate a step-by-step
screenshot/…
[View More]screencast utilizing "Wink"
4 - I will take the screen shots from Wink and insert them into the
overall document.
5 - Will take key parts from the document and insert them into the Wink
screencast and generate an SWF series of tutorials.
A portion of my time will be covered. Another portion will be "donated".
Once I have a fleshed out copy (step 2), I will probably put it online
on the wiki or a google doc. At that point I would like to ask for any
and all suggestions and corrections.
Wish me luck! :-P
Good portion of the outline is already completed. Overall operation of
RC is outlined. Began outlining "Reading" of emails. Then just need to
cover "Composing" and "Organizing" messages.
Well, that is all I have for now.
Kevin L.
[View Less]
I'd like to propose that this bug be added to the list of bugs required for 0.1RC1 release:
http://trac.roundcube.net/trac.cgi/ticket/1484148
It breaks RFC and I've gotten complaints from a friend or two about reading the emails I've composed. I'm not sure if this is the best way to suggest a bug for RC1, if not please let me know.
Thanks,
Doug
Hi,
I want to start develop for Roundcube. Just for training and my personal
use, I make this changement:
when you add a contact, the name to show is auto completed by the firstname
and surname field.
If you think it could be usefull add it in the svn. I want to add some infos
in address book like phone number, address .... Like in thunderbird.
Where is the better place to show the database changement? Or do i have to
work on others things?
Fred
svn diff output
Index: roundcubemail/…
[View More]program/steps/addressbook/edit.inc
===================================================================
--- roundcubemail/program/steps/addressbook/edit.inc (revision 540)
+++ roundcubemail/program/steps/addressbook/edit.inc (working copy)
@@ -1,4 +1,4 @@
-<?php
+<?php
/*
+-----------------------------------------------------------------------+
@@ -65,17 +65,20 @@
// return the complete address edit form as table
$out = "$form_start<table>\n\n";
- $a_show_cols = array('name', 'firstname', 'surname', 'email');
+ $a_show_cols = array('firstname', 'surname', 'name', 'email');
foreach ($a_show_cols as $col)
{
$attrib['id'] = 'rcmfd_'.$col;
+ if($col == 'firstname' || $col == 'surname')
+ $attrib['onkeyup'] = 'rcmfd_name.value=rcmfd_surname.value +
\' \' +rcmfd_firstname.value;"';
$title = rcube_label($col);
$value = rcmail_get_edit_field($col, $CONTACT_RECORD[$col], $attrib);
$out .= sprintf("<tr><td class=\"title\"><label
for=\"%s\">%s</label></td><td>%s</td></tr>\n",
$attrib['id'],
$title,
$value);
- }
+ unset($attrib['onkeyup']);
+ }
$out .= "\n</table>$form_end";
[View Less]
Hi all,
I'm evaluating roundcube as a base for an advanced gmail-like webmail for
customers and I'm looking around in the code planning to add some
functionalities. I would like to know your opinion about the
threads/conversations thing.
I'm thinking about gmail-style conversations, which are sooo useful and
pretty especially when you search something and in a couple of clicks you
can view the entire thread without further searches. What would be the
impact on the code ? Here are my thoughts:
…
[View More]- add a db table to hold a list of mail_ids for every conversation_id
- modify program/steps/list.inc to group mails in conversations
- add program/steps/show_conversation.inc - something around a superset of
show.inc
- modify js to accomodate the changes (the most unknown part to me,
currently)
Which are the right directions to take? Are you interested in the feature?
Should it be part of core roundcube or implemented as a plugin through the
incoming API ?
thanks for your attention
Michele
[View Less]