Not sure how this happened, but my Trash folder isn't visible anymore
on the left side of the screen near the top of my folders. I've also
checked under folders and when I try there the trash folder has no way
to empty itself. I currently have 599 emails that need to be deleted and
I'm at 84% capacity. I've even tried going between Squirrel mail and
Roundcube hoping there was some connection but there wasn't. I'd
appreciate any tips regarding this since this is used for business email
and I want to insure receipt of correspondence. Thanks!
All the Best,
Savina
Savina Darzes
CHOCOLATE TASTING & MORE!
Neighborhood
Chocolate Walks and Indoor Tastings
_We've Got Portland Covered...In
Chocolate! _
www.ChocolateTastingAndMore.com [1]
Cell 503-334-8422
Links:
------
[1] http://www.ChocolateTastingAndMore.com
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Is there a way to create custom labels to be used in templates in
roundcube objects such as <roundcube:button command="mail"
label="custom_messages" class="button-messages" /> so that I don't
have to edit the main labels.inc file? I'm trying to avoid having to
merge files when I upgrade
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
hi,
i am new to webmail and am having troube installing this webmail on my server.
1) i want to know how can i make accounts on roundcube webmail?
2) i have fully installed this webmail but at the last step it told me
to test the webmail. I tried it but i still dont understand it.
3) now when ever i go to the webmail it says that the webmail can not
connect to database. And when i checked the config file it had the
correct information and when i checed the database that also had the
correct information.
since i am new can anyone please tel me how to fix these probles.
thanks.
--
Sent from my mobile device
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello
We are in the middle of a big migration project involving RoundCube
as web front-end for our e-mail users. I have been testing jmeter for
roundcube benchmarking, but before "getting into the mud", does anybody
have experience / tools benchmarking roundcube?
Regards
Javier
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Sorry if I am re-posting it, as I couldn't find it in my Sent box...
Hello,
I am using postfixadmin and adding users/domains with it. I edited
roundcube main.inc.php to read $rcmail_config['virtuser_query'] =
"SELECT username FROM postfix.mailbox WHERE local_part ='%u'"; but I am
getting IMAP Error: Login failed for bilgi from 193.255.135.1. LOGIN:
Authentication failed. in
/usr/local/share/roundcube/program/include/rcube_imap.php on line 192
(POST /?_task=login&_action=login)
Any thoughts?
Regards,
Tolga
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello.
I use the latest trunk. Ever since about two weeks ago attaching images
when composing mail is happening very fast, with no error but in the end
some images are only half uploaded while some are OK.
This is happening in all browsers I could test in Windows and Linux so
I suppose it's a server issue. I just don't remember doing anything
special on the server or in the rcube config.
Anybody please with an idea?
--
Arthur Titeica
PharmEc Software
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Sorry if this is the wrong channel, but I couldn't think of another way to communicate this:
I am not receiving my Trac verification email so my account is severely limited.
I tried verifying my account with two different email addresses, neither received the verification email.
Is anyone on this list that can help with this issue?
Thank you,
Florian Beer
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
I am still looking for help with this plugin if someone could point me in
the correct direction, I would be most appreciative.
On Mon, Mar 21, 2011 at 11:02 PM, Clay Smith <freelancefool(a)gmail.com>wrote:
> 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
Hi
I want show all folders from imap in plugin body, I tried to use
function rcmail_mailbox_select or rcmail_mailbox_list and I get empty page.
Would be nice if I will get folders as array or as select object for use
in form.
Maybe someone know how to do this?
Thanks for any help
--
Dariusz Raczkowski
www.atrium-pc.pl
ul. Głogowska 181
61-121 Poznań
gg: 11995886
tel/phone: +48 61 662 12 21
tel kom./cellphone: +48 664 167 788
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e
Hello
We want to use Roundcube 0.5.1 on Linux (RHEL 5.6 x64). We want to use RCU & mysql in the same host, and we will have a maximum of 1.500 concurrent users. The imap & smtp servers are in another host.
How much memory does roundcube uses? Any real-world experience?
Thank you in advance
Javier
--
List info: http://lists.roundcube.net/users/
BT/9b404e9e