Dear subscribers
A new major release is now available for deep testing. With this version we
fixed over 50 bugs and added new features like threaded message listing and
contact groups support as well as many little improvements that make e-mail
reading with Roundcube an even better experience.
While it's still called a beta release we consider it to be stable enough
for productive environments. However the new features may have some minor
issues which we are happy to hear about.
Download the 0.4-beta version now from http://roundcube.net/download
A complete list of changes can be found as usual at
http://trac.roundcube.net/wiki/Changelog
Attention: Please note that the database schema has changed. Therefore you
should carefully read the UGRADING instructions and make sure you apply the
according SQL statements from SQL/*.update.sql to your database. Run
bin/update.sh to see what needs to be done.
Have fun!
Thomas
_______________________________________________
List info: http://lists.roundcube.net/dev/
On Sun, 25 Apr 2010 16:16:00 +0200, fakessh <fakessh(a)fakessh.eu> wrote:
> On Sun, 25 Apr 2010 00:38:17 +0200, fakessh <fakessh(a)fakessh.eu> wrote:
>> On Sat, 24 Apr 2010 06:00:55 +0200, fakessh <fakessh(a)fakessh.eu> wrote:
>>> On Thu, 22 Apr 2010 17:58:43 +0200, fakessh <fakessh(a)fakessh.eu>
wrote:
>>>> On Thu, 22 Apr 2010 13:15:42 +0200, "A.L.E.C" <alec(a)alec.pl> wrote:
>>>>> fakessh wrote:
>>>>>
>>>>>> [root@r13151 ~]# diff --text -u
>> /home/ftpchrootshell/fakessh/sasl.txt
>>>
>>>>>
>>>>> BTW, http://trac.roundcube.net/ticket/1486647 ;)
>>
>>
>> pecl pam suffers from a known bug that prevents the proper use of
driver
>> pam
>> that is right
>>
>> http://pecl.php.net/bugs/bug.php?id=16995
>>
after further research it is necessary to type ctrl D.
how to write in this code
_______________________________________________
List info: http://lists.roundcube.net/dev/
On Thu, 22 Apr 2010 08:16:10 +0200, "A.L.E.C" <alec(a)alec.pl> wrote:
> fakessh wrote:
>
>> http://svn.php.net/viewvc/pecl/pam/trunk/README?view=markup
>
>> can you give me a simple example using this API
>
> something like that
>
> function password_save($currpass, $newpass)
> {
> if (extension_loaded("pam")) {
> if (pam_chpass($_SESSION['username'], $currpass, $newpass)) {
> return PASSWORD_SUCCESS;
> }
> }
> return PASSWORD_ERROR;
> }
I just finished the patch for pam
I do not know if you want to quickly implement
must make changes in files and installation documentation
short, the patch is simple
You may want to be more change in any case it is working perfectly on my
0.3.1 release
[root@r13151 ~]# diff --text -u /home/ftpchrootshell/fakessh/sasl.txt
/home/roundcube/www/plugins/password/drivers/sasl.php
--- /home/ftpchrootshell/fakessh/sasl.txt 2010-04-22
11:34:10.000000000 +0200
+++ /home/roundcube/www/plugins/password/drivers/sasl.php 2010-04-22
11:26:33.000000000 +0200
@@ -18,6 +18,16 @@
function password_save($currpass, $newpass)
{
+ if ( !extension_loaded('pam') && !extension_loaded('pam_auth') )
+ if ( !dl('pam.so') && !dl('pam_auth.so') )
+ echo( "PHP PAM module cannot be loaded" );
+ if ( pam_auth ($_SESSION['username'],$currpass) )
+ return;
+ if (pam_chpass($_SESSION['username'], $currpass, $newpass))
+ return PASSWORD_SUCCESS;
+ //return PASSWORD_ERROR;
+
+
$curdir = realpath(dirname(__FILE__));
$username = escapeshellcmd($_SESSION['username']);
$args =
rcmail::get_instance()->config->get('password_saslpasswd_args', '');
@@ -37,8 +47,5 @@
'message' => "Password plugin: Unable to execute
$curdir/chgsaslpasswd"
), true, false);
}
-
- return PASSWORD_ERROR;
}
-
?>
_______________________________________________
List info: http://lists.roundcube.net/dev/
Heya,
I am trying to implement a plugin to filter out some folders on the imap server (public_html, www, etc). The plugin hook list_folders seems just the right one (Triggered whenever a list of the mailboxes is requested from the IMAP class. If no plugin returns a list, the default list is retrieved.), but it seems that this plugin hook is not working as expected.
I can successfully filter out the "problematic" folders in mail view, but not in the manage_folders setting page.
Is this a feature or a bug?
The problem is that manage_folders plugin hook is not capable of deleting the certain rows from html_table object (I could write a new plugin to build html_table with "right" folders, but I would rewrite almost the whole manage_folders function).
Thank you in advance,
regards, Jernej
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
The plain blue, green, and red used to display quoted text (in
<blockquote>) in the default skin look a little out of place amongst the
muted colours used for icons and other elements. I've substituted them for
"Sky Blue", "Plum", and "Scarlet Red" from the Tango icon project's palette
and slightly lightened the background. The result (attached) doesn't look
too bad to me. I tried "Chameleon" (green) as well but that was a bit
weird.
(Tango palette:
http://tango.freedesktop.org/Tango_Icon_Theme_Guidelines#Color_Palette )
I think the colour of hyperlinks (which IIRC is the browser default and
usually plain blue again) could also use a similar change.
I haven't filed a ticket since this is largely subjective, and I'd like to
know what other people's preferences would be. I guess this might also have
minor consequences for colour-blind users.
-Albert
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/2x/D6EDeBei/roundcube-blockquote.pnghttp://detached.gigo.com/rc/2x/D6EDeBei/roundcube-blockquote.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/
I filed the following issue when I tried switching to RoundCube:
http://trac.roundcube.net/ticket/1486568#comment:3
...which as just been closed with a wontfix. Fair enough, bug trackers
aren't the place for discussion, so I'm here as I'm curious what the
design decision/objection is to letting users save their sent mails into
their Inbox?
Saving into the inbox is how I use my email account so threaded views
display in context, without it RoundCube isn't a viable option for me,
which is a shame, as it's a very nice client.
Admittedly, it also seems to be missing a threaded view, but that's
another issue.
- Jamie
_______________________________________________
List info: http://lists.roundcube.net/dev/
On Thu, 22 Apr 2010 12:29:07 +0200, "A.L.E.C" <alec(a)alec.pl> wrote:
> fakessh wrote:
>
>> according API
>> pam_auth() required before pam_chpass()
>
> API doesn't say this
>
>> it does not work without pam_auth()
>
> Are you sure?
YES
I just take the test by commenting lines in question "does not work
anymore"
pam_auth() required before pam_chpass() in php
Sorry, I have no testing environment, but c code of
> pam_chpass() contains pam_authenticate() call, so maybe it's not
> required to call pam_auth()
>
> http://svn.php.net/viewvc/pecl/pam/trunk/pam.c?view=markup#l291
_______________________________________________
List info: http://lists.roundcube.net/dev/