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/