I'm trying to tweak roundcubemail to allow recipient addresses without
a domain - e.g., "billy" instead of "billy(a)example.com". I'm sure this
is completely invalid, but postfix and my old webmail will tolerate it
for local users.
I'd like to do this "correctly" rather than just hack my changes in so
as to avoid upgrade problems later on (at least as much as possible).
Adding a config setting to selectively enable the behavior is
straightforward on the PHP side, but there's also a javascript-based
validation I need to bypass. Does the project have any standard or
recommended way for exposing main.inc.php settings to javascript?
Patch of what I changed is attached if it helps clarify. For the sake
of readability, it references the .js.src file instead of the minified
one.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ca/aCDpcLdH/rcm-omit-domain.patc.gz
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi
We are using rc 0.7.1 with messages cache enabled and we noticed that
our cache_messages table in mysql is full of cache records since upgrade
(1 month). These records should be purged after defined period of time.
Is that a bug? Should we delete records manually with cron job? Any
suggestions?
$rcmail_config['messages_cache']='db';
$rcmail_config['message_cache_lifetime']='1h';
Regards,
Jure Kranjc
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
http://trac.roundcube.net/ticket/1488331
I've code a plugin for that. I'd like to ask for your opinions.
Would you prefer to have a separate link 'Manage Plugins' in
settings section or should this plugin hook into designated
sections, f.e.:
uisettings -> display GUI related pluings,
addressbook-> display addressbook related plugins,
... and a link 'Misc' link to catch the rest in settings
navigation ?
Regards,
Rosali
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
What happened to $rcmail_config['date_today'] in main.inc.php?
The datetime on emails does not show as "Today" + time anymore, it
shows the full datetime on today's emails
Is there a new way to set
this?
Thanks!
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
the labels for the "spellcheckignore*" buttons on the settings page
are all the same (rcmfd_spellcheck_before_send).
I've attached a patch.
Regards,
Alex
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Mq/U7b9hHUi/fix_func.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/
BT/aba52c80
> Message: 1
> Date: Sun, 05 Feb 2012 19:19:15 +0100
> From: Roland Liebl <roland(a)roland-liebl.de>
> Subject: [RCD] Plugin to load plugins according to users choice
> To: "Dev List (Roundcube)" <dev(a)lists.roundcube.net>
> Message-ID: <69d7cab3d224de1fa671e302d0c100d6(a)roland-liebl.de>
> Content-Type: text/plain; charset=UTF-8; format=flowed
>
> http://trac.roundcube.net/ticket/1488331
>
> I've code a plugin for that. I'd like to ask for your opinions.
>
> Would you prefer to have a separate link 'Manage Plugins' in
> settings section or should this plugin hook into designated
> sections, f.e.:
>
> uisettings -> display GUI related pluings,
> addressbook-> display addressbook related plugins,
> ... and a link 'Misc' link to catch the rest in settings
> navigation ?
>
> Regards,
> Rosali
Rosali,
I think this would be a great addition, as long as there would be a
mechanism similar to the "dont_override" array so that some plugins
could be required.
---
Arne Berglund
System Administrator, Internet Services
Lane Education Service District
Eugene, OR
____________
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
Ran a diff against 0.7.1 and my install and noticed that
config/mimetypes.php didn't get updated by the install script. Not sure
if this is by design or not, since that file might be modified by the
local installation.
No big deal, just a heads-up for later.
Thanks,
- R.
--
[__ Robert Sheldon
[__ Founder, No Problem
[__ Information technology support and services
[__ (530) 575-0278
[__ "You must be the change you wish to see in the world." -- Mahatma
Gandhi
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
In 0.7.0 and 0.7.1, I can't seem to get Roundcube to disable the
forward-as-attachment setting. I tried tracking down the cause but
unfortunately I'm not familiar enough with how Roundcube passes settings
between PHP and Javascript to figure this one out in a reasonable amount
of time.
If I hardcode a "$OUTPUT->set_env('forward_attachment', false);" into
program/steps/mail/show.inc, or comment out the existing code for it, it
doesn't seem to affect the behavior of the JS in the interface. If I
pull up a developer console in the browser and set
rcmail.env.forward_attachment to false, then everything's groovy. It's
set to true somewhere during page/message load, but for the life of me I
can't figure out where or how or why.
Anybody else seeing this? Any hints on tracking this down?
Thanks,
- R.
--
[__ Robert Sheldon
[__ Founder, No Problem
[__ Information technology support and services
[__ (530) 575-0278
[__ "You must be the change you wish to see in the world." -- Mahatma
Gandhi
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Hi,
Does anyone have or recommend a nice walk-through/quick-start
installing, configuring dovecot, and the ideal linux variation to run it
on?
I of course can google it, but there are tons of options, please
if someone can suggest the best, that would be awesome!
We use
hMailserver right now, it's nice, but it's difficult to restore certain
things from backup (like a user folder deleted by accident), and it does
not support threading.
Thanks!
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80
Besides the new skin in 0.8 I'd like to start working on Roundcube
Framework. It means Roundcube will provide a set of classes that can be
used by other projects. Now, rcube_imap_generic class is known as one of
the best IMAP handling classes, but there are people that would like to
use something more abstract i.e. rcube_imap class. This is not simple
now because of its dependencies.
So, here are some steps I want to make:
- create abstract rcube_storage class and build rcube_imap as
rcube_storage implementation (driver) - this is to allow creation of
other drivers, e.g. SQL-based, POP3,
- exclude mime related functions from rcube_imap into new rcube_mime class,
- split main.inc and rcube_shared.inc functions into a few classes:
rcube_converter, rcube_ui, rcube_utils and maybe some into existing classes,
- create rcube_framework class, that can be a parent for rcmail class,
- framework-related changes to existing classes, e.g.
- get rid of $rcmail object usage in classes,
- can we exclude rcube_user class?
- make output/html/template classes optional,
- unify codestyle according to our CS ruleset
--
Aleksander 'A.L.E.C' Machniak
LAN Management System Developer [http://lms.org.pl]
Roundcube Webmail Developer [http://roundcube.net]
---------------------------------------------------
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
_______________________________________________
List info: http://lists.roundcube.net/dev/
BT/aba52c80