Hi,
I've created a patch to enable moving multiple messages
to a specified folder at once. The patch just adds the
move-to drop-down menu in mail.inc template file as it
seems to me that it is all that's needed for such
funcationality.
Please be aware that in smaller resolutions (browser window
sizes) the drop-down may overlap with the search field.
Here is the patch:
================ cut here ===============
--- mail.html~ 2008-03-07 10:51:10.000000000 +0100
+++ mail.html 2008-03-10 11:31:02.000000000 +0100
@@ -107,6 +107,8 @@
<roundcube:button command="forward"
imageSel="/images/buttons/forward_sel.png"
imageAct="/images/buttons/forward_act.png"
imagePas="/images/buttons/forward_pas.png" width="32" height="32"
title="forwardmessage" />
<roundcube:button command="delete"
imageSel="/images/buttons/delete_sel.png"
imageAct="/images/buttons/delete_act.png"
imagePas="/images/buttons/delete_pas.png" width="32" height="32"
title="deletemessage" />
<roundcube:button command="print"
imageSel="/images/buttons/print_sel.png"
imageAct="/images/buttons/print_act.png"
imagePas="/images/buttons/print_pas.png" width="32" height="32"
title="printmessage" />
+<roundcube:object name="mailboxlist" type="select" noSelection="moveto"
maxlength="25" onchange="rcmail.command('moveto',
this.options[this.selectedIndex].value)" class="mboxlist" />
+
<div id="markmessagemenu">
<ul class="toolbarmenu">
================ cut here ===============
Best regards,
--
Alexander Iliev
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all !
I made a tiny patch to fix ticket #1484839 (
http://trac.roundcube.net/ticket/1484839 ).
It removes completely the feature which gives the focus to the password
field when pressing 'enter' key. I think this is not a good UI behavior
for these reasons :
- On many web apps, pressing 'enter' activates the submit button (this
is the default 'enter' key behavior). I don't think users are used to
press 'enter' to switch input focus. They use the 'tab' key instead.
- In case you let people choose their server in the login form, pressing
'enter' in the password input won't give focus to the server input, but
will fire the submit action (but it should be possible to).
- This feature currently break Firefox and Safari concerning
auto-complete (as reported on #1484839).
That's why I would remove it.
Thank you !
--
Benjamin Vanheuverzwijn
iWeb Technologies http://www.iweb.com
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Ar/Hsj7PtAA/bugfix1484839.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/
Did a new install of RC instead of trying to update from my old
version full of hacks.
Configured perfectly, had the authentication a bit wrong. Fixed that
and I logged in!
Several times
Over and Over and Over again in fact...
I get directed to /?_task=mail on successful login, which presents me
proudly with no errors and a new login screen. Login failure errors
properly, but I can't get past the login screen. Trace debugging shows
me zip.
Does anyone have the faintest clue what this things problem is?
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi Till, hi folks,
I installed the latest stable version of roundcube, but this version
still have a problem with IE6 when opening an attachment from the
message (the messagepart.html template), which was present in rc1 version too.
After opening the message in a new window, it remains hanged with CPU 100%
utilization, and the only way out is to kill the application.
I decided to track down the problem. The problem is related to the
height: expression(...) in #messagepartframe selector in main.css file
I corrected it in the following way:
#messagepartcontainer
{
position: absolute;
top: 80px;
left: 20px;
right: 20px;
bottom: 20px;
/* MB: added IE hack to calculate view size */
width: expression((parseInt(document.documentElement.clientWidth)-40)+'px');
height:
expression((parseInt(document.documentElement.clientHeight)-100)+'px');
}
#messagepartframe
{
width: 100%;
height: 100%;
border: 1px solid #999999;
background-color: #F9F9F9;
/* css hack for IE */
/* MB: For some reason the following put IE6 in a tightloop which requires
to kill the application :(
height:
expression(parseInt(document.getElementById('messagepartcontainer').offsetHeight)+'px');*/
width: expression(parent.offsetWidth+'px');
height: expression(parent.offsetHeight+'px');
}
This cures the problem. I tested on several different workstations with IE6,
and the problem is solved with this. I don't know what is causing it, maybe
the getElementById call.
Please review the correction and if it's ok, include it in your bugfix release.
Thank you
Mirko
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hey party people!
The 0.1.1 milestone is really just a bugfix release. I am just posting
this so people don't assign their patches to it, unless you fix a bug.
And the agenda for 0.1-stable is to have 0.1.1 as soon as necessary. ;-)
Whatever your patch does - be the change tiny, medium or grande. If
it's a new feature it will not be in 0.1.1.
Reason is, we need to finish the merge from current trunk and
branches/devel-vnext. The merge is complicated as is and therefor we
are trying to make it easier for us. ;-)
Just to let you all know!
Have a great weekend!
Till
_______________________________________________
List info: http://lists.roundcube.net/dev/
[cut]
The changes made in http://trac.roundcube.net/ticket/1484810 are
correct, so you can add mine in diff.
I have no offense, you guys do a really great job :)
Last changes I've made to those translation files are only cosmetic,
they look better and more like in .exe type of MTAs.
regards
--
Wojtek
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
I have just a small patch which seems reasonable to me. In 0.1stable release
is an option to limit max_pagesize but it seems it is working only for new
settings and users cannot save new value bigger than that. But when user
already has bigger value in database (from older releases) then value
max_pagesize from config file is not used.
So this is my solution.
--- ../webmail_01_stable/program/include/main.inc 2008-02-27 14:39:
22.000000000 +0100
+++ program/include/main.inc 2008-03-07 11:28:10.000000000 +0100
@@ -278,7 +278,11 @@
// set pagesize from config
if (isset($CONFIG['pagesize']))
- $IMAP->set_pagesize($CONFIG['pagesize']);
+ if ($CONFIG['pagesize'] > $CONFIG['max_pagesize']) {
+ $IMAP->set_pagesize($CONFIG['max_pagesize']);
+ } else {
+ $IMAP->set_pagesize($CONFIG['pagesize']);
+ }
}
Regards
--
Ondrej Zlosky
ondrej.zlosky(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi Thomas, Hi Till
have you ever thought to apply to GSoC?
Google is accepting request to participate as mentoring organization just now. They will close subscription 12 March.
I think it could be a great occasion to have many developers to work full time on roundcube.
And it is a great occasion to have some money back from your work on roundcube.
Think about applying to GSoC.
If you need more informations, just ask. :)
http://code.google.com/soc/2008
--
~Yusef
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi
Stable 0.1 doesn't include last changes to polish translation sent on
28th Feb 2008 in topic "Polish translation - updated - cosmetic changes".
regards
--
Wojtek
_______________________________________________
List info: http://lists.roundcube.net/dev/
please see http://trac.roundcube.net/ticket/1484830
honestly, i would consider this an urgent update.
but maybe its only my php version, that is broken.
cheers,
raoul
--
____________________________________________________________________
DI (FH) Raoul Bhatia M.Sc. email. r.bhatia(a)ipax.at
Technischer Leiter
IPAX - Aloy Bhatia Hava OEG web. http://www.ipax.at
Barawitzkagasse 10/2/2/11 email. office(a)ipax.at
1190 Wien tel. +43 1 3670030
FN 277995t HG Wien fax. +43 1 3670030 15
____________________________________________________________________
_______________________________________________
List info: http://lists.roundcube.net/dev/
Dear subscribers
After more than two years of development we're proud to announce the
first stable version of RoundCube Webmail. It's not as feature rich as
we'd like it to be but the released version is considered to run
stable for a productive environment. Thanks to our users we fixed many
bugs and added some nice new features since the first 0.1-alpha
version was published in 2005. So go ahead and upgrade your
installations now! Download the latest release from
http://roundcube.net/downloads
A more or less complete list of changes is available at
http://trac.roundcube.net/wiki/Changelog
The TinyMCE-based HTML message composition is now included but should
still be considered as experimental. Please also note that this is the
last release that runs on PHP 4. As suggested by the GoPHP5 project
RoundCube will be PHP 5 only in future versions.
If you want to report bugs, please use our tracker but read the
instructions (http://trac.roundcube.net/wiki/Howto_ReportIssues)
first.
Have fun!
~Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
When compose calls the LDAP search function (to build the auto-complete
list) it passes an empty '$value' parameter. In this case, when all the
bits of the filter get concatenated you end up with something like this:
(|(mail=**)(cn=**))
which isn't valid syntax (at least it's not on my LDAP server).
Here's a tiny patch to rcube_ldap.inc that eliminates the double
wildcards. There may be a better way to do it, but this was simple.
Cheers,
Roy
--
Roy McMorran
Systems Administrator
MDI Biological Laboratory
mcmorran(a)mdibl.org
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ls/uvbblwG2/rcube_ldap.inc.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/
The following patch add captcha on the login form.
I havle also attached the font for creating the captcha image.
Feel free to submit it!
Thanks for the good work!
/Erik
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/MC/u7Kiih0J/font.ziphttp://detached.gigo.com/rc/MC/u7Kiih0J/captcha.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/
Some tickets were reported over the weekend - I admitted some to 0.1 stable. I think a quick check would ne good because some are minor or related to trunk. If not applicable, or solve later - please set milestone to 0.1.1 (or close)
Seansan
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi. My name's Ryan (rjhughes on the trac).
I've submitted a couple of patches in the last week or so:
(#1484816, using keypress instead of keydown to allow repeat)
(#1484806, an option to allow strftime formatting)
But I've got a feature I'd like to work on:
Currently, it shows you 40 (or whatever your pagesize is) messages, and if
you scroll to the bottom of that list and wnat to see the next messages,
you have to click the "next page" button.
I would like it to put placeholders into the table for all your messages,
so that you can just keep on scrolling, and it will load your messages on
demand. I would like this to be available as an option.
I would like to know which branch I should be working on -- the trunk, or
devel-vnext? Here's the tradeoff:
It would be easier if I didn't have to do a whole bunch of merging to get
it to vnext once that goes live.
HOWEVER, if vnext is considered so experimental that it's going to be 5
years before it comes out, then it would be much easier for me to just
merge it into vnext at some time.
So: Which branch should I do this work on?
Thanks.
--Ryan
_______________________________________________
List info: http://lists.roundcube.net/dev/
The installer's check returned an error about wrong definition
of magic_quotes_gpc
BUT:
Quoting from http://il.php.net/magic_quotes
Warning
This feature is DEPRECATED and REMOVED as of PHP 6.0.0. Relying on this
feature is highly discouraged.
Moish
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hey guys!
Just a quick heads up to everyone running 0.1-x (aka trunk) with PHP5.
Don't update to PHP5.2.5. It breaks lots of things (static calls
without a static keyword), which we currently drag along to remain
PHP4-compat. This sort of thing should be resolved in 5.2.6, or maybe
in another 5.2.5 re-release.
Those issues are gone as soon as we move to full PHP5 code. (Can't wait.)
Have a great weekend,
Till
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello there! I'm new here, but I've sent to trac few small patches in
last days and all were included to trunk.
Creating a folder with name which contains folder delimiter is confusing
for regular users and imap implementation dependent. See
http://trac.roundcube.net/ticket/1484815 and
http://trac.roundcube.net/ticket/1484803.
I think that we should disallow such folders creation. What are you
thinking about that? If not, maybe we should create all directories in
path (see #1484815) in loop (instead of one imap command)?
ps. I'm interested in help with plugin API implementation. Is someone
working on it now?
Regards
--
Aleksander 'A.L.E.C' Machniak http://alec.pl gg:2275252
LAN Management System Developer http://lms.org.pl
_______________________________________________
List info: http://lists.roundcube.net/dev/
Upadate translation for RoundCube 0.1-stable!
With the files this time...
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/tp/E4UXFfAw/Greek.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/
Hi All,
My name is Gareth Fiford i have been an enterprise php and oracle
developer for 4 years.
i would be interested in creating compatibility with oracle, i can
provide a php oracle machine for testing etc.
I think a bash install script, or installation on first access to the
index would be another nice feature.
I would also like to contribute code.
Please let me know if i can be of service
thanks
Gareth Fiford
_______________________________________________
List info: http://lists.roundcube.net/dev/
On Wed, February 27, 2008 15:08, Yllar Pajus wrote:
> Hello Jesper and Martin
>
> since you both are listed as translators and you both sent translation
(with some keys little bit different) - please make an agreement on how
it's best and send result to me directly.
> different values are:
<snip..>
Hello Üllar,
Martin and I have agreed on the attached translation.
Regards,
Jesper
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/pm/RC4dGz9p/da_translation_2008-.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/