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
please ignore. updating the footer for the list in order to better handle
spam complaints.
_______________________________________________
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi all,
a big thanks to developers for roundcube.
I subscribed to announce@ mailing list, but recent release do not sent
there,
like users@ and dev@ ML...
best regards
Alessandro
_______________________________________________
List info: http://lists.roundcube.net/users/
hello all
hello the developer ( A.L.E.C and others )
the new release is well done ... very fine
but it is very slow
thanks for advice
thank
_______________________________________________
List info: http://lists.roundcube.net/users/
Greetings, all.
I actually don't think this is strictly a Roundcube issue, but I'm
hoping someone may be able to shed some light on it.
I have two identical SVN r3788 instances, one will display messages
with embedded HTML (no separate HTML attachment), but the other will
not. In the one that fails, the source shows all images, P tags, Table
tags, etc. are loaded, but no message text.
The only differences between these two instances are the servers
running them. The one that works is a Fedora Core 10 virtual machine,
Apache with PHP 5.2.9. The one that fails is RHEL5-5 running PHP
5.2.13. The php.ini are essentially identical, and all of the same PHP
modules appear to be installed on both systems.
Any ideas? Since the RHEL box is our production server, I would prefer
to get that instance working properly.
--
Arne Berglund
System Administrator, Internet Services
Lane Education Service District
Eugene, OR
____________
_______________________________________________
List info: http://lists.roundcube.net/users/
All,
I have a completely functioning roundcube install that I would like to move from
a local database to one on another host. What changes would I need to make for a
SSL connection to the mysql database on the other host.
My understanding is that: "mysql://user:pass@hostname/databasename" will pass
credentials in the clear
Thanks!
Nathan
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I run a rundcube webmail system,and don't konw how to add "fileinfo"
optional,can you help me
Bye the way,i run a debian and php5 version is 5.2.6 and have download
the Fileinfo-1.0.4.tgz,but i don't know how to make && make install it.
--leon
_______________________________________________
List info: http://lists.roundcube.net/users/
On Thu, 05 Aug 2010 08:39:58 +0200, haralder <haralder(a)gmail.com> wrote:
> Did you install the JQuery UI plugin? I had the same problem on the
first
> install and that was the reason.
>
> http://underwa.ter.net/roundcube-plugins/
>
> regards,
> Harald
>
>>>
>>> Thank you for the hint. Thats it, i forgot that plugin :).
>>> Now it works
>>>
>>> Thank you
> On Thu, 05 Aug 2010 07:46:23 +0200, Thomas Schober
> <thomas.schober(a)gmail.com> wrote:
>> Hi,
>>
>> i successfuly installed the calendar plugin into roundcube beta 0.4.
But
>> it is not possible to edit the calendar, its just for viewing. It works
> to
>> inlcude feeds from google calendar, but also only read only. Is it
> possible
>> to insert appointments into this calendar ? Did anyone get this to work
> ?
>>
>> Best Regards
>> Tom
>> _______________________________________________
>> List info: http://lists.roundcube.net/users/
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
i successfuly installed the calendar plugin into roundcube beta 0.4. But
it is not possible to edit the calendar, its just for viewing. It works to
inlcude feeds from google calendar, but also only read only. Is it possible
to insert appointments into this calendar ? Did anyone get this to work ?
Best Regards
Tom
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I'v just had to transfer number of contacts from Thunderbird into
Roundcube (ebox-platform 1.4 default, 3.1?). To do that I had to install
MoreFunctionsForAddressBook add-on for exporting vCard.
Sadly, not all addresses where imported, because Thunderbird collects
(and add-on exports) addresses from received emails, witch has empty
Full Name by default, witch is then skipped by vCard importing code.
So in order to import them I wrote a small patch (see attachment) witch
uses (preferred) e-mail address if no FN is defined.
Looking differently, maybe it's add-on problem that he exports
non-standard vCards? Either way, may the developers judge this! :)
Thanks,
Vincas.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/ZU/KtJofb3R/rcube_vcard.php.patch
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/users/
I've been using 0.4 beta, because attaching a file is buggy in 0.3.1
(large files silently fail to attach). But there are still a few
issues in 0.4-beta as well. My main question is why does roundcube not
release more beta's as more issues are fixed. 0.4-beta was released in
April, so it has almost been 4 months. And the fact that it's not
called "beta1" suggests that there will be only one beta release,
correct?
One thing that I see is that the virtuser_file plugin is either not
well enough documented, or it's not working correctly. I have
hardcoded the virtuser_file variable because when I added the config
option to the global config option, it did not get it correctly. I
really don't think that plugin variables should be stored in the main
config anyways.
I love roundcube, and I understand that beta software really isn't for
live environments, but I would think that there would be at least 2 or
3 beta's for something as important as mail software. That is just my
suggestion though.
I'd be even happier to see a stable 0.4 released. Thanks for all of your work.
--
Thanks,
Brad Landis
_______________________________________________
List info: http://lists.roundcube.net/users/
On Mon, 2 Aug 2010 17:33:09 +0200, Cor Bosman <cor(a)xs4all.nl> wrote:
> We have about 50,000 users depending on it right now, and im running
> SVN-3838 or something. The SVN versions are generally better than
> 0.4-beta. But you have to be willing to be on top of things. I check
> the tracker almost every day to see if any serious issues were
> addressed, or more importantly, patches were reversed.
>
> Cor
>
Agreed. My ~2000 users are on r3788. I decided to hold it there until
the Safari/Windows attachment bug was fixed. (That happened over the
weekend.) I do not update my "production" server until I have
identified
a stable Trunk release, and even then only after testing.
I would recommend that if you decide to go this route, install
Subversion to checkout and manage your Trunk version rather than
manually downloading a nightly build. Using Subversion you can easily
backout a bad update.
- Arne
==================================
I want to add a comment to this. I have no real concerns about using a
trunk version in production - with two requirements.
One is that I be deliberate and careful in testing and choosing a
stable release, and that once a stable version has been identified and
placed into production, don't keep upgrading as the trunk changes. Wait
for a compelling reason to change.
The other is that I probably would NOT use a trunk early in the
development cycle. Doing so now as we approach the stable release isn't
too bad, but early on it would be harder to find a version to sit on.
--
Arne Berglund
System Administrator, Internet Services
Lane Education Service District
Eugene, OR
541.461.8343
____________
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi, using roundcube 0.4beta I see very slow performance when double
clicking on an email before it finally displays the email (45 secs) -
this is in a large inbox of some 33,000 messages (with threading enabled).
The inbox itself displays quickly (1-2 secs), emails displayed in the
preview window display instantly, it's simply double clicking an email
to open it which is extremely slow (regardless of whether the preview
window is displayed).
The issue appears to be threading related - if I disable threading on
the inbox then there is no delay on double clicking, only if I ask for
the inbox to be threaded is there a delay opening an email
This seems to be confirmed by the log files from the mail server
(Dovecot) which shows the imap requests on opening the message as follows:
cp01 CAPABILITY
sel1 SELECT "INBOX"
FH12 UID FETCH 52231 (UID RFC822.SIZE FLAGS INTERNALDATE BODYSTRUCTURE
BODY.PEEK[HEADER.FIELDS (DATE FROM TO SUBJECT REPLY-TO IN-REPLY-TO CC
BCC CONTENT-TRANSFER-ENCODING CONTENT-TYPE MESSAGE-ID REFERE
NCES DISPOSITION-NOTIFICATION-TO X-PRIORITY X-DRAFT-INFO)])
thrd1 THREAD REFS US-ASCII ALL
s SORT (ARRIVAL) US-ASCII ALL
fuid FETCH 33027 (UID)
fuid FETCH 32991 (UID)
fuid FETCH 33006 (UID)
fuid FETCH 6738 (UID)
lsb LSUB "" "*"
ftch0 UID FETCH 52231 (BODY.PEEK[1])
I LOGOUT
And in particular the corresponding "thrd1" response is a huge list of
all the threads in the inbox. Top shows that there is a ton of load due
to the php task. However, although I haven't yet looked at the code, I
really don't see why we need a list of all the message threads when
opening just an individual message?
Does anyone have a suggestion as to a possible fix?
Thanks
Ed W
_______________________________________________
List info: http://lists.roundcube.net/users/
The installation docs say to install Roundcube in the doc root directory. But of which user? Do I create separate user? Is this a server-wide solution or just for an individual user?
Bob
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all,
I have issues with moving messages to IMAP folders. Message listing and
viewing in folders works just nice.
If I drag and drop a message from message list to a folder in the tree
view I get an error message saying moving the message is impossible.
The logs/errors file does not log anything. The request POST is:
_mbox=INBOX&_target_mbox=somefolder.subfolder&_from=&_uid=8659&_remote=1
and the response is
{"action":"moveto","unlock":false,"exec":"this.list_mailbox();\nthis.display_message(\"Impossibile
spostare il messaggio\",\"error\");\n"}
thanks
Luca
_______________________________________________
List info: http://lists.roundcube.net/users/
Well, I've royally messed up in that all of the users in our system
are now identified by username@localhost, instead of using the domain.
I enabled the virtuser_file plugin in 0.4-beta, and after working
around a few errors, it now identifies the new users correctly. How do
I tell roundcube to refill the identities table of all of the users
that currently have an account?
--
Thanks,
Brad Landis
_______________________________________________
List info: http://lists.roundcube.net/users/
Hallo!
Ich teste gerade roundcube und finde es toll! Da es direkt auf unserem
rootserver läuft, ist im Login-screen die Angabe des Servernamens irritierend.
Lässt sich da nicht dauerhaft "localhost" eintragen und die Zeile "Servername"
ausblenden? Wo kann ich das einstellen?
Grüße
Andreas
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi
How can I change Settings globally? I want to put "Attachment names" to "Full RFC 2047 (other)" for all users.. Thanks.
Atenciosamente,
Rafael Guedes de Souza
Analista de Suporte
ipTrust Tecnologia Ltda - Florianópolis/SC
Fone DDR +55 48 3031 3492
Fone Cel. +55 48 8811 7281
Fone Com. +55 48 3333 1551
VMware Sales Professional
VMware Technical Sales Professional
IronPort Systems Partner
Riverbed Tecnhology Partner
VMware Enterprise Partner
Eset Nod32 Partner
EMC² Partner
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I installed password plugin (which allows user to change his/her password)
from SVN. And I realized that there is no Turkish translation available. I
am sending Turkish translated file, can you please add it?
(plugins/password/localization/tr_TR.inc)
Thanks,
--
H.Gökhan SARI
hsa2(a)difuzyon.net
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Gl/Wyrb3oSx/tr_TR.inc.tar.gz
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I'm using virtual folder with dovecot, and roundcube as my
webmail.
When I delete normal folders on my IMAP server, they disappear
on roundcube, but when I delete virtual folders, I can't see them anymore
in the "Preferences/Folder" tab, but they still appear in the main view,
and there's apparently no way to get rid of them.
Any tips on the matter?
Thanks
--
François-Xavier Payet
fx.payet(a)tfdn.org
_______________________________________________
List info: http://lists.roundcube.net/users/
Still beating my head against the wall on getting virtuser_file to
work. I have checked out a new SVN copy (currently 3785), built a brand
new database, and the only plugin enabled is virtuser_file. No luck. I
have the plugin set to pull from a local file on the same server as RC
is running. Any help would be greatly appreciated.
--
Arne
Berglund
System Administrator, Internet Services
Lane Education Service
District
Eugene, OR
541.461.8343
____________
_______________________________________________
List info: http://lists.roundcube.net/users/
Error: tinyMCE is not defined
Source File: /roundcubemail-0.4-beta/program/js/editor.js?s=1270216758
Line: 20
/*
+-----------------------------------------------------------------------
+
| RoundCube editor js library
|
|
|
| This file is part of the RoundCube web development suite
|
| Copyright (C) 2006, RoundCube Dev, - Switzerland
|
| Licensed under the GNU GPL
|
|
|
+-----------------------------------------------------------------------
+
| Author: Eric Stadtherr <estadtherr(a)gmail.com>
|
+-----------------------------------------------------------------------
+
$Id: editor.js 000 2006-05-18 19:12:28Z roundcube $
*/
// Initialize HTML editor
function rcmail_editor_init(skin_path, editor_lang, spellcheck, mode)
{
if (mode == 'identity')
tinyMCE.init({
Confidentiality Statement & Notice: This email is covered by the
Electronic Communications Privacy Act, 18 U.S.C. 2510-2521 and
intended only for the use of the individual or entity to whom it is
addressed. Any review, retransmission, dissemination to unauthorized
persons or other use of the original message and any attachments is
strictly prohibited. If you received this electronic transmission in error,
please reply to the above-referenced sender about the error and
permanently delete this message. Thank you for your cooperation.
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I've upgraded from 0.4beta to SVN (branches/release-0.4-beta) to see if
my problems with creating redirect rules were solved.
The managesieve plugin refuses to load, probably needs updating.
Disabling rcube_parse_host makes it load, i guess this was broken by
roundcube changes.
--- managesieve/managesieve.php (revision 3785)
+++ managesieve/managesieve.php (working copy)
@@ -62,7 +62,7 @@
require_once($this->home . '/lib/Net/Sieve.php');
require_once($this->home . '/lib/rcube_sieve.php');
- $host =
rcube_parse_host($this->rc->config->get('managesieve_host',
'localhost'));
+ $host =
$this->rc->config->get('managesieve_host', 'localhost');
$port = $this->rc->config->get('managesieve_port', 2000);
// try to connect to managesieve server and to fetch the script
I guess this needs to be fixed properly, I removed it for testing
purposes.
Once loaded, I can create filter sets, and delete rules but not redirect
rules. When creating one I specify the folder in which to redirect the
message and click save, the rule creation page is redisplayed with the
folder selection dropdown replaced by a free text input box with a
yellow background.
No errors in logs/error, logs/sieve tells:
[26-Jun-2010 01:30:28 +0200]: S: "IMPLEMENTATION" "Dovecot"
[26-Jun-2010 01:30:28 +0200]: S: "SIEVE" ""
[26-Jun-2010 01:30:28 +0200]: S: "SASL" "PLAIN"
[26-Jun-2010 01:30:28 +0200]: S: "STARTTLS"
[26-Jun-2010 01:30:28 +0200]: S: "VERSION" "1.0"
[26-Jun-2010 01:30:28 +0200]: S: OK "Dovecot ready."
[26-Jun-2010 01:30:28 +0200]: C: CAPABILITY
[26-Jun-2010 01:30:28 +0200]: S: "IMPLEMENTATION" "Dovecot"
[26-Jun-2010 01:30:28 +0200]: S: "SIEVE" ""
[26-Jun-2010 01:30:28 +0200]: S: "SASL" "PLAIN"
[26-Jun-2010 01:30:28 +0200]: S: "STARTTLS"
[26-Jun-2010 01:30:28 +0200]: S: "VERSION" "1.0"
[26-Jun-2010 01:30:28 +0200]: S: OK "Capability completed."
[26-Jun-2010 01:30:28 +0200]: C: AUTHENTICATE "PLAIN" "[SNIPPED]"
[26-Jun-2010 01:30:28 +0200]: S: OK "Logged in."
[26-Jun-2010 01:30:28 +0200]: C: LISTSCRIPTS
[26-Jun-2010 01:30:28 +0200]: S: ".dovecot.sieve" ACTIVE
[26-Jun-2010 01:30:28 +0200]: S: OK "Listscripts completed."
[26-Jun-2010 01:30:28 +0200]: C: GETSCRIPT ".dovecot.sieve"
[26-Jun-2010 01:30:28 +0200]: S: {586}
[26-Jun-2010 01:30:28 +0200]: S: # Sieve Filter
[SNIPPED]
[26-Jun-2010 01:30:28 +0200]: S: OK "Getscript completed."
[26-Jun-2010 01:30:28 +0200]: C: LOGOUT
[26-Jun-2010 01:30:28 +0200]: S: OK "Logout completed."
Seems OK to me, and also the new rule creation is not even attempted, so
I guess the issues are not in the rc/dovecot managesieve dialogue.
Any ideas? Should this be reported to someone else since it seems a
problem with the managesieve plugin?
thanks
Luca
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I know there was another discussion regarding this last week.
But, it seems to have gone dormant.
I'm having an issue uploading
files over, seems to be around 11 megs, over that and the attachment
never seems to appear in the attachment list. It finishes uploading, and
I can see a file of that size appear in /tmp. However, then the icon in
attachment list just spins and Roundcube never progresses past that
point.
I'm using Roundcube svn 3765 with postfix and dovecot. I have
everything (postfix, php, .htaccess) set to allow attachments up to
35MB. When using a desktop mail client I can send attachments of that
size without a problem. The problem seems to only exist in Roundcube.
Is this a known issue? I didn't see anything in the Bugtracker.
Thanks
Daniel
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi –
I’m trying to support a small local branch of the Humane Society with their webmail issues. They have a ongoing issue where their ID and password simply stop working (“Login Failed”), preventing them from accessing their mail. I have checked the obvious “is it plugged in?” issues like using the numeric keypad with numlock off, proper case sensitivity, etc., and can’t solve this. Can anyone offer any suggestions on how to fix this?
Thanks!
Jackie
_______________________________________________
List info: http://lists.roundcube.net/users/
Sorry if this is a known bug - I tried to search the bug trakker, but it reports
an internal error.
I have just upgraded from roundcube-0.3.1 to 0.4-beta. I'm now seeing a problem
sending messages with attachments. On send, there is an error popup that
disappears too quickly to read it. The message does not get saved into the sent
items folder. In the logs, I get:
[24-Jun-2010 09:44:40 +0100]: IMAP Error: Could not save message in Sent
in /srv/www/htdocs/webmail/program/steps/mail/sendmail.inc on line 620
(POST /webmail/?_task=mail&_action=send).
Any suggestions would be appreciated
Many thanks
Stuart
--
---------------------------------------
Stuart Bailey BSc (hons) CEng CITP MBCS
LinuSoft (Managing Director)
Linux Specialist & Software Developer
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Phone: (0845) 658 3563
Direct: +44 (0) 1953 878162
Fax: +44 (0) 1603 858583
~~~~~~~~~~~~~~~~~~~~~~~~~~~
http://www.linusoft.co.ukhttp://www.bluetoothadvertising.org.uk
----------------------------------------
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
No malware was found: NETGEAR ProSecure Web/Email Security Threat Management Appliance has scanned this mail and its attachment(s).
_______________________________________________
List info: http://lists.roundcube.net/users/
How can I change 'attachement name' parameter from 'RFC2231 Integral (Thunderbird)' to 'RFC2047 Integral (other)' for all users. What file contain the configurations wich are not present at the preference collum at the user table? Thanks!
Atenciosamente,
Rafael Guedes de Souza
Analista de Suporte
ipTrust Tecnologia Ltda - Florianópolis/SC
Fone DDR +55 48 3031 3492
Fone Cel. +55 48 8811 7281
Fone Com. +55 48 3333 1551
VMware Technical Sales Professional
IronPort Systems Partner
Riverbed Tecnhology Partner
VMware Enterprise Partner
Eset Nod32 Partner
EMC² Partner
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I've recently migrated to svn-trunk and since then I find that the initial
loading of messages is very slow. With an inbox with ~2200 messages it takes
more than 30 sec to load. After that, switching pages is relatively fair (~5
sec), but only if I happen to switch during keepalive.
It seems that it fetches all the headers instead of only the first 40 (as
suggested by pagesize).
I'm on Courier-IMAP with an empty message_sort_col. I do not have caching
enabled, are there any known problems remaining with it?
Any suggestions?
Kristof
_______________________________________________
List info: http://lists.roundcube.net/users/
It seems I'm having a problem with uploads, but it may be a known bug.
Looks like anything larger than 1M-2M does not ever upload, it just
runs and runs, but this looks to be fixed in the Beta, right?
Is 0.4-beta good enough for production environments?
Can I use all plugins with 0.4-beta that are in 0.3.1?
--
Thanks,
Brad Landis
_______________________________________________
List info: http://lists.roundcube.net/users/
On Mon, Jun 21, 2010 at 4:36 PM, matsen <matsen(a)theteal.de> wrote:
> Afaik this is not fixed in 0.4 beta.
> I am using 0.4 beta and "Maximum allowed file size is 2.0 MB" is shown
> when I upload a file.
You change this by modifying .htaccess in the roundcube folder, but
even though I changed it, it will try to send, but never actually
sends anything. It's not a matter of what it says, but what actually
happens, which is a bug.
--
Thanks,
Brad Landis
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
We have Roundcube 0.3.1. installed and working on a Linux server. We
have noticed that if we reply to a message and then start typing, the
typed text appears at the end of the message body, not at the beginning.
Is there a configuration item we can use to change this, or will an
upgrade to 0.4 beta change this behaviour?
Many thanks,
Soph
--
Soph Cargill-Blogg
Systems Administrator
Extension: 236
Phone: 01692 403461
Mobile: 07889 216767
#####################################################################################
Attention:
This e-mail is privileged and confidential. The information contained in this message
and or attachments is intended only for the person or entity to which it is addressed
and may contain confidential and/or privileged material. If you are not the intended
recipient please delete the message and notify the sender.
Scanned by MailMarshal - Marshal8e6's comprehensive email content security solution.
#####################################################################################
_______________________________________________
List info: http://lists.roundcube.net/users/
Hey all,
I have four different RC installs with different plugin
configs that I am using for testing. Today I updated two of them to
3757. Neither instance from that point on would send messages. Trying to
send results in a hang and spinning progress wheel. Downgrading back to
r3752 restored them both to being able send. Anyone else see this?
--
Arne Berglund
System Administrator, Internet Services
Lane Education
Service District
Eugene, OR
541.461.8343
____________
_______________________________________________
List info: http://lists.roundcube.net/users/
Would you say that it is safer or as safe as Yahoo, Google or ISP e-mail adresses? What happens if someone opens a message containing a virus or a Trojan, is there any risk to webmail or only the user's computer? Just wondering, thank you so much for your help!
_______________________________________________
List info: http://lists.roundcube.net/users/
How can I set it up to display a different logo on the login page than once logged in? I allready changed the logo for once I am logged in but it is too small for the main login page. Sorry, newbie question: Also how do I answer to someone who answers one of my questions? I tried earlier and didn't know what to do, thanks!
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello, I was having a problem with Roundcube, instead of displaying sender "John H. Smith" when I send something it rather displays johnsmith(a)mail.com can this be fixed somehow? I find that less professional than if it where John H. Smith. Please advise, thanks!
_______________________________________________
List info: http://lists.roundcube.net/users/
They are creating many files in / tmp named sess *
The server is running out of space. On this server I have also squirrelmail and do not really know who is causing these files.
The files have user and group apache.
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello guys!
Based what does the file /home/user/Maildir/subscriptions is created? In here, for each user the file has one kind of content... Is it normal?
Atenciosamente,
Rafael Guedes de Souza
Analista de Suporte
ipTrust Tecnologia Ltda - Florianópolis/SC
Fone DDR +55 48 3031 3492
Fone Cel. +55 48 8811 7281
Fone Com. +55 48 3333 1551
IronPort Systems Partner
Riverbed Tecnhology Partner
VMware Enterprise Partner
Eset Nod32 Partner
EMC² Partner
_______________________________________________
List info: http://lists.roundcube.net/users/
I'm not certain when it stopped working, but I noticed that the
virtuser_file plugin that was working fine last time I tested is not
working at all now. I even went so far as to check out a new SVN copy,
built a brand new database, and the only plugin enabled is
virtuser_file. Still no luck. I have the plugin set to pull from a local
file on the system. As I said, I know that this worked a short time ago,
perhaps 2 weeks back?
Can anyone else confirm this, either yes or no?
We were planning to move totally from squirrelmail to RC at the end of
July, but since we provide email to 13 different domains via virtusers,
and the the new_user_identity plugin can't grab the email address from
LDAP, this plugin is an absolute must have function for our move and
on-going as well.
--
Arne Berglund
System Administrator, Internet
Services
Lane Education Service District
Eugene,
OR
541.461.8343
____________
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello
For internal reasons I've been asked to add our logo
to the Roundcune one on the starting page.
Does anybody could tell me where to go to add our
company logo ?
Thnaks a lot
_______________________________________________
List info: http://lists.roundcube.net/users/
is there any time frame under consideration for a new Beta or perhaps an RC ?
_______________________________________________
List info: http://lists.roundcube.net/users/
I noticed today that a Beta 0.4 is available for download. I was
really thinking about installing it on my server (200 users) but not
sure how many people have tried it or if there are any issues with
upgrading from 0.3.1 to 0.4 Beta. Can anyone who has installed and
used 0.4 recently tell me how you like it and if you experienced any
issues at all.
Thanks!
_______________________________________________
List info: http://lists.roundcube.net/users/
Hey all,
When you click on the "always show images from..." link that email address is added to your contacts. Now, with 4.0 and contact groups, how does that work?
Is there a way to add these emails to a specific contact group, say a "Subscriptions" group? Right now all of these are in a single contact group, along with my actual contacts (friends, family, etc). Is there a way to separate them?
Thanks!
// Andrés
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello all..
Im using RC 0.3.
In the 0.4 beta, there are option to create groups of users? For each user?
Is a good idea upgrade to 0.4???
Thankss
--
Esta mensagem foi verificada pelo sistema de antivirus e
acredita-se estar livre de perigo.
_______________________________________________
List info: http://lists.roundcube.net/users/
Dear list,
I was very curious to upgrade to the latest roundcube. My running
version was 0.3.1. I have downloaded the 0.4-beta and as suggested
copied the index.php, bin; Sql.. etc.. by
```````````````
cp -rvf < latest_folder > <existing_old_folder>
````````````````````
I have followed this for all the folders suggested in UPGRADE file.
When I tried with the bin/update.sh it reported as
```````````````````
bin/update.sh: line 2: ?php: No such file or directory
bin/update.sh: line 3: syntax error near unexpected token `!='
bin/update.sh: line 3: `if (php_sapi_name() != 'cli') {'
```````````````````````
So I unlocked the installer and tried with web interface. #3 Test Config
suggested to upgrade the mysql by SQL/mysql.update.sql. Hence I executed
the statements belonged to the "upgrade from 0.3.1..." section. But
still the web interface is unhappy with DB schema and reports
````````````````````````
Check configured database settings
DSN (write): OK
DB Schema: NOT OK(Database schema differs)
Please manually execute the SQL statements from
/srv/www/htdocs/roundcubemail-0.3.1/SQL/mysql.update.sql on your database.
See comments in the file and execute queries that are superscribed with
the currently installed version number.
```````````````````````````````````
Though I can log in the email account successfully, I wonder if the
mysql warnings indicates any real trouble which can screwup my
installation in future when I'll go for up-gradation again . i.e. to 0.4
stable branch
Any clue/suggestion/hint please ?
Thanks
--
জয়দীপ বক্সী
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
On Mon, May 24, 2010 at 09:45, Zbigniew Szalbot <zszalbot(a)gmail.com> wrote:
> Thanks!
>
>> Make sure you have no characters after closing ?> tag in config files.
>> Also disable all plugins, if you're using some.
Custom skin was responsible for this! I changed back to the defaultish
one and it works perfectly! Thanks!
--
Zbigniew Szalbot
www.slowo.plwww.fairtrade.net.pl
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I am using roundcube-0.4.b on a FreeBSD server. When I log into
Roundcube it will show how many unread emails there are in inbox but I
am not able to display them. Nor is it possible to display other mail
folders than inbox.
Where should I start looking to fix this? Thank you very much!
--
Zbigniew Szalbot
www.slowo.plwww.fairtrade.net.pl
_______________________________________________
List info: http://lists.roundcube.net/users/
hello,
do someone know where does the icons of the default theme come form?
I'd like to know if they came from some opensource icon library, as my
users asked to replace the "delete" button (now a 'prohibited' road
sign) with a trash can and maybe I can found a trash bin in the library ;-)
--
bye,
emilio
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello
Is there some special things to do in order to migrate my
0.3 roundcube to 0.4 ?
I use mysql as backend
Thank you
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi, also asked this om the forum.
I'm in a situation where I need to pre-load (prime) the database tables with
correct data. Getting the data ready for loading isn't the problem, I do
this all the time with the postfixadmin tables. A bit of perl and some copy
ans pasting fits the job. The roundcube tables, however, are cleverly linked
with foreign keys which prevents me to just delete a table and re-generating
an filling it with my own data. Unnessessary to say that
['auto_create_user'] = FALSE here.
Is there anybody out there who could put me om the right trace? I realize
that this is more a MySQL question but I thought trying it here first.
TIA
Egbert Jan (NL)
_______________________________________________
List info: http://lists.roundcube.net/users/
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/users/
There's not an address book search dialog when composing messages that is
available is there? A lot of non-technical users don't understand auto-fill
box that shows up below the "To:" field, even though it's all over the
internet now.
Is there a feature request for this if not?
--
Thanks,
Brad Landis
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi All,
first:
People using email, asked me, they can't open attachments (word documents,
etc), they only action possible is to save document. In every other site,
file association is working fine and openoffice opens the document
second:
I Would like, that users, could change their password in same email
session, how can I do it?
thanks in advance,
--
Saludos!!
Luciano Andino
GNU/Linux user #185103
Santa Fe - Argentina
-----------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/users/
any way to do it?
i can pg_dump the database but no way sqlite can take it.
anyone know of a converters.
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I'd like to store my roundcube data in pgsql, but not in the schema
PUBLIC but some other, e.g. ROUNDCUBE.
I fail to log into the correct schema when giving the following syntax
in db.inc.php:
pgsql://username:password@localhost/database?schema=ROUNDCUBE
Any idea on how to succeed in logging into the schema?
Best Regards
Dirk
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I have issues with creating redirect rules in managesieve.
After submitting the creation of a rule with a redirect to a folder
chosen from the dropdown, the page reloads and the folder dropdown
selector becomes an empty yellow text input box.
I can create discard rules properly, but redirect always behaves like
this.
Managesieve is from Dovecot/Pigeonhole 2.0.
Anyone encountering the same behaviour?
thanks
Luca
_______________________________________________
List info: http://lists.roundcube.net/users/
I did the patching and installed the drivers and whatnot.. but on the
installer page, i see the following:
Check configured database settings
DSN (write): OK
DB Schema: NOT OK(Cannot read the schema file: ../SQL/pdoSqlite.initial.sql)
I cannot find this pdoSqlite.initial.sql
I made my database with
sqlite -init SQL/sqlite.initial.sql sqlite.db
and I get this error in my logs.
[05-May-2010 19:42:16 +0200]: DB Error: MDB2 Error: unknown error Query: _doQuery: [Error message: Could not execute statement] [Last executed query: SELECT vars, ip, UNIX_TIMESTAMP(changed) AS changed FROM session WHERE sess_id='ldnu9ca02d5mtrj1ngtp341e03'] [Native code: 00000] in /usr/local/apache2/htdocs/roundcube/program/include/rcube_mdb2.php on line 630 (GET /)
[05-May-2010 19:42:37] PHP Warning: PDO::query(): SQLSTATE[HY000]: General error: mode must be an integer in /usr/local/apache2/htdocs/roundcube/program/lib/MDB2/Driver/pdoSqlite.php on line 572
[05-May-2010 19:42:37] MDB2 Error: unknown error (-1): _doQuery: [Error message: Could not execute statement]
[Last executed query: SELECT vars, ip, UNIX_TIMESTAMP(changed) AS changed
FROM session
WHERE sess_id='ldnu9ca02d5mtrj1ngtp341e03']
[Native code: 00000]
[05-May-2010 19:42:37 +0200]: DB Error: MDB2 Error: unknown error Query: _doQuery: [Error message: Could not execute statement] [Last executed query: SELECT vars, ip, UNIX_TIMESTAMP(changed) AS changed FROM session WHERE sess_id='ldnu9ca02d5mtrj1ngtp341e03'] [Native code: 00000] in /usr/local/apache2/htdocs/roundcube/program/include/rcube_mdb2.php on line 630 (GET /)
any ideas?
Jason
_______________________________________________
List info: http://lists.roundcube.net/users/
Bom dia Eden, esse problema só ocorre no webmail, todos os clientes aqui
utilizam Outlook e esse erro não acontece, apenas no webmail, um usuário
loga na sua conta e cai na de outro usuário qualquer.
Hello Eden, this problem only occurs in webmail, all clients use Outlook
here and this error does not happen, only in webmail, a user logs into your
account and falls on any other user.
_______________________________________________
List info: http://lists.roundcube.net/users/
Boa tarde, estou com um problema e gostaria da ajuda de vocês, seguinte,
quando um usuário loga em sua conta de webmail com seu nome de usuário e
senha cai na conta de outro cliente, isso aleatoriamente, usuário João loga
e cai na conta do usuário José, isso com todas as permissões, enviar
e-mails, deletar, etc.
Gostaria de saber se alguém já teve problema semelhante.
Obrigado.
_______________________________________________
List info: http://lists.roundcube.net/users/
Good afternoon, I have a problem and would like your help, next
when a user logs into your webmail account with your username and
password falls on account of another customer, this random, user John logs
and falls on the user account José, that with all permissions, send
e-mail, delete, etc..
I wonder if anyone has had similar problem.
Thanks
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi there,
I have developed a mail clustering solution that works with most mail servers,
and has massive scalability. It's called Proto Balance Mail and it's
downloadable
from http://protobalance.com/protobalancemail.html
Now Proto Balance Mail directs traffic, and aportions mailboxes -- so
it does not
actually store mail. It is meant to allow you to deploy multiple instances of
whatever mail server and webmail client you are already accustomed to.
It would be good to integrate this product with RoundCube of course. The result
would be a web-mail solution that supports large sites - like those with over
10,000 or 100,000 mailboxes or more.
If there is anyone interested, please contact me on paulsheer(a)gmail.com or
protobalance(a)protobalance.com
Kind regards, and thanks very much for RoundCube - it's great.
-paul
_______________________________________________
List info: http://lists.roundcube.net/users/
Dear all,
There seems to have no information on the following issue in the List. Kindly share your advice.
How do we configure RC to use the default folders in OS X Server 10.6, such as Drafts, Sent, Trash and Junk?
Charles So
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I have the following trouble:
If I delete (move to trash) several messages one after the other,
roundcube get slow after deleting a few messages (around 5). Slow means,
that it takes around a minute to delete a single message.
In the logs I see, that for every delete operation, roundcube issues a
new connection/login to the imap server. I suspect that after a few such
operations, to "pool" of available connections to the imap server is
exhausted, which causes the delay.
This is supported by the observation that the delete operation seems to
complete as soon as an "old" connection is closed, which seems to happen
after 60 s (keep_alive time).
I wonder if I configured something wrong, because to my opinion it would
be more efficient if roundcube just uses the established-connection
instead of opening a new one for every (delete) operation.
I just realized, that for every operation (i.e. view a message)
roundcube issues a new login/connection to the imap server. Is this
really intended?
Any hints welcome.
cheers,
Hp
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
i read in the announcement mail, that roundcube is supporting threaded
message viewing now. Is there a configuration option in the config, i must
set for it to work ?
Best Regards
Tom
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I've setup Roundcube 0.3.1 with dovecot and managesieve. My setup is
working fine with any IMAP client (Apple Mail, Thunderbird, Evolution,
etc.) but I have issues with folders in roundcube.
Basically, it seems in the pane I can only see folders if:
- the folder is Inbox
- the folder is subscribed
- the folders lives in the same folder in which there is a subscribed
folder
all other folders do not show up in the folders pane, but I can see them
in the Settings > Folders menu and if I subscribe to them, then they
appear in the Folders Pane.
I've searched the options and played with imap_root/imap_delimiter, but
this seems not to be the issue.
Any idea?
thanks
Luca
_______________________________________________
List info: http://lists.roundcube.net/users/
I'm used to Thunderbird, and there a couple of features in it
that would make Roundcube far more useful to me.
The first is the split window layout that Thunderbird uses.
I normally select the oldest message, and Thunderbird immediately
shows that message in another window. I then just hit Delete
or Junk repeatedly to peel through all of the emails. Just one
click per email, and I don't have to move the mouse around. I
am viewing the subject list the whole time, so I can queue up
decisions in my mind as to what is spam, and what needs to be
read.
With Roundcube, I have to double click on a message, then
the whole page is replaced with the message. If I hit
Delete, I am sent back to the subject list. It would be
much better for me if the next message would simply load
in place. Then I could just keep hitting Delete to get
through all of my messages. Squirrel mail has a
"Delete and Next" link that does this. Right now, I
have to go back and forth between the subject list and
the message window, reloading the subjects each time I
read a message, which can be time consuming.
Anyway, great job on Roundcube. It's an impressive webmail
client.
Thanks,
Tobiah
_______________________________________________
List info: http://lists.roundcube.net/users/
hello boys and girls
hello all users of this list
hello guru of php
hello much many people
here is my previous discution
Hi there,
You don't really need to write any line in C to change the password the
PAM way:
http://svn.php.net/viewvc/pecl/pam/trunk/README?view=markup
This is a PECL module, so installation is easy: pecl install pam
See you!!
emi
2010/4/20 fakessh <fakessh(a)fakessh.eu>:
On Tue, 20 Apr 2010 14:09:07 +0200, "A.L.E.C" <alec(a)alec.pl> wrote:
fakessh wrote:
I try to implement the change password plugin I just watched
http://trac.roundcube.net/browser/trunk/plugins/password it does not seem
to have an option to change password when using
dovecot
I do not use sql or ldap. I use pam to store my password
through the authentication to postfix and dovecot: my passwords are login
or plain text if so, can you enlighten me how to use the change password
plugin
I don't know if there is a plugin or driver for PAM passwords
change. You need a command line tool for changing passwords e.g. chpasswd
and use it in PHP. For example see 'sasl' driver from 'password' plugin.
Programmers can take a look at http://www.unicom.com/sw/web-chpass. Also
virtualmin (which we support in virtualmin driver) probably is
working with PAM.
thank you A.L.E.C thanks you all users I just look at the code
http://trac.roundcube.net/browser/trunk/plugins/password/drivers/sasl.php
to integrate easily into roundcube it is simply necessary to modify the
code web-chpass and the executable c nipasswd then plugin with a part in c
I'm afraid of writing this piece of c, I just perl the c is entirely taken
from http://www.unicom.com/sw/web-chpass I am afraid to make mistakes in
writing c them what someone feels able to write this plugin derives from
nipasswd _______________________________________________ List info:
http://lists.roundcube.net/dev/
i just perl and c
I do not know php
I want a little help to understand and run the documentation
I correctly installed pecl install pam
I have the following API
1 API
2
3 bool pam_auth(string $username, string $password [, string &$error [
$checkacctmgmt = true ] ])
4 bool pam_chpass(string $username, string $oldpassword, string
$newpassword [, string &$error ])
5
6 The parameters are
7
8 username - Username to check
9 password - User supplied password
10 error - Output parameter to put any error messages in
11 checkacctmgmt - Call pam_acct_mgmt() to check account expiration and
access hours (requires root access!)
12 oldpassword - Current password on account
13 newpassword - Password to change to
can you give me a simple example using this API
bool pam_auth (string $username, string $password
[, string &$error [ $checkacctmgmt = true ] ])
^ ^ ^ ^
^ ^
what it 's what it 's what it 's what it 's
what it 's what it 's
bool pam_chpass (string $username, string
$oldpassword, string $newpassword [, string &$error ])
^ ^ ^ ^
^ ^
what it 's what it 's what it 's what it 's
what it 's what it 's
can you give me a simple example of how these functions
A simple example would allow me to easily write the plugin for
roundcubemail
thanks for your advice
thanks for all return
aka /fakessh/
_______________________________________________
List info: http://lists.roundcube.net/users/
Greetings Everyone!
I'm relatively new to RoundCube, having used it
daily for the last month and really like it. I'm at an intermediate
programming level when it comes to PHP and was wondering if some of you
might be able to answer this question for me:
I use RoundCube at work
where I maintain a database of professional physician contacts. I want to
migrate (and of course keep backups just in case) my contact list over to
RoundCube.
However, a few fields I need are missing for me:
Telephone
Number
Address
So, is this something that I can look forward to in
implementation soon or something I'll need to code myself for the time
being (which I can do, easily enough)?
My big concern is that if I code
this myself then it will undoubtedly break when I upgrade RoundCube in the
future.
Thanks everyone!
- Len W. Brown
len(a)lenwbrown.com
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi there! I'm just testing this version:
roundcubemail-trunk-r3437-20100329cause It has group's contacts
support. Althougt it is not stable, it is
possible to use in my network?
I have no more that 30 email accounts,
thanks in advance,
--
Saludos!!
Luciano Andino
GNU/Linux user #185103
Santa Fe - Argentina
-----------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/users/
hello list
hello guru of this list
hello much many people
hello A.L.E.C
I try to implement the change password plugin
I just watched
http://trac.roundcube.net/browser/trunk/plugins/password
it does not seem to have an option to change password when using dovecot
I do not use sql or ldap. I use pam to store my password through the
authentication to postfix and dovecot:
my passwords are login or plain text
if so, can you enlighten me how to use the change password plugin
thanks for advice
thanks for all return
aka /fakessh/
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I'm on Ubuntu 8.04. I used apt-get to install roundcube
and roundcube-webmail. There are no new files in my
apache root. I don't understand what I'm to do now.
Thanks!!
Tobiah
_______________________________________________
List info: http://lists.roundcube.net/users/
saludos Lista
Soy nuevo en la lista y con roundcube
y mi duda es la siguiente
Como pudiera instalar mas un plugins?
Resulta que ayer estaba instalando password y squirrelmail_usercopy de esta forma
$rcmail_config['plugins'] = array(password); array(squirrelmail_usercopy);
pero na da mas me sale password y si lo dejo
$rcmail_config['plugins'] = array(squirrelmail_usercopy);
Al kilo
Que estoy haciendo mal?
Perdonen si hay algun error en la parte ingles es que lo traduje con google
Greetings List
I am new to the list and RoundCube
and my question is this
As one might install more plugins?
It turns out that yesterday was setting password and thus squirrelmail_usercopy
$ Rcmail_config ['plugins'] = array (password), array (squirrelmail_usercopy)
but na da more I get password and if I leave
Rcmail_config $ ['plugins'] = array (squirrelmail_usercopy)
Al kilo
What am I doing wrong?
Sorry if there is an error in the English part is that I translated with google
--
********************************
* Yuniesky Machado Rojas *
* Administrador de Redes *
* Instituto Nacional de Investigación en Viandas Tropicales
*GNU/Linux User #481684 (http://counter.li.org)
********************************
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello list,
I have roundcube 0.3.1 configured at my mail server and it is working
perfectly well. It is working with ISP style mail system based on
postfix+mysql+dovecot. I like to add the password change option in
roundcube. There is already password folder inside plugins folders. So
it is shipped with the roundcube. I have activated it by
[............]
$rcmail_config['plugins'] = array('password');
[............]
and inside the password folder it self I have done
` ` ` `
cd config.inc.php.dist config.inc.php
` ` ` `
and I get a password tab in the roundcube interface. But Whenever I try
to save a password; it simply throws an error as
* can't save password *
I have activated the trace log and found
` ` ` `
[Thu Apr 08 11:05:19 2010] [error] [client 59.165.47.194] MDB2 Error:
not found (-4): _doQuery: [Error message: Could not execute
statement]\n[Last executed query: SELECT
update_passwd('$1$w`EUn=U_$Vp1ykBH6A8vDO/rfd4HIQ.',
'test(a)mydomain.com')]\n[Native code: 1305]\n[Native message: FUNCTION
roundcubemail.update_passwd does not exist]\n, referer:
http://webmail.infoservices.in/?_task=settings&_action=plugin.password-save
` ` ` `
Could anyone suggest me how to fix it ?
Thanks
--
জয়দীপ বক্সী
_______________________________________________
List info: http://lists.roundcube.net/users/
I was able to locate the parameter in my main.inc.db for RC to force
RC to use TLS when using IMAP:
// the mail host chosen to perform the log-in
// leave blank to show a textbox at login, give a list of hosts
// to display a pulldown menu or set one host as string.
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
$rcmail_config['default_host'] = 'tls://mail.mydomain.tld';
// TCP port used for IMAP connections
$rcmail_config['default_port'] = 143;
My question is I am unable to force RC to use TLS whens ending mail
via SMTP on port 25. I don't know why or what I am missing but I did
the following:
// use this host for sending mails.
// to use SSL connection, set ssl://smtp.host.com
// if left blank, the PHP mail() function is used
// Use %h variable as replacement for user's IMAP hostname
$rcmail_config['smtp_server'] = 'tls://mail.mydomain.tld';
// SMTP port (default is 25; 465 for SSL)
$rcmail_config['smtp_port'] = 25;
// 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';
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
// best server supported one)
$rcmail_config['smtp_auth_type'] = '';
The above doesn't work for SMTP with TLS. Anyone know how I can
correctly get TLS working with SMTP? It works great with IMAP but I
have to remove the 'tls://' from SMTP and then I am able to send email
successfully...but w/o TLS.
Please help!
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello i need to insert a banner on login page can you help me?
Thanks
Ivan
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all,
i want to bypass the login screen so that username+password for each
user is automatically retrieved from a mysql db in clear text.
the idea is that an ID,username & password is stored in a database.
in the url of roundcube i want to add the id and make roundcube
retrieve the corresponding username & password from the database.
when accessing roundcube i appended a SSID value like this:
https://webmail.xxx.mu:21443/index.php?ssid=333
in index.php i added some code at the top to retrieve the SSID using GET but its not working:
PHP Code:
<?php
////////////////////////////////////////////////////////
$ssid = $_GET['ssid'];
$myFile = "/tmp/session";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh,$ssid);
fclose($fh);
////////////////////////////////////////////////////////
// include environment
require_once 'program/include/iniset.php';
thanks..coolatt
_________________________________________________________________
Hotmail: Powerful Free email with security by Microsoft.
https://signup.live.com/signup.aspx?id=60969
_______________________________________________
List info: http://lists.roundcube.net/users/
<div id="_rc_sig">
<pre>Can anyone else duplicate this? I have a few users still on Mac OS
10.3.9, which uses an old version of Safari (1.3.2). In that version, the
messagelist shows empty for any folder, although the message count is
correct. Also the Preferences don't load when the left column links are
clicked.<br /><br />Is this <br /><br />--
Arne Berglund
System Administrator, Internet Services
Lane Education Service District
Eugene, OR
______________</pre>
</div>
_______________________________________________
List info: http://lists.roundcube.net/users/
I am getting complaints from users that when they attempt to reply to
a email they received in RC, their text cursor gets defaulted to the
bottom of the email. I know this is the correct method to reply but
users don't like it and want RC to mirror Outlook reply style where
their reply is seated above the reply, not below. Is there a way to
force RC to default the cursor above the reply?
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi
I've updated the version of PHP running on my Mac OSX server and the
new version includes mcrypt which I didn't have before. Since then
I've not been able to log in.
There appears to be a problem with the length of the initialization
vector being handed to the mcrypt function, the interesting thing
being that the length is changing each time: 11, 18, 9, 12.
The error logs show:
ali@buggles:/Library/Webserver/Documents/roundcube$ tail logs/errors
[10-Nov-2009 13:23:09] PHP Warning: mcrypt_generic_init()
[function.mcrypt-generic-init]: Iv size incorrect; supplied length:
11, needed: 8 in /Library/WebServer/Documents/roundcube/program/
include/rcmail.php on line 995
[10-Nov-2009 13:23:12 +0000]: IMAP Error: Authentication for ali
failed (LOGIN): "a001 NO Login failed." (GET /roundcube/?_task=mail)
[10-Nov-2009 13:36:59] PHP Warning: mcrypt_generic_init()
[function.mcrypt-generic-init]: Iv size incorrect; supplied length:
18, needed: 8 in /Library/WebServer/Documents/roundcube/program/
include/rcmail.php on line 995
[10-Nov-2009 13:37:02 +0000]: IMAP Error: Authentication for ali
failed (LOGIN): "a001 NO Login failed." (GET /roundcube/?_task=mail)
[10-Nov-2009 13:38:16] PHP Warning: mcrypt_generic_init()
[function.mcrypt-generic-init]: Iv size incorrect; supplied length: 9,
needed: 8 in /Library/WebServer/Documents/roundcube/program/include/
rcmail.php on line 995
[10-Nov-2009 13:38:21] PHP Warning: mcrypt_generic_init()
[function.mcrypt-generic-init]: Iv size incorrect; supplied length:
12, needed: 8 in /Library/WebServer/Documents/roundcube/program/
include/rcmail.php on line 995
[10-Nov-2009 13:38:24 +0000]: IMAP Error: Authentication for ali
failed (LOGIN): "a001 NO Login failed." (GET /roundcube/?_task=mail)
Grateful for any advice!
Cheers
Ali
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello it is possible show the mail user on the webmail example:
"Welcome peanuts(a)linus.it [1]" because i've a few mail on the same domain
and i dont' remember with which I have logged mail.
Sorry for my terrible
english.
Best Regards
Ivan
Links:
------
[1] mailto:peanuts@linus.it
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
i have upgraded my roundcube to 0.3.1 version. After do the upgrade all is
working perfect but the tildes are not seeing correctly.
I have upgraded the files:
- index.php
- ./bin/
- ./SQL/
- ./program/
- ./installer/
- ./skins/default/
- ./plugins/
And i have executed the mysql.update.sql
Can anybody help me?
Thank you
Juan
_______________________________________________
List info: http://lists.roundcube.net/users/
I've discovered that, in my SVN checkout of roundcube, something
strange is going on. If I specify that my default_host is 'localhost',
things work just fine, but if I specify that my default_host is
something else... ANYTHING else (such as my hostname), Roundcube will
report that all folders have three new messages in them. Nothing else
appears to be affected (i.e. opening the folders and reading messages
works fine, it's just the unread-count that's wrong).
This is particularly frustrating for me because I host multiple
domains with slightly different IMAP preferences, and I need to be
able to connect to other domains on my server.
Does anyone else have the same issue? Or know of a fix?
Thanks,
~Kyle
--
The test of our progress is not whether we add more to the abundance
of those who have much; it is whether we provide enough for those who
have too little.
-- Franklin D. Roosevelt
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi All,
I have configured RoundCube with SSL, the login url is https://webmail.xxx.mu/
I want to login automatically to this url using curl from within a PHP application(using php curl library) inorder to implement a single signon solution.
Can someone please help me with this ??
Thanks
coolatt
_________________________________________________________________
Hotmail: Free, trusted and rich email service.
https://signup.live.com/signup.aspx?id=60969
_______________________________________________
List info: http://lists.roundcube.net/users/
I was wondering if it's possible to remove the RC logo from the upper
left corner of the login screen. I have seen login screens with custom
logos but I just want a login screen without any logos. Is this
possible?
_______________________________________________
List info: http://lists.roundcube.net/users/