Hi,
I'm trying to get roundcube set up in tandem with a postfix/courier setup
that uses a MYSQL table for user authentication. I use the PLAIN auth type,
and everything works correctly on my other clients, but I get the following
error in /var/log/mail.log when I attempt to login with roundcube:
Mar 22 10:56:34 [hostname] imapd: LOGIN FAILED, method=CRAM-MD5,
> ip=[::ffff:192.168.1.254]
> Mar 22 10:56:39 [hostname] imapd: Disconnected, ip=[::ffff:192.168.1.254],
> time=6, starttls=1
>
The login method quoted there is strange, as I have this line in
/etc/roundcube/main.inc.php:
> $rcmail_config['imap_auth_type'] = 'PLAIN';
>
I've also tried it without capital letters, and with double quotes with and
without.
I'm running Debian Wheezy with the 2.6.32-5-kirkwood kernel. All packages
are up to date.
Any help would be appreciated.
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello.
RC can add favorites mark (gold star). But what about the tags? I want
add short text lable and get all mail mark same tag in one click.
Possible?
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I am currently having some issues trying to get the change password function
to work. I have sanitized the config and the logs. I am hoping that I am not
missing anything. I have RoundCube authenticating against Active Directory
right now with no issues. I have no issues with mail delivery. I figured out
how to get the Global Addressbook to pull from Active Directory, but this is
beating me. I would appreciate any help with this plugin that I can get.
Configuration File
[root@mail ~]# less
/var/www/webmail.$MYSITE.com/plugins/password/config.inc.php
<?php
// Password Plugin options
$rcmail_config['password_driver'] = 'ldap';
// Determine whether current password is required to change password.
$rcmail_config['password_confirm_current'] = true;
// Require the new password to be a certain length.
$rcmail_config['password_minimum_length'] = 7;
// Require the new password to contain a letter and punctuation character
$rcmail_config['password_require_nonalpha'] = true;
// LDAP and LDAP_SIMPLE Driver options
// -----------------------------------
$rcmail_config['password_ldap_host'] = $MYDC';
// LDAP server port to connect to
// Default: '389'
$rcmail_config['password_ldap_port'] = '389';
// TLS is started after connecting
$rcmail_config['password_ldap_starttls'] = false;
// LDAP version
$rcmail_config['password_ldap_version'] = '3';
// LDAP base name (root directory)
$rcmail_config['password_ldap_basedn'] = 'dc=$MYDOMAIN,dc=local';
// LDAP connection method
$rcmail_config['password_ldap_method'] = 'user';
// LDAP Admin DN
$rcmail_config['password_ldap_adminDN'] = null;
// LDAP Admin Password
$rcmail_config['password_ldap_adminPW'] = null;
// LDAP user DN mask
$rcmail_config['password_ldap_userDN_mask'] =
'cn=%name,dc=$MYDOMAIN,dc=local';
// LDAP search DN
$rcmail_config['password_ldap_searchDN'] =
'cn=ad.bind,cn=users,dc=$MYDOMAIN,dc=local';
// LDAP search password
$rcmail_config['password_ldap_searchPW'] = '$AD.BINDPWD';
// LDAP search base
$rcmail_config['password_ldap_search_base'] =
'cn=users,dc=$MYDOMAIN,dc=local';
// LDAP search filter
$rcmail_config['password_ldap_search_filter'] = '(cn=%name)';
// LDAP password hash type
$rcmail_config['password_ldap_encodage'] = 'crypt';
// LDAP password attribute
$rcmail_config['password_ldap_pwattr'] = 'userPassword';
// LDAP password force replace
$rcmail_config['password_ldap_force_replace'] = true;
// LDAP Password Last Change Date
$rcmail_config['password_ldap_lchattr'] = 'pwdLastSet';
// Also try to update Samba password attributes: sambaNTPassword and
sambaPwdLastSet
$rcmail_config['password_ldap_samba'] = false;
);
Errors
[root@mail ~]# tail -f /var/log/httpd/error_log
[Mon Mar 21 22:30:31 2011] [error] [client x.x.x.x] Bind failed: Invalid
credentials: LDAP_INVALID_CREDENTIALS (49): , referer:
http://webmail.$MYSITE.com/?_task=settings&_action=plugin.password-save
[Mon Mar 21 22:30:40 2011] [error] [client x.x.x.x] Bind failed: Invalid
credentials: LDAP_INVALID_CREDENTIALS (49): , referer: http://webmail.
$MYSITE.com/?_task=settings&_action=plugin.password-save
I understand that the LDAP_INVALID_CREDENTIALS is an issue with the login
and password that I am trying to bind with. I just don't see where my error
is. What am I missing?
Thanks,
Clay
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello:
Have defined an array of default_hosts
$rcmail_config['default_host'] = array(
'server1.domain.com' => 'People',
'server2.domain.com' => 'Staff'
);
In both imap servers default boxes for sent items are different. So I
would like to specify this in main.inc.php.
But $rcmail_config['sent_mbox'] does not look to allow multivalues or
arrays.
Have tried with rcmail_config['include_host_config'] but have found it
is not useful in my case as it does not user IMAP server.
Some advice please on how to define different
$rcmail_config['sent_mbox'] based on IMAP server.
Thanks in advance.
--
------------------------------------------------------
Juan Carlos Sanchez Hernandez
Responsable de Seguridad y Correo Electronico
Servicio de Planificacion Informatica y Comunicaciones
Universidad Politecnica de Madrid
Rectorado
Avda. Ramiro de Maeztu 7
28040 Madrid
------------------------------------------------------
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello everyone:
I have a question about alternatives to save session information on
files instead of on the database. A.L.E.C says at
http://lists.roundcube.net/mail-archive/users/2010-10/0000025.html that
it would be enough to modify the rcube_session class? And my question
is: would it be just enough to comment out lines 52-28 (where
session_set_save_handler is invoked)? Would it be necessary to change
any of the other public methods, or any functions/method on different
files other than rcube_session.php?
I need this because I have a huge number of users and keeping the
session information, which is modified at every single click performed
on the user interface, on a single database instance seems not a
reasonable solution. The other option would be a database cluster, but
that, I guess, is a complex approach and I would prefer something more
simple.
Besides, it would be great if this possibility was added as a
configuration parameter. I am sure more people can have this issue as
well.
Thanks in advance and best regards,
Rafa
--
Rafael Arco Arredondo
Centro de Servicios de Informática y Redes de Comunicaciones
Universidad de Granada
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello everyone,
I would like to install the vacation plugin on Roundcube 0.5.1, and use
the ftp driver.
The "vacation"-Tab shows up in the settings-section, but when I click on
it, I get the following error:
CONFIGURATION ERROR
Vacation plugin: s cannot be opened
Please read the INSTALL instructions!
In the logs I see something like:
PHP Error: Vacation plugin: s cannot be opened in
/srv/www/htdocs/roundcubemail/plugins/vacation/lib/vacationdriver.class.php
on line 0 (GET /roundcubemail/?_task=settings&_action=plugin.vacation)
Can anyone tell me what's up, and how I can bring the vacation module up
and running?
Thanks for help.
PS: I'm on a suse 11.3 // php5 // apache2 // mysql // postfix // dovecot
--
Andre Tann
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi all -
Running 0.5.1 (upgraded from 0.4.1). Stupidly, I also upgraded MySQL, PHP and Dovecot before I tested if 0.4.1 still worked. Now when I login I get the UI but then consistently get "Server Error! (OK)". The IMAP log looks OK. Here's the Dovecot log - I'm thinking it's OK..
Code:
2011-03-11 16:28:19 auth(default): Info: master out: USER 295 xxx system_groups_user=xxx uid=xxx gid=xxx home=/home/xxx
2011-03-11 16:28:19 imap-login: Info: Login: user=<xxx>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, TLS
2011-03-11 16:28:19 IMAP(xxx): Info: Effective uid=xxx, gid=xxx, home=/home/xxx
2011-03-11 16:28:19 IMAP(xxx): Info: cydir: mailbox location not given
2011-03-11 16:28:19 IMAP(xxx): Info: cydir: Couldn't create mail storage : Root mail directory not given
2011-03-11 16:28:19 IMAP(xxx): Info: dbox: mailbox location not given
2011-03-11 16:28:19 IMAP(xxx): Info: dbox: Couldn't create mail storage : Root mail directory not given
2011-03-11 16:28:19 IMAP(xxx): Info: maildir: access(/home/xxx/Maildir, rwx): failed: No such file or directory
2011-03-11 16:28:19 IMAP(xxx): Info: maildir: couldn't find root dir
2011-03-11 16:28:19 IMAP(xxx): Info: maildir: Couldn't create mail storage : Root mail directory not given
2011-03-11 16:28:19 IMAP(xxx): Info: mbox: root exists (/home/xxx/mail)
2011-03-11 16:28:19 IMAP(xxx): Info: mbox: INBOX exists (/var/mail/xxx)
2011-03-11 16:28:19 IMAP(xxx): Info: fs: root=/home/xxx/mail, index=, control=, inbox=/var/mail/xxx
2011-03-11 16:28:19 IMAP(xxx): Info: Disconnected: Logged out bytes=93/808
2011-03-11 16:28:19 auth(default): Info: new auth connection: pid=26712
Clicking on Settings, Address Book, etc. all give me the right info so it looks like the MySQL connection is fine. I can send messages fine. But - every time I click on a mailbox I get the server error message.
How do I troubleshoot this?
There is nothing placed in the errors file. I've verified the "errors" file is working by logging in as a non-existent user. A message is written into the errors file stating that the login failed - so logging works to the errors file. However, there are no messages with regards to the Server Error! (OK) message.
PHP version is PHP 5.3.3-1ubuntu9.3 with Suhosin-Patch (cli) (built: Jan 12 2011 16:08:14). Apache version is Apache/2.2.16 (Ubuntu). There are no errors in the Apache logs nor in the php logs. Basically, there are no logs pointing to where this error is coming from which is why I figured this community might be able to help. I'm at wit's end! I appreciate your responses.
Thanks!
Chris
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi!
In my case it seems that searching for contacts in address book is only
looking at the sql field 'words'.
I didn't look at the code I only did experiments.
However the 'words' field is by default empty as this is an upgrade
from 0.3.x to latest svn.
Any thoughts?
--
Arthur Titeica
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello All,
I am using roundcube with archive plugin, All my users
have folder named Archive and i want to map my IMAP folder archive in
default. How to achieve the same so that i can get archive option in
main page of webmail.
Thanks
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi List:
My name is Javier and I am from Argentina.
I have Rouncube as Webmail.
The problem I have is that the /logs/sendmail file didn´t work.
In the config file of Rouncube, I have $rcmail_config['debug_level'] set to
1 and $rcmail_config['log_driver'] set to file,
the $rcmail_config['log_dir'] is pointing to 'logs/'; and permissions of the
sendmail file are: -rw-rw-r-- 1 www-data www-data for apache2 Web server.
Could someone please help me to find how can I make this log file start
register logs?
Thank you very much for your attention.
With best regards,
Xavi
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi, in IE6、7、8 chinese version roundcube can't open pdf as
attachment, it says loading data... and doesn't open the file in the
frame. firefox works ok!
( that can prompt me to save attached file in
IE6.0 englisth version,but still says loading data.. in the frame. )
if filename in Chinese (maybe is not English is same) the above is
occurred,in englisth filename , it's ok and prompt me to download or
save the pdf file.
RCU0.5.1
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
i have a problem with the managesieve plugin. When I add a filter to a
filter set and then select action as setflag, sddflag, removeflag, can I
save this filter. This filter set works fine with dovecot. But I can't
add another filter.
In roundcube shows up „Unable to save filter. Server error occured“.
The logs contain „[07-Mar-2011 13:10:06] test.roundcube: line 1: error:
require command: unknown Sieve capability 'imapflags'. test.roundcube:
line 5: error: unknown command 'removeflag' (only reported once at first
occurence). test.roundcube: error: validation failed. (3): „
test.roundcube:
require ["imap4flags"];
# rule:[TEST]
if header :contains "Subject" "TEST"
{
setflag "\\Seen";
stop;
}
I am using roundcube r4591 and as IMAP server Dovecot 1.2.16.
Is this a bug and/or how i can solve this problem ?
Thanks, Regards,
Carsten
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello all,
How to send post value to roundcube web login from outside? I would like to login my roundcube through another weblogin page. Which post parameters should I send?
Thank you
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi - I just upgraded from 0.4.2 to 0.5.1 and came across the following
issue:
After upgrading, I ran the installer to test the config. The installer
told me that "imap_root" setting in main.inc.php had been changed to
"imap_ns_personal". So I replaced the imap_root entry with one reading
imap_ns_personal - and did not see any folders anymore, and could not
read e-mails anymore. After trying numerous things, I just replaced
imap_ns_personal again with imap_root and ... it's working again.
Why? The installer is not happy with this change - but I am. :-)
Thanks!
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello.
I see subscribe archives, but not understand RC support email threads
or not? I use $rcmail_config['autoexpand_threads'] = 1 but nothing
happens.
"Threaded message listing" in main RC page that mean?
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I am looking to update to roundcube 0.5.1 and I've moved my template
from 0.4.2 over to it but it looks like the folder management has
changed. Where previously I had a section in the managefolders.html
file to create new folders, this no longer seems to work
<div style="">New Folder Name: </div>
<div style="padding: 10px 0px 10px 0px;"><roundcube:object
name="createfolder" form="subscriptionform"
hintbox="rcmailaddfolderhint" /></div>
<roundcube:button command="create-folder" type="input"
class="button" label="create" />
<div id="rcmailaddfolderhint" class="hint"
style="margin-top:1em; height:16px"></div>
It looks like the functionality for adding and editing folders has
been moved to the folderedit template, however my current template has
a visible form for adding folders in the main folders screen which is
in the folders.html file. Is it still possible to do this?
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I am totally new to RoundCube and mail servers in general. Have used the
QNAP installer to install Xdove on my QNAP TS-410. Install went OK. No
error messages and I am getting some results with Uebimiau so Xmail is
working.
My question is very basic but missing from any documentation. What is the
url to log in? Is it qnap/RoundCube as a URL? If it is then this give me
nothing.
Help please
Paul Lakra
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
It did help me to turn the installer on and check things. One of the
messages said it could not read the file. I chmoded it 664 and voila
:) So it was a simple permission issue.
Warm regards,
Zbigniew Szalbot
On 1 March 2011 10:40, Zbigniew Szalbot <zszalbot(a)gmail.com> wrote:
>
> Hello,
>
> On 1 March 2011 09:42, Zbigniew Szalbot <zszalbot(a)gmail.com> wrote:
> >
> > Hello,
> >
> > > Did you rename the dist file?
> > > By default, the db.inc.php file doesn't exist but the db.inc.php.dist
> > > exists.
> >
> > Thanks. My installation was working before so db.in.php exists in the
> > config directory.
>
> One more clue from the error log:
> DB Error: no RDBMS driver specified in
> /path-to-roundcube/roundcube/program/include/rcube_mdb2.php on line
> 101
>
> Thanks!
>
> Zbigniew Szalbot
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello,
I tried upgrading Roundcube 0.4 to 0.5 (roundcube-0.5.1,1) on a
FreeBSD machine. It all went well and I used the mysql.update.sql file
to upgrade the database. However, when I now want to log in to
roundcube, it gives me the following message:
> CONFIGURATION ERROR
> db.inc.php was not found.
> Please read the INSTALL instructions!
I am not sure why db.inc.php cannot be found. It does exist in the
config directory. Can you please help me troubleshoot it? Thank you
very much in advance!
Zbigniew Szalbot
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Each time I go to personal setting I get the following:
Thu Feb 24 07:49:03 2011] [error] [client 192.168.0.1] PHP Fatal error:
Call to a member function request_form() on a non-object in
/usr/share/roundcubemail/program/steps/settings/func.inc on line 236,
referer: http://myhost:81/?_task=mail
Can someone please help?
--
Stephen Cox
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi all,
today, i have receive a email,that contains the two docs
as the attached files.(word document), and tha's is a forward message
from my co-wrok. but it can not display the attached files in RCU
0.5STABLE. (test twice). same email, he has cc to my other email
address(non corporation mail server), tha's ok, it's display the
attached files in webmail. so i think, that's a bug in RCU 0.5 stable.
the attached file is the source of the email.
Deng
--
Best Cheer
(XiaMen) Stone Works CO.,LTP.
Phone: 0592-7221600
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/lG/HVqODNkc/message-source.txt
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
I have a number of people complaining about messages not displaying
correctly in roundcube, I can pull up the messages in squirrelmail and
they will display correctly but in roundcube they only partially
display, any idea how I might fix this?
Thanks,
James Devine
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello
I have such errors in logs/errors file
[18-Feb-2011 15:20:31 +0100]: PHP Error: Deprecated hook name.
outgoing_message_headers -> message_outgoing_headers in
/usr/local/www/roundcube/program/include/rcube_plugin_api.php on line
207 (GET /roundcube/?_task=settings)
Could someone explain to me what's wrong ?
Thanks a lot
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hi,
im useing roudceubemail 0.5stable, i have a problem about
open pdf file in roundcubemail. the roudcubemail can not load PDF files
and has been displayed "LOADING data".
please the attached file.
IE8.0
--
Best Cheer (XiaMen) Stone Works CO.,LTP.
Phone:
0592-7221600
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/C3/yP1E6Odf/pic.PNG
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