Hi all,
Here is another patch to message list.
It adds column with Junk/NonJunk IMAP flag to a message list.
Everything is done in a thunderbird-like manner.
Known issues:
1) Hook needs to be added to "mark_as_junk"/"mark_as_non_junk" actions
(report message to SpamAssassin, move it to a 'Junk' folder
functionality, etc. should be moved to plugins).
2) Thunderbird actually uses two flags, "Junk" and "NonJunk". For now,
message without any of these flags is shown as NonJunk (without any
icon), but such message is not shown when one chooses an "Only Not Junk"
filter. I'm unsure how to implement full support for two flags with only
one icon (make it a three-state?). The only way to mark message as a
NonJunk is to mark it as Junk before (in sieve or manually).
3) "Junk" and "NonJunk" are nonstandard user flags, but I hardcoded them
into code for simplicity (as user flags handling is not done yet in a
roundcube core).
4) I'm not aware of other MUA's, how do they mark messages. If it
differs, then compatibility type should be introduced, and it should be
made an user-definable option.
5) Icons are stolen from thunderbird and a bit crappy on a red
background when message is selected.
6) This revision of patch applies only on a top of threaded view patch I
sent in a previous e-mail. Actually, they touch code in a same places,
and it is quite hard to keep changes in sync between thread-aware and
unaware versions, so I work only with a former one.
Current code works stable, but polishing is needed (I'm about IMAP flags).
Comments are welcome,
Best,
Vladislav
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/yQ/Pn6TafGf/roundcubemail-0.3-ju.patchhttp://detached.gigo.com/rc/yQ/Pn6TafGf/junk.pnghttp://detached.gigo.com/rc/yQ/Pn6TafGf/nonjunk.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/
Hello list,
Could you help me out with the managesieve plugin? This way I could
contribute with some testing on my home box. ;)
I have a standard Opensuse 11.0 with dovecot 1.0. I have built a new 1.2.5
dovecot from source,
with dovecot-sieve and dovecot-managesieve. Everything looks fine.
(The old 1.0 dovecot was installed, I use it's config and init scripts for
the newer (1.2.5) one)
dovecont.conf is soft-linked, the binary was changed in the init script, I
think it should be enough...
# ll /usr/local/etc/dovecot.conf
lrwxrwxrwx 1 root root 25 Sep 18 10:43 /usr/local/etc/dovecot.conf ->
/etc/dovecot/dovecot.conf
# grep DOVECOT_BIN /etc/init.d/dovecot
#DOVECOT_BIN=/usr/sbin/dovecot
DOVECOT_BIN=/usr/local/sbin/dovecot
This way I could config the managesieve plugin in roundcube to get to
work,
at least I can click some sieve rules on the web interface.
But the filtering isn't working! I think the problem could be that the
system uses postfix as LDA.
Am I right? Or what could be the reason? I think on SuSE we should wait
until the dovecot repo
gets refreshed to at least 1.1 and we need sieve/managesieve support for
the prebuilt binaries.
Until then, the average user won't be using this long-awaited plugin on
SuSE. :(
My question is, could someone point me into the right direction,
how could I debug my case and see what isn't working?
Regards,
Viktor
--
Visit my panoramic photoblog!
http://vrphoto.hu
Spherical panoramas by Viktor Balogh
_______________________________________________
List info: http://lists.roundcube.net/dev/
- Updated czech translation for RoundCube (labels.inc)
- Czech translation for RoundCube passsword plugin (cs_CZ.inc)
best regards Milan Kozak
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/pY/MVrpobwl/labels.inchttp://detached.gigo.com/rc/pY/MVrpobwl/cs_CZ.inc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
Can i omit non-unicode characters to avoid the error: Server Error! (OK).
The sent-mail folder from another webmail are with non-unicode characters.
How can omit these characters?
--
----------------------------------------------------------------
Tiago Gomes Pereira http://www.tiagogomes.eti.br
LPI Certified
LPI ID - LPI000129445
IT Service Management - ITIL FOUNDATION V2
ID - SR341901
algodas(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi all,
Random noob question. Is there a reason why there's a CSS file for every HTML file? Is there some efficiency gained? I ask because for me, it makes theming a bit harder by in a way, duplicating styles (different IDs or class names, but essentially the same style applied). Would it be a problem to combine these when creating themes or is it best to keep them separate?
Thanks!
// Andres.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hi,
thanks a lot!
On Mon, 21 Sep 2009 12:29:14 +0200, Nicolai Brogaard <nmb(a)minserver.dk>
wrote:
> On Mon, 21 Sep 2009 00:11:40 +0200, pete <pete(a)teamlupus.hu> wrote:
>> Hi Thomas,
>>
>> thanks for the answer. I feel some misunderstanding there, because what
> i
>> tried to tell that RC only checks for wether safe_mode is on before
> using
>> the set_time_limit function, and this logic fails where the php engine
> not
>> running in safe mode but has the set_time_limit function disabled. The
>> errors are many lines in the log, which makes it's size way bigger than
>> otherwise. AFAIK there is no functionality regression, or other problem.
>>
>> Meanwhile in my installation i did a workaround by enabling safe_mode.
>>
>>
>> On Sat, 19 Sep 2009 14:25:03 +0200, Thomas Bruederli
> <roundcube(a)gmail.com>
>> wrote:
>>> pete wrote:
>>>> hi,
>>>>
>>>> on line 67, it only checks if it runs on safe_mode enabled. Not in
>>>> safe_mode, but with set_time_limit disabled, it produces an error
>>>> message,
>>>> about 10-30 lines for a session of one user.
>>>>
>>> From the documentation of set_time_limit() on php.net:
>>>
>>> This function has no effect when PHP is running in safe mode. There is
> no
>>> workaround other than turning off safe mode or changing the time limit
> in
>>> the php.ini.
>>>
>>> ~Thomas
>
> http://trac.roundcube.net/ticket/1486149
>
> created a ticket.
> attached a patch, hope you like it.
>
> mvh.
> Nicolai Brogaard
--
Péter
XMPP, MSN: peter.laszlo.szabo(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
I'm writting a plugin for select host from user's login, so I have to
not show the server box on login form.
If I leave 'default_host' blank at main.inc.php the "Server" box
appears, and if I put something on the config variable the plugin does
not work, because default host takes precedence over the host selected
by the plugin.
Is there a way to hide "server" box on login form without assign a value
to "default_host" or I have found a bug on default_host setting?
Thank you all, nice job :)
Pedro
--
------------------------------------------------------------------------
Pedro R. Benito da Rocha - Servicio de Informatica - Area de Sistemas
Universidad de Burgos (España) E-mail: pedro(a)ubu.es Tel: +34 947258845
------------------------------------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/dev/
hi,
on line 67, it only checks if it runs on safe_mode enabled. Not in
safe_mode, but with set_time_limit disabled, it produces an error message,
about 10-30 lines for a session of one user.
is it changed in 0.3?
--
Péter
XMPP, MSN: peter.laszlo.szabo(a)gmail.com
_______________________________________________
List info: http://lists.roundcube.net/dev/
I use qmail with vpopmail as mail-server.
vpopmaild can be used to change password among other things.
Using vpopmaild in a vpopmail enviroment, lets vpopmail take care of
database backend. And vpopmail-server and webmail-server can be separated.
I have attached a vpopmaild driver to use with the password plugin.
'vpopmaild.php'.
It is based on vpoppassd.php!
Also included are the new config.inc.
I added to config.inc this:
$rcmail_config['password_driver'] = 'vpopmaild';
// vpopmaild Driver options
// -----------------------
// The host which changes the password
$rcmail_config['password_vpopmaild_host'] = 'localhost';
// TCP port used for vpopmaild connections
$rcmail_config['password_vpopmaild_port'] = 89;
Please review, and commit it to the svn.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Y3/3h1glqMU/vpopmaild.phphttp://detached.gigo.com/rc/Y3/3h1glqMU/config.inc.php
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 Till,
Why you've commented the line 38 (Header append Cache-Control public
env=!NO_CACHE )
in changeset 2939 (
http://trac.roundcube.net/changeset/2939/trunk/roundcubemail/.htaccess)?
I'm dealing with an apache/1.3 500 error caused by this line (when active).
You've commented
it to prevent this error?
Thank you!
--
Victor Benincasa
_______________________________________________
List info: http://lists.roundcube.net/dev/