On Wed, 30 Jul 2008 00:25:52 +0200, Till Krüss <till(a)pralinenschachtel.de>
wrote:
> I would suggest a drop-down menu as default and a input box replacement
as
> setting.
> required keyboard usage is not a good choice.
I've submitted a new patch. It now uses a drop-down menu. It also adds a
configuration option ("pagejump_dropdown_threshold") which determines the
number of pages, over which the drop-down is replaced by a text box (it
defaults to 20).
If an installation wants to always use the text box, they can set the
value of pagejump_dropdown_threshold to zero. If they want to use only
drop-downs, they can set the value to something extremely high.
-kris
--
Kris Steinhoff
Web Application Developer
Web/DB Team, Information Technology Central Services
The University of Michigan
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ra/bTM7Ja4d/UTF-8_27_27text_bo.pnghttp://detached.gigo.com/rc/ra/bTM7Ja4d/UTF-8_27_27drop-do.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/
>> If I understand A.L.E.C.'s Ideas right:
>> * Each plugin has an init.php which registers to events:
>> /myplugin/init.php:
>> init_plugin('init', 'functionname');
>> init_plugin('showmail', 'functionname');
>
> Yes, but I'd prefer an object-oriented approach:
> http://lists.roundcube.net/mail-archive/dev/2008-06/0000038.html
correct.
>> * the Controller does a loop over the plugin/subdirectories to get these
>> registries
> Right. This procedure could even be cached for performance reasons.
as log as we have only some plugins caching shouldn't be a topic.
>> I think it does not make sence to implement a full featured plugin
> monster
>> if we do not need it right now.
>> But we should be able to extend it to a monster if we need to do so
> later
>
> Exactly!
Isn't open source great ;-)
OK, I think we got a good idea of how it should be implemented.
I hope I could code a small prototype this weekend, but I do not guarantee.
I will ask the list to test it afterwards.
Thanks for your comments.
<br/>
<br/>
---------------------------------------------------------------<br/>
Webhosting
komplett mit Plone-CMS, Spam- und Virenfreies E-Mail<br/>
Hotspot-Systeme
(Internet für Ihre Gäste)<br/>
Netzwerkbetreuung, Fernwartung,
uvm.<br/>
Web: www.lagg.at - Mail: info(a)lagg.at<br/>
Florian Lagg, Juch 7,
6631 Lermoos,
Austria<br/>
---------------------------------------------------------------<br/>
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello. This is official translating file of OUR Technology, LLC for
RoundCube.
We like RoundCube. Please add to our “Azerbaijani” to the list of
Localizations.
Language: Azerbaijani
Translater: Orkhan Guliyev (OUR Technology, LLC.)
Best Regards,
Orkhan Guliyev.
________________________________________________________
Forex-AZ’la hər yerdə, hər an FƏRQDƏN QAZAN - FƏRQLİ QAZAN!
http://adrunner.forex-az.info/ab/2-3
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/DD/qWAGk5Ic/roundcube.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/
Roundcube needs as every good mail client does a search feature.
The user should be able to search for user-specified criteria in
user-specified (sub)folders.
The request can take a few secounds, but if you have more than 1 folder,
it is annoying to select each folder one by one and re-type your search
string every time.
Cheers, Till
http://trac.roundcube.net/ticket/1485234
_______________________________________________
List info: http://lists.roundcube.net/dev/
I would suggest a drop-down menu as default and a input box replacement as
setting.
required keyboard usage is not a good choice.
_______________________________________________
List info: http://lists.roundcube.net/dev/
While I was trying to integrate and customize roundcube to our department's
system, I submitted some small patches to trac. I think they will be useful for
some setups, the forum and tracker has some requests for these features.
1. The first one presents the "edit identity" screen when the user is recorded
in roundcube database for the first time. In our system, the user's name was
not correctly pulled from ldap while auto creating, so I added this to send the
user to edit identity screen. If users are not auto created, the administrator
probably entered correct info in the first place, so depending on auto user
creation is reasonable.
http://trac.roundcube.net/ticket/1291605#comment:9
This patch is obsoleted by the following patch in our system but it can be
useful on other places. Having the user double check the name and email is
never bad, and can help catching typos or other errors in the system :)
2. Then for LDAP integration. I modified Gerald Schneider's old patches at the
following address.
http://www.gerald-online.de/misc/roundcube/
The patch adds a new configuration option, and searches LDAP for user's real
name and uses it as identity.
http://trac.roundcube.net/ticket/1485203
3. This third one is very site-specific IMO. But It has no side effects, so it
can be safely included. adds '@' + 'mail_domain' if the e-mail address from
LDAP does not include '@' sign. Our emails are of the form
"ldap_uid@mail_domain" and there is not a seperate field for e-mail in LDAP, so
they are autogenerated by this patch.
http://trac.roundcube.net/ticket/1485201
--
Gokdeniz Karadag
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello all,
thank you for roundcube. It is a great program. Still missing sieve, but
I'll be patient :-)
My girlfriend has around 20 email-adresses and she would like to see,
to which account the mail got sended. So I turned around the name
and email.
You see the email instead of the name. If you move the mouse over the
email you will see the name.
Maybe someone else is interested, thats why i publish it here.
1) Added a config-parameter (main.inc.php):
// Show email instead of the name in recipient and sender
$rcmail_config['show_email'] = TRUE;
2) Changed the source in program/steps/mail/func.inc:
@@ -876,13 +876,21 @@
$out .= sprintf('%s <%s>', Q($part['name']), $part['mailto']);
else if (preg_match($EMAIL_ADDRESS_PATTERN, $part['mailto']))
{
- $out .= sprintf('<a href="mailto:%s" onclick="return %s.command(\'compose\',\'%s\',this)" class="rcmContactAddress" title="%s">%s</a>',
+ if ($CONFIG['show_email'])
+ $out .= sprintf('<a href="mailto:%s" onclick="return %s.command(\'compose\',\'%s\',this)" class="rcmContactAddress" title="%s">%s</a>',
+ Q($part['mailto']),
+ JS_OBJECT_NAME,
+ JQ($part['mailto']),
+ Q($part['name']),
+ Q($part['mailto']));
+ else
+ $out .= sprintf('<a href="mailto:%s" onclick="return %s.command(\'compose\',\'%s\',this)" class="rcmContactAddress" title="%s">%s</a>',
Q($part['mailto']),
JS_OBJECT_NAME,
JQ($part['mailto']),
Q($part['mailto']),
Q($part['name']));
-
+
if ($addicon)
$out .= sprintf(' <a href="#add" onclick="return %s.command(\'add-contact\',\'%s\',this)" title="%s"><img src="%s%s" alt="add" border="0" /></a>',
JS_OBJECT_NAME,
@@ -1123,4 +1131,3 @@
));
?>
It would surely be better to do this by user, but this was too much trouble
for me right now.
Best wishes,
Michael
--
SysQuadrat Systeme mit Sicherheit
Michael Weinert Stuttgart Filderstadt-Plattenhardt
Tel.: 0711-9970288 Fax: 5360559 Mobil: 0170-4141273
http://www.linux-firewall.de weinert(a)sys2.de
KeyServer hkp://pgp.mit.edu
_______________________________________________
List info: http://lists.roundcube.net/dev/
I submitted a feature request with a patch I've been working on. It allows
users to jump to an arbitrary page in the the message list view. This is
useful when trying to navigate around folders which contain a lot of
messages. (I've attached a screen shot of what it looks like in the
interface.)
http://trac.roundcube.net/ticket/1485235
-kris
--
Web Application Developer
Web/DB Team, Information Technology Central Services
The University of Michigan
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Q1/V8qeGkpX/UTF-8_27_27page_ju.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/
The roadmap for 0.2-beta mentions "Selectable folder for outgoing mails."
The only ticket I've found that seems to be related is
http://trac.roundcube.net/ticket/1485075 But its milestone is "later" not
"0.2-beta." I'd like to help implement this feature. Is this the right
ticket to start with? Is anyone else working on this?
thanks
-kris
--
Web Application Developer
Web/DB Team, Information Technology Central Services
The University of Michigan
_______________________________________________
List info: http://lists.roundcube.net/dev/
This patch resolves our issue which is identical Ticket #1485152, we
are running PHP 5.1.6, RPM from CentOS 5. Hope it helps.
James
diff -Naur roundcubemail-0.1.1/program/steps/mail/sendmail.inc
roundcube.corrected/program/steps/mail/sendmail.inc
--- roundcubemail-0.1.1/program/steps/mail/sendmail.inc 2008-04-05
08:49:21.000000000 -0400
+++ roundcube.corrected/program/steps/mail/sendmail.inc 2008-07-22
13:56:15.000000000 -0400
@@ -290,8 +290,11 @@
We need to replace mime_content_type in a later release
because the function
is deprecated in favour of File_Info
*/
+ $fi = finfo_open(FILEINFO_MIME);
+ $upd_mime = finfo_file($fi, $attachment['path']);
+ finfo_close($fi);
$MAIL_MIME->addAttachment($attachment['path'],
- rc_mime_content_type($attachment['path'],
$attachment['mimetype']),
+ $upd_mime,
$attachment['name'], true, 'base64',
'attachment', $message_charset);
}
_______________________________________________
List info: http://lists.roundcube.net/dev/