Hi, I was looking at _fetch_headers() in rcube_imap.php, and I don't get
why $cache_index[$headers->id] != $headers->uid:
if ($this->caching_enabled && $cache_index[$headers->id] != $headers->uid) {
...
}
Why is it skipped when $cache_index[$headers->id] is equal to
$headers->uid?
Can someone point me in the right direction? Thanks.
--
Denny Lin
_______________________________________________
List info: http://lists.roundcube.net/dev/
I'm trying to let my plugin delete messages. I've read move_del.inc and
tried to recreate it in my plugin by using
$this->IMAP->delete_message($_GET['_uid'], $_GET['_mbox']); and different
varieties of it with no success. I figured I could do an ajax call with the
required postdata (_mbox, _uid etc) but I would really love having it work
on php level to expand my Roundcube knowledge.
If somebody could please point me in the right direction it'd be greatly
appreciated.
_______________________________________________
List info: http://lists.roundcube.net/dev/
Could everyone reply with which PHP version they currently use in
production? Off-list is ok too.
Thanks,
Till
_______________________________________________
List info: http://lists.roundcube.net/dev/
> // automatically create the above listed default folders on login
> $rcmail_config['create_default_folders'] = true;
this makes me believe that if the folders do not exist upon login,
they will be created.
but actually, they are only created if the user does not exist:
program/include/rcmail.php:627
> // user already registered -> update user's record
> if (is_object($user)) {
> // create default folders on first login
> if (!$user->data['last_login'] && $config['create_default_folders'])
> $this->imap->create_default_folders();
> $user->touch();
> }
> // create new system user
> else if ($config['auto_create_user']) {
> if ($created = rcube_user::create($username, $host)) {
> $user = $created;
> // create default folders on first login
> if ($config['create_default_folders'])
> $this->imap->create_default_folders();
...
this has been changed in r3232
so how do i get these default folders now, if i already have a rc
profile?
maybe we should create an option to auto-create the default folders
via "settings/special folders"?
thanks,
raoul
--
____________________________________________________________________
DI (FH) Raoul Bhatia M.Sc. email. r.bhatia(a)ipax.at
Technischer Leiter
IPAX - Aloy Bhatia Hava OG 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/
I'm unsure if it's a bug in roundcube or if I'm doing it wrong so I'm
posting on the list instead of making a ticket in the trac system.
Anyhow, I'm trying to add local directories of my users so that the size of
their other personal directories are added to the total used quota. The
problem is that the quota bar isn't affected by my changes. Here's some code
for reproduction:
public function quota($args) {
$args['used'] .= 1048576;
return($args);
}
The quota is completely unaffected by this, judging from the quota bar that
works in other cases.
Is this a bug or am I doing it wrong?
_______________________________________________
List info: http://lists.roundcube.net/dev/
I think this isnt said enough, but RC is really looking awesome lately. Some seemingly minor UI changes have really improved things. Ive been running recent versions in production (currently running 3813 :), and im only getting positive comments from people using it. We're also starting to see some really cool plugins, so thats helping a lot.
I think when you guys release 0.4, people are going to be very happy. I would personally even consider calling 0.4 1.0 instead, as it would take RC out of what looks to some like a beta stage. RC is far from a beta stage. It's stable, fast, very well designed, robust plugin architecture, etc. Releasing a 1.0 would give it the status it deserves.
Regards,
Cor
_______________________________________________
List info: http://lists.roundcube.net/dev/
Hello,
svn revisions 3789 and 3810 changed the compose screen in the default
skin of roundcube. Thanks for this change, I really like the new compose
screen. Body field is bigger now, and the options menu is a great
innovation as well.
The only think I don't like about the new compose screen, is the big
size of attachments field. What's the reason to make it that large?
Mails with more than one or two attached files are very rare.
In my eyes it would be much better so limit the height of attachments
field, and leave some space below it, which can be used by plugins. For
example the GnuPG plugin - once available - could use that space for
selection of encryption/signation and sender/recipient key.
Many thanks for the great work on roundcube, especially to Alec, who
seems to do the major work these days. You rock!
greetings,
jonas
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/s0/AsCvL42e/signature.asc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/dev/