Dear all,
I'm running a RoundCube installation on a FreeBSD server here, and
it's fed by a *remote IMAP server. As recommended in the settings, I
set
$rcmail_config['enable_caching'] = true;
but despite this, accessing the mails is *dead slow. It takes at least
5 seconds to access any given folder, and this doesn't seem to change
after the folder has been accessed once (and hence cached?). This
makes using RoundCube quite inconvenient.
I'm quite oblivious as to what could cause such a slow performance,
but I'm willing to test and try.
Hints, anyone?
Cheers,
Nico
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello
How configure roundcube to display names from GECOS field into
the From: field ?
Actually we use LDAP backend and the name displayed is the *login*
( uid ) of the sender , I would like to display real names extract from
the GECOS field ( givenName LDAP attr )
thanks a lot
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
We've recently migrated our webmail service to RoundCube, but we've been
having some problems with Internet Explorer.
Internet Explorer tries to download the attachment but we get the error
showed in this picture:
http://feupload.fe.up.pt/get/cIICVrzuu0VmuKI
In all the other browsers we have no problem.
Has anyone encountered this problem?
Regards,
Filipe
--
Filipe André Romualdo de Carvalho
Unidade de Administração de Sistemas (UAS)
Centro de Informática Prof. Correia de Araújo (CICA)
Faculdade de Engenharia da Universidade do Porto (FEUP)
Tlf: (+351) 22 508 15 06 - SIP/VoIP: filipec(a)fe.up.pt / Ext: 3092
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello, Everybody!
I updated my Roundcube to the latest stable version, than I tried change
my signature.
I see this message:
"SERVICE CURRENTLY NOT AVAILABLE!
Error No. [500]"
error log:
[08-szept-2010 13:59:46] MDB2 Error: no such field (-19): _doQuery: [Error
message: Could not execute statement][Last executed query: PREPARE
mdb2_statement_mysql_3618113ed6cf01626cf4293df93d144dca8686918 FROM
'UPDATE
identitiesn SET changed=now(), `name`=?,`email`=?, `organization`=?,
`reply-to`=?, `bcc`=?, `standard`=?, `signature`=?, `html_signature`=?n
WHERE identity_id=?n AND user_id=?n AND del1'][Native code: 1054][Native
message: Unknown column 'changed' in 'field list']
[2010-Sep-08 13:59:46 +0200]: DB Error: _doQuery: [Error message: Could
not execute statement][Last executed query: PREPARE
mdb2_statement_mysql_3618113ed6cf01626cf4293df93d144dca8686918 FROM
'UPDATE
identitiesn SET changed=now(), `name`=?,`email`=?, `organization`=?,
`reply-to`=?, `bcc`=?, `standard`=?, `signature`=?, `html_signature`=?n
WHERE identity_id=?n AND user_id=?n AND del1'][Native code: 1054][Native
message: Unknown column 'changed' in 'field list'] in
/var/www/roundcube/program/include/rcube_mdb2.php on line 272 (POST
/roundcube/?_task=settings&_action=save-identity)
I think it's a database problem.
Can I make the new columns of RC database automatically (by an update
script)?
Best Regards,
Gabor Bernics
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
I try to write in English.
Since a few days I'm using CubeMail.
In Germany many Users uses an AW: instead of Re: in the subject of an
Reply-Mail.
Answering an Reply-Mail (starting with AW:) results in Re: AW: ..
That doesn't look good.
For this case I've added an line in the
program/steps/mail/compose.inc
starting at line 893:
// create a reply-subject
else if ($compose_mode == RCUBE_COMPOSE_REPLY)
{
// NEW begin
if (preg_match('/^aw:/i', $MESSAGE->subject))
{$MESSAGE->subject[0] = 'R'; $MESSAGE->subject[1] = 'e';} // AW: = Re:
// NEW end
if (preg_match('/^re:/i', $MESSAGE->subject))
$subject = $MESSAGE->subject;
else
$subject = 'Re: '.$MESSAGE->subject;
}
---cut---
Please add this function to future versions.
Best regards from Germany
Ulli (Heist)
--
http://heist.hobby-site.org/
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
New European Portuguese (pt_PT) translation for Managesieve plugin.
Hope that has everything correct.
Regards,
DC
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/HN/jgtehmxx/pt_PT.inc
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
I would like to know if it is possible to strip the '@domain.tld' part
from a certain group of users?
What I would like to achieve is that one group of users can login with
just username (with the aid of username_domain) AND that another group
(the system users) must use the local domain but that has to be stripped
otherwise pam auth will fail!
When I force the 'priviledged users to use their domain all is nice and
dandy ofcause. Then systemusers just give their username.
Any smart ideas?
TIA
Egbert Jan
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
With the latest svn version I can't send messages - nothing happens
when I click the 'Send' button.
I see the following in Opera's JS console (maybe it helps):
JavaScript -
https://xxxx.psw.ro/?_task=mail&_id=8232749224c7ba450a39d6&_action=compose
Uncaught exception: TypeError: Cannot convert
'ed.plugins.spellchecker' to object
Error thrown at line 2850, column 6 in <anonymous function:
stop_spellchecking>():
if (ed.plugins.spellchecker.active)
called from line 2799, column 4 in <anonymous function:
check_compose_input>():
this.stop_spellchecking();
called from line 850, column 8 in <anonymous function:
command>(command, props, obj):
if (!this.check_compose_input())
called from line 1, column 0 in <anonymous function>(event):
return rcmail.command('send','',this)
I managed to solve it by commenting 2 lines in program/js/app.js
2848 var ed;
2849 if (window.tinyMCE && (ed =
tinyMCE.get(this.env.composebody))) {
2850 // if (ed.plugins.spellchecker.active)
2851 // ed.execCommand('mceSpellCheck');
2852 }
Any thoughts about it?
Thanks!
--
Arthur Titeica
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
hello all
hello roundcube network
hello A.L.E.C and others developer
the managesieve plugin does not work anymore since the switch to
dovecot 2.0.0
the sieve language work into roundcube
must write the rules by hand
many return are welcome
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I'm having a problem in that emails from eBay are showing the logo on
top, but no body. I pulled up the print page, and viewed the source,
and it seemed to be stripping off the main content. Is this a known
issue? It would be nice if the user could have the option to "View As
Text".
I did find this message on the mailing list, but it's from 2006:
http://www.mail-archive.com/dev@lists.roundcube.net/msg01069.html
I'm still using 0.4-beta, unfortunately, because rcube-vacation does
not format it's page correctly.
--
Thanks,
Brad Landis
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi all,
my rc installation provide service for some domains, so users must login
with full email address instead username, to prevent errors I simply
changed in labels.inc this line:
$labels['username'] = 'E-mail';
I do not want edit create a skin for each domain... exists a better way
to get the same result? RC can provide something in config?
TIA
Alessandro
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello, list,
I tried to make the SASL SMTP authentication in roundcube works. I am
using mysql to handle virtual user/domain.
So at first I set in the main.inc.php as following:
/// SMTP username (if required) if you use %u as the username RoundCube
// will use the current username for login
$rcmail_config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password RoundCube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '%p';/
Then the SASL failed. maillog shows:
Aug 23 13:32:25 gamma postfix/smtpd[3884]: warning:
gamma.foo.com[127.0.0.1]: SASL LOGIN authentication failed:
authentication failure
I went to check mysql query log and found that %u only pass the user
portion to the query
After googling aroune I changed this line to:
/$rcmail_config['smtp_user'] = '%u@%d';/
Now it seems works. mail log shows:
/Aug 23 13:29:59 gamma postfix/smtpd[3838]: BB2B82D70088:
client=gamma.foo.com[127.0.0.1], sasl_method=LOGIN,
sasl_username=someuser@foo.com@%d/
And this time mysql got correct query in the WHERE clause.
But why is there always a %d at the end in the maillog? Should I use
other instead '%u@%d'?
Please help. Thanks.
--
Jian Gao
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
HI...
I need to know where RC store users preferences...
I installed RC on other server, but when my users make logged on, they
can't see theirs signatures...
How can I deal this???
Thanks
Gilberto Nunes
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello All,
i am new to roundcube and use it for a couple of friends i host for. so far, i like it a lot. However, i do have a problem: i have several contact groups with 30-300 addresses. roundcube shows 40 adresses in the standard view and says correctly "1-40 of 300". When i click the forward button next to this, however, i jump into the complete addressbook instead of advancing to the next page of group addresses. As a result, i can only see (and manipulate) the first 40 addresses.
Is this a bug? If so, is there a ticket and/or a way around it?
roundcubemail 0.4 running on debian lenny LAMP, tested w/ Chrome and Firefox on Mac.
TIA
Matthias
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
pysieved set up in /etc/inetd.conf setup
----------------------------------------
sieve stream tcp nowait root /usr/bin/python python
/var/lib/pysieved/pysieved.py --inetd --config /etc/pysieved.ini
/etc/pysieved.ini setup
------------------------
I use system accounts for mail access, so PAM authentication is
selected, and of course Exim storage model:
[main]
# Authentication back-end to use
auth = pam
# User DB back-end to use
userdb = passwd
# Storage back-end to use
storage = Exim
# Bind to what address? (Ignored with --stdin)
#bindaddr = 127.0.0.1
# Listen on what port? (Ignored with --stdin)
port = 2000
[... et cetera, stock template contents!]
Exim configuration, (shown as a patch)
--------------------------------------
The first diff hunk is against the "userforward:" router
section. I cloned the address_file transport and named the copy
address_file_forward, for forwarding only, so that we
are not changing the configuration of all routers that
use address_file!
I then changed this cloned transport to do maildir delivery.
It handles the INBOX. prefix that RoundCube's plugin
puts on the folders. E.g. if your rule says to
file into folder Foo, then the Sieve script actually
has fileinto "INBOX.Foo". The exim configuration
will translate this to /<yourhome>/Maildir/.Foo:
webserver:/etc/exim4# quilt diff
Index: exim4/exim4.conf.template
===================================================================
--- exim4.orig/exim4.conf.template 2010-08-18 11:52:21.000000000
-0700
+++ exim4/exim4.conf.template 2010-08-18 12:33:37.000000000 -0700
@@ -1241,7 +1241,7 @@
allow_filter
forbid_smtp_code = true
directory_transport = address_directory
- file_transport = address_file
+ file_transport = address_file_forward
pipe_transport = address_pipe
reply_transport = address_reply
skip_syntax_errors
@@ -1431,6 +1431,24 @@
envelope_to_add
return_path_add
+address_file_forward:
+ debug_print = "T: address_file_forward for $local_part@$domain"
+ driver = appendfile
+ delivery_date_add
+ envelope_to_add
+ return_path_add
+
+ maildir_format
+
+ directory = ${if eq{$address_file}{inbox} \
+ {$home/Maildir} \
+ {${if eq{${substr_0_1:$address_file}}{/} \
+ {$address_file} \
+ {${if match {$address_file}{^INBOX\.} \
+ {${sg {$address_file} \
+
{^(INBOX\.)(.*)\$}{$home/Maildir/.\$2}}} \
+ {$home/Maildir/$address_file}}}}}}
+
#####################################################
### end transport/30_exim4-config_address_file
#####################################################
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear,
I'd like to remove the Calendar function from RC completely. It seems that this setting is not in main.inc.php. How should I proceed?
Much Thanks!
Charles
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
hello A.L.E.C
and others developers
the plugin password is not fully functional whit pam
there is a bug in the documentation page pam
http://pecl.php.net/bugs/bug.php?id=16995
but is for other platform ( gentoo ) not CentOS ( my platform )
But I think the procedure correctly realize
i add in my php.ini
pam.servicename = "php"
cp /etc/pam.d/login /etc/pam.d/php
service httpd restart
This is the right procedure I think
but when I try to change password, change is denied
may be /etc/pam.d/php is not apache not readable
my permissions of /etc/pam.d/php is
# ls -al /etc/pam.d/php
-rw-r--r-- 1 root root 643 ao� 19 04:28 /etc/pam.d/php
I listen to all proposals to help
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello list,
This weekend I looked the first time into the password plugin - very great
plugin! Makes Roundcube even better as it already is, congratulations to all
the contributors!
If someone's interested in using Roundcube to be able to change email
account's passwords managed by Confixx, here's a small how to:
1) Grant SQL permissions for Roundcube DB-user:
- SELECT in database confixx, table pop3, coloumns account and longpw
- UPDATE in database confixx, table pop3, coloumn longpw
- UPDATE in database confixx, table allgemein, coloumn newpwd
2) Activate the password plugin in Roundcube main.inc.php:
$rcmail_config['plugins'] = array('password');
3) Copy plugins/password/config.inc.php.dist to
plugins/password/config.inc.php
Change/Verify that driver is set to sql: $rcmail_config['password_driver'] =
'sql';
Use the following SQL query as password_query:
$rcmail_config['password_query'] = 'UPDATE confixx.pop3, confixx.allgemein
SET confixx.pop3.longpw=%c, confixx.allgemein.newpwd=2 WHERE (account=%u)';
A more documented howto with explanations can be found here:
http://www.claudiokuenzler.com/ithowtos/roundcube_change_password_confixx.p…
Tested it with Roundcube 0.4-stable resp. SVN version r3897 and works fine.
cheers,
ck
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi there! how can I set as default email's body with Verdana 12, I saw it is
possible at signature but not at email body's
--
Saludos!!
Luciano Andino
GNU/Linux user #185103
Santa Fe - Argentina
-----------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I just installed RoundCube 0.4 on my mail server(centos5, Postfix,
Courier, MySQL) and it look great. Then I installed the Vacation Plugin
V.1.9.9. Now when I click Setting I got:
CONFIGURATION ERROR
Vacation plugin: Driver virtual does not allow transport to be empty.
Please edit config.ini
Please read the INSTALL instructions!
------------------------------
Here is the config.ini:
[root@mail vacation]# cat config.ini
[default]
driver = "virtual"
subject = "Default subject"
body = "default.txt"
[mail.mydomain.com]
dsn = "mysql://roundcube:password@localhost"
transport = "mail.mydomain.com"
dbase = "mail"
always_keep_copy = true
select_query = "SELECT destination FROM %m.virtual_aliases WHERE
source='%e' AND destination='%g'"
delete_query = "DELETE FROM %m.virtual_aliases WHERE domain_id=%i AND
source='%e'"
insert_query = "INSERT INTO %m.virtual_aliases
(domain_id,source,destination) VALUES (%i,'%e','%g')"
domain_lookup_query = "SELECT id FROM postfix.virtual_domains WHERE
name='%d'"
createvacationconf = true
always_keep_message = true
disable_forward = False
----------------------------------
When I configure the plugin, I got really confused on the transport
setting in config.ini. Please help me to make it works.
My mail server use Postfix with MySQL handle virtual user/domain. Some
related settings:
[root@mail vacation]# postconf -n
alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
mydestination = mail.mydomain.com, localhost, localhost.localdomain
myhostname = mail.mydomain.com
mynetworks = 127.0.0.0/8
newaliases_path = /usr/bin/newaliases.postfix
proxy_read_maps = $local_recipient_maps $mydestination
$virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps
$virtual_mailbox_domains $relay_recipient_maps $relay_domains
$canonical_maps $sender_canonical_maps $recipient_canonical_maps
$relocated_maps $transport_maps $mynetworks $virtual_mailbox_limit_maps
transport_maps = proxy:mysql:/etc/postfix/mysql-virtual_transports.cf
unknown_local_recipient_reject_code = 550
virtual_alias_domains =
virtual_alias_maps =
proxy:mysql:/etc/postfix/mysql-virtual_forwardings.cf,
mysql:/etc/postfix/mysql-virtual_email2email.cf,mysql:/etc/postfix/mysql-virtual_aliases.cf
virtual_create_maildirsize = yes
virtual_gid_maps = static:5000
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains = proxy:mysql:/etc/postfix/mysql-virtual_domains.cf
virtual_mailbox_maps = proxy:mysql:/etc/postfix/mysql-virtual_mailboxes.cf
-----------------------------------------------
Thanks for help.
--
Jian Gao
IT Administrator
SJ Geophysics Ltd. <http://www.sjgeophysics.com>
jian.gao(a)sjgeophysics.com <mailto:jian.gao@sjgeophysics.com>
Tel: (604)582-1100
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Dear Roundcube users
After the big new features in 0.4-beta this final release now completes the
unfinished work and fixes bugs related to the new threaded message listing
and address groups features. We also cleaned up the user interface and
tried to make all UI elements more consistent.
With this release the skins have been excluded from the GPL license terms
(see README file). This allows you to choose whatever license you want for
your custom skins and even opens the door for creating commercial skins.
We recommend to update all existing Roundcube installations with this
release. Get it from http://roundcube.net/download, a complete list of
changes can be found here: http://trac.roundcube.net/wiki/Changelog
Have fun,
Thomas
_______________________________________________
List info: http://lists.roundcube.net/users/
On Thu, 12 Aug 2010 13:26:40 +0200, Pawel Warowny <sysadmin(a)master.pl>
wrote:
> Dnia Wed, 11 Aug 2010 15:17:00 -0400
> Daniel Caleb <nix(a)tek12.com> napisał(a):
>
> Hi
>
>> Recently upgraded from SVN to 0.4 stable - and now the button to
>> attach files is grayed out. I updated the plugins as well, with
>> trunk_r-3878.
>
> If you created custom skin, try first to replace it with the default
> skin from 0.4.
Thanks for the quick reply... That was indeed the issue. Although I
hadn't made any real changes aside from colors and a few icons. The
default skin was left in place, and I assigned a specific folder on a
per domain basis for user logins. But, none the less, switching to the
default skin seemed to solve the problem. Thanks for the suggestion.
It's always the most obvious answers that are the hardest.
Daniel
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Recently upgraded from SVN to 0.4 stable - and now the button to
attach files is grayed out. I updated the plugins as well, with
trunk_r-3878.
Tried to isolate a plug conflict by removing all
plugins, except for filesystem_attachments - but that didn't seem to
help any.
Any ideas what might be causing this, and where to look for
clues?
thanks
Daniel
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
AOL users:
If you continue to mark this list as "spam", you risk having this list
blocked for *all* AOL users. Additionally, you'll risk having all other
lists I host, blocked, towards all AOL users. Your marking the mail as
spam causes damage to others.
As such, this is your warning: As I detect you marking the mail as spam,
you will be unsubscribed from the list, without notice.
- jason, wearing the hat of
postmaster(a)lists.roundcube.net
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e