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/