With Postgres, has anyone else seen any authentication issues? We had
a table that had picked up a NOT NULL constraint (not in the default
SQL file) and thus new user inserts were failing. The user was
authenticated, though, and granted access to a seemingly random user
record (and contacts, and identities). So a user logged in without a
user record would be able to easily see contacts and confidential
information for other users.
While not a moajor issue since it doesn't seem to happen with the
default SQL file, why is there no sanitation or error handling
revolving any of the authentication queries?
(Roundcube RC2)
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I just installed and configured RoundCube for my company and it works
quite well.
There is a slight problem though : I successfully configured our LDAP
directory in RoundCube, and it works as expected in the "Address book"
component ; but I have no auto-completion in the mail composer, although
there is with the "local" address book (RoundCube searches e-mail
addresses as I type in the "Recipient" field).
Is it something I didn't configure correctly ? Or is it a
yet-to-implement feature ?
Best regards,
--
Raphaël HALIMI
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I just downloaded and installed Round cube, but I can not get it to work.
This looks like it may be a good component, if I can get it to work.
I guess my biggest problem is I don't understand the configuration very
well. I know what my smtp server is. Both for outgoing and incoming.
And my servers port is 80 Ya;ll have the default for 25. I have tried
different things and can't get it to work. I don't understand the managing
users either.
What is suppose to go in the "Mail Host" and "Alias" fields ? I need help
in configuring this component please.
--
Thank You,
Wayne & Rosalinda Roberts
Global Sports Association
E-Mail - wayne(a)gsausa.org
GSA Phone - 678-318-3658
Cell Phone - 678-878-7262
_______________________________________________
List info: http://lists.roundcube.net/users/
BashLogic RoundCube wrote:
>
> so is this due to not having the db updated or modified somehow during
> my upgrade process?
> or is this a latelly generated bug?
Well, if the UPGRADING instructions tell you to update your database schema
(and I'm sure they do) you should trust them and do it.
Why do you think it's a bug?
~Thomas
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi everyone,
I'm looking into a successor of our well know Horde/IMP webmail
environment. Upgrading is quite a nightmare for our site, since we
have customized (disabled functionality) in IMP. With every new
release, we need to sit down and discover (again) where the various
bits need to be replaced.
I stumbled upon roundcube. It looks very nice, the UI acts as if it is
a regular MUA on any computer.
I have a question about IMAP subscriptions for shared IMAP folders. We
use Cyrus as an IMAP server. Cyrus offers te ability to share
mailboxes. In IMP I can view the shared mailboxes of others, but in
roundcube, I don't see the other mailboxes at all. I suspect it has
something to do with the root folder of the INBOX of the current user
and the absolute toplevel of what can be displayed in roundcube. I'm
no (php) developer at all. In the user list archive I found one topic
with th e same subject as this message. It's been more than a year
since that message appeared on the users list. Is there any update on
this topic?
Thanks in advance,
Br.
Dennis
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
Are there rewrite rules I can apply to roundcube? Most servers support
this nowadays (at least more deployed web servers support this than mail
servers that support IMAP, in comparison :P) so I thought it would fit
roudncube well, but I could not find any on the web.
Greetings,
bb
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
How can i empty a folder? I have several folders with thousands of messages
(e.g. RSS feeds) and clicking on empty doesn't do anything. It would take
hours to go through and use select all and delete. I'm using the latest
v0.1-rc2.
Cheers,
Matt
_______________________________________________
List info: http://lists.roundcube.net/users/
I thought I had seen this posted before, but I can't find it.
Anyways, after implementing spamassassin via amavisd-new I am now getting
double emails in my inbox. I'm running Postfix with Dovecot. Any ideas on
what the problem is or where to look? Kmail and Thunderbird on the desktop
don't show double emails, only RC. I've attached a picture for clarity.
TIA!
-Chris
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Pv/kuutzgoo/roundcube_dblemail.jpg
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 people,
I looked over the roundcube website for ldap address book support but
didn't find anything...
Can roundcube mail search a ldap address book?
Thank you,
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi guys,
I'd like to know wich icon set is using the default skin, because I'd
like to make some improvements to RC, and it would be nice to use icons
from the same set :-)
Thanks
--
Wadin Julien
Tel : +32 (0) 475 632 168
Web : http://blog.julienwadin.be/
Simplifiez vous Postfix : http://postfixwinadmin.jwhosting.eu
_______________________________________________
List info: http://lists.roundcube.net/users/
My Inbox o the address sales(a)theparticularman.com is empty - is there
any way to get it reloaded??
Thanks, Genny
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I have two Roundcube installations, both installed through an SVN checkout.
How can I easily track possible DB schema changes since a certain SVN
revision number?
Cheers,
Ringo De Smet
ringo.desmet(a)celaeno.be
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi users,
I've enjoyed using roundcube for over a year now, and it's been a great
tool. If you're like me, with 1000+ contacts, adding contacts manually to an
address book was not something I was up for.
So here's a quick patch I've made, to handle .csv uploads, and adding
contacts to the database
*This patch is based on 0.1rc1 not the newer 0.2 version (released Nov/07).
I cannot guarantee it'll work on the new version.*
The patch creates a new directory csv_upload in the root of the RC
installation - I know this is not common practice, but it makes updating the
rest of the program much easier.
I noticed a recent post on here for uploading .csv files server-side and
doing one-off address book updates, but here's a glorified version, which
will do the following:
- Handles file upload
- Checks columns for correct data
- Adds NEW contacts to the database
- Old (already inserted) contacts are ignored
- Interface is all via one additional link on the 'address book' page
Todo:
- Use RC-approved methods of including files
- Change add-on's folder structure
- Secure the uploading of .csv files. Temp files are currently held
one at a time, at $_server_root/imported.csv
- Link to the uploading interface via one of the buttons, as opposed
to a static link
Download the patch at
http://www.rmacd.com/downloads/howto/rc-csv/roundcube-csv.patch
Download .tar.gz
http://www.rmacd.com/downloads/howto/rc-csv/roundcubemail-0.1-rc1-CSV.tar.gz
Follow the installation info at
http://www.rmacd.com/downloads/howto/add-csv-to-roundcube.php
If anyone would like to contribute to this little add-on, please let me
know.
--
Ronald MacDonald
http://www.rmacd.com/
0777 235 1655
_______________________________________________
List info: http://lists.roundcube.net/users/
I have tried localhost as well as 127.0.0.1 to connect to my Dovecot
server. Nothing is visible in the Dovecot logs to indicate a
connection is being made or attempted.
Squirrelmail works fine. I have read the documentation but see no
reference to what I might try next.
-Bill
NL
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I noticed the following change in the db config file:
-// currentyl suported db_providers: mysql, pgsql, sqlite
+// currently supported db_providers: mysql, sqlite
I'm running roundcube rc2 with postgresql at the moment, and it still seems
to work. Has postgresql support been officially dropped?
Regards,
Geert
_______________________________________________
List info: http://lists.roundcube.net/users/
All other pages load correctly, with the proper skin. The mail page
appears as nearly flat html, without CSS.
The reading pane is not visible.
I've attached a capture.
Thoughts, ideas? I'm running Gentoo, with a manual install.
Thanks,
D-
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/7j/jXvALq3y/screen.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/
Thanks for all replies, i will try all those.
***********************************
_______________________________________________
List info: http://lists.roundcube.net/users/
Yes doesn't quite work properly yet but looks good. Be interesting to insert youtube clips into emails :)
> ----- Original Message -----
> From: bb <bb(a)0brg.net>
> To: kmnair <kmnair(a)gmail.com>
> Subject: Re: [RCU] Hi, Roundcube Community
> Date: Tue, 06 Nov 2007 13:46:15 +0100
>
>
> kmnair wrote:
> > On 11/6/07, Lewis Butler <lbutler+roundcube(a)covisp.net> wrote:
> >> On 5-Nov-2007, at 08:51, N.Emrah ALBULAK wrote:
> >>> So than I want to ask something that I think what is the most
> >>> important for a Create a HTML mail message. I didnt see any option
> >>> or setting for set to html that mail body message.
> >
> >
> > This feature is already available in the SVN. I did not check the RC2.
> >
> > kmn
>
> In RC2, have a look at lines 224-225 of /config/main.inc.php.dist:
>
> // enable composing html formatted messages (experimental)
> $rcmail_config['enable_htmleditor'] = FALSE;
>
> I do not know what exactly this does but you could try it out.
>
> bb
> _______________________________________________
> List info: http://lists.roundcube.net/users/
>
www.danda.org.uk
DANDA - Developmental Adult Neuro-Diversity Association
=
Negative Search Hurting Your Business?
Positive reinforcement is a necessary step to remove negative listings
http://a8-asy.a8ww.net/a8-ads/adftrclick?redirectid=7d5dfacdfea43aa5c079f18…
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
Greetings All,
I am new to installing Roundcube webmail and have followed the
instruction closely, but am getting an error that I am not sure how to
fix:
------------------------------------
DATABASE ERROR: CONNECTION FAILED!
Unable to connect to the database!
Please contact your server-administrator
-----------------------------------
The Error log file:
-----------------------------------
[02-Nov-2007 07:45:40] PHP Warning: include_once(config/main.inc.php)
[<a href='function.include-once'>function.include-once</a>]: failed to
open stream: No such file or directory in
/www/outstep-mail/Webmailers/RoundCube/program/include/main.inc on
line 129
[02-Nov-2007 07:45:40] PHP Warning: include_once() [<a
href='function.include'>function.include</a>]: Failed opening
'config/main.inc.php' for inclusion
(include_path='/www/outstep-mail/Webmailers/RoundCube/:/www/outstep-mail/Webmailers/RoundCube/program:/www/outstep-mail/Webmailers/RoundCube/program/lib:.:/usr/share/pear')
in /www/outstep-mail/Webmailers/RoundCube/program/include/main.inc on
line 129
[02-Nov-2007 07:45:40] PHP Warning: include_once(config/db.inc.php)
[<a href='function.include-once'>function.include-once</a>]: failed to
open stream: No such file or directory in
/www/outstep-mail/Webmailers/RoundCube/program/include/main.inc on
line 138
[02-Nov-2007 07:45:40] PHP Warning: include_once() [<a
href='function.include'>function.include</a>]: Failed opening
'config/db.inc.php' for inclusion
(include_path='/www/outstep-mail/Webmailers/RoundCube/:/www/outstep-mail/Webmailers/RoundCube/program:/www/outstep-mail/Webmailers/RoundCube/program/lib:.:/usr/share/pear')
in /www/outstep-mail/Webmailers/RoundCube/program/include/main.inc on
line 138
[02-Nov-2007 07:45:40] PHP Warning: array_merge() [<a
href='function.array-merge'>function.array-merge</a>]: Argument #2 is
not an array in
/www/outstep-mail/Webmailers/RoundCube/program/include/main.inc on
line 139
-----------------------------------
Any ideas on what I need to do to fix this?
I have set up the database and user roundcubemail and database as well
as giving the proper privileges and password along with configuring
the config files.
Sincerely and have a great day,
Lonnie T. Cumberland
Email: Lonnie(a)outstep.com
Lonnie_Cumberland(a)yahoo.com
Lonnie.Cumberland(a)gmail.com
"Helping to improve our communities, one by one......"
_______________________________________________
List info: http://lists.roundcube.net/users/
First at all This is my first message to community and I want to
thank you roundcube project that is very cute and the best webmail system
that i really loved.
So than I want to ask something that I think what is the most important for
a Create a HTML mail message. I didnt see any option or setting for set to
html that mail body message. And a WYSIWYG editor for basic formatting
message's bodies.
Is it possible to make it, or there is an option for this, or is it comming
newest releases?
Thank you.
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/Qn/B8xEtM7G/image001.gif
Only click these links if you trust the sender, as well as this message.
--- 8< --- detachments --- 8< ---
_______________________________________________
List info: http://lists.roundcube.net/users/
What a pointless unwelcoming response. Makes me want to post html messages to the group.
N.Emrah ALBULAK - hi and welcome to the group. I don't think that is an option in rc at the moment but you can add tinymce:
http://tinymce.moxiecode.com/
I haven't done it yet but a friend said you can upload tinymce and just add some script to a page and it will add wysiwyg editor to any editable text box on the page. I might try that and then post to this group :D
> ----- Original Message -----
> From: "Lewis Butler" <lbutler+roundcube(a)covisp.net>
> To: "Roundcube Mail" <users(a)lists.roundcube.net>
> Subject: Re: [RCU] Hi, Roundcube Community
> Date: Mon, 5 Nov 2007 12:52:54 -0700
>
>
> On 5-Nov-2007, at 08:51, N.Emrah ALBULAK wrote:
> > So than I want to ask something that I think what is the most
> > important for a Create a HTML mail message. I didnt see any
> > option or setting for set to html that mail body message.
>
> That's part of the reason I like Roundcube.
>
> Now, please don't send html formatted email to the mailing list.
>
> >
> _______________________________________________
> List info: http://lists.roundcube.net/users/
>
www.danda.org.uk
DANDA - Developmental Adult Neuro-Diversity Association
=
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
is it possible to Assign the IMAP folders in Rouncube to a
functionality. For Example : Folderxy->Trash, FolderAb->inbox
I use Roundcube with googlemail IMAP and it creates always new
folders. But the real bad thing is, that deleted Messages are not
deleted correctly. They are just archived wenn i delete them. In my
normal Mail Application i can assign the Trash,Spam and Inbox folders
to theyre corresponding folder in gmail. That works perfectly. Is
that possible in Roundcube too ?
Regards,
Tom
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all,
In the past, we were using RC rc1. We upgraded later for a svn version
to have the html editor.
It seems that the spell check is only available in English. In the past,
we had a drop-down list, French was available.
How can we make this working again ?
Thank you
--
Wadin Julien
Tel : +32 (0) 475 632 168
Web : http://blog.julienwadin.be/
Simplifiez vous Postfix : http://postfixwinadmin.jwhosting.eu
_______________________________________________
List info: http://lists.roundcube.net/users/
On Fri, 30 Sep 2005 10:23:45 -0400 Ben Hall wrote:
> Hello,
>
>
> I downloaded and installed RoundCube yesterday. What an excellent webmail program! While I look forward to spell check, the real feature that I'd like to see is the ability to save to draft in the compose window. Is there a way to do this that I'm just missing?
>
> Also, the tar.gz files that I downloaded from the site didn't have the index.php file. I had to grab the CVS version.
>
> Finally, I have very basic instructions that I wrote as I set it up yesterday. I would be happy to post them somewhere if it would help.
>
> Cheers,
>
> Ben
Since there has been no reply to this mail I was wondering what happened
to this feature request... is it never going to be implemented?
_______________________________________________
List info: http://lists.roundcube.net/users/
Quoting c o <co(a)graffiti.net>:
> Hi Earnie,
> MySQL version 5.0.27-standard - how do I optimise it? Cheers.
>
I use phpMyAdmin. It has magic buttons. At the bottom of the list of
tables for the DB select ``Check All'' then in the ``With selected:''
list box choose ``Optimize table''. You can also use SQL ``OPTIMIZE
TABLE <table_name>'' replacing <table_name> with the table to optimize.
Earnie -- http://for-my-kids.com/
-- http://give-me-an-offer.com/
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
everythime i sent mail with attachments, it does not sent when it is bigger
as 3 MB. However when i attach a lot of small files it is no problem. When
i attach one file with about 5 MB, and try to send it, the progress monitor
is flashing and tells me mail is sending. But Nothing more happens. I am
thrown back to the mail form, but the mail is not sent. The Upload is
working great, and it has no problems with the upload limit of the php.ini,
because other php upload scripts on my webspace can take about 20 MBs.
Does anyone have an idea what could be the problem ?
Regards,
Tom
_______________________________________________
List info: http://lists.roundcube.net/users/
Some of my users brought this to my attention.
Certain messages do not wrap text. When these messages come into RC (0.1 rc1).
Is this a known problem, or has anyone else seen it? It's with
plaintext e-mails only.
Thanks!
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all, I have been useing RC1 ok until today when I was writing an email and a message popped up saying "cannot connect to IMAP server" and I was logged out :S
I hadn't changed any files etc but now I can't log int - with any of the accounts :(
Please advise.
Cheers all :)
=
Elite Crete Systems - Concrete Repair
Elite Crete Systems manufacturers of specialty concrete repair and resurfacing systems. Visit us online.
http://a8-asy.a8ww.net/a8-ads/adftrclick?redirectid=47d64584d0e3c8bc0bfefc2…
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all,
This week end we changed to winter time.
Is that possible, via a sql statement, to change this setting for all
our users ?
I don't want to have 100 peoples sending me an email to say "Oups,
emails are not displayed at the right time" :-)
Thanks
--
Wadin Julien
Tel : +32 (0) 475 632 168
Web : http://blog.julienwadin.be/
Simplifiez vous Postfix : http://postfixwinadmin.jwhosting.eu
_______________________________________________
List info: http://lists.roundcube.net/users/
I've had my server updated from your rc1 version to rc2, but now,
while I see the contents of my Inbox when opening the application, the
contents of my other email folders no longer displays. Instead, I see
nothing.
This works normally in SquirrelMail and in my desktop email clients.
Ides?
Peace,
Gene Steinberg
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello:
I just upgraded to rc2 as per the instructions. I had the preview pane
enabled before.
The preview pane was present after the upgrade, but as soon as I changed
something in my settings and saved it, the preview pane disappeared.
There is also no option to re-able it. Was this setting removed?
Thanks
Ala
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi folks,
i've just want to try refresh RoundCube, test it other vhost gave me
always "invalid password"
try this vhost withe elder ver. and perfectly works
conffiles attached .... a very simple test configuration ... tried to
erease cookies, i read it some posts before ...
any help welcome ;-)
--
Üdv: P@siC
--- 8< --- detachments --- 8< ---
The following attachments have been detached and are available for viewing.
http://detached.gigo.com/rc/MU/xXKsQsas/rcconfs.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/
Is there a way to select all contacts? And put people in groups?
Cheers
=
Valenti International Matchmaker
Valenti provides matchmaking services for upscale professionals with a desire for a committed relationship. Quality singles of all ages residing in North America as well as internationally.
http://a8-asy.a8ww.net/a8-ads/adftrclick?redirectid=f0a37bc7f2ea6887fa44877…
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I install roundcubemail-trunk-r860-20071008.tgz and i cant "copy" a part of
message with Internet Explorer. With Mozilla Firefox yes.
Thanks.
Regards
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all is there a wysiwyg or rich text editor?
cheers
=
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
Hello,
I have a trouble with the headers when I try to reply (or read) a
message. I have the e-mail server on a different machine that roundcube.
Consequently, I mark this option true:
> $rcmail_config['enable_caching'] = TRUE;
Imagine that I have my cache clean in the database. When I reply (or
read) the first messages that I have, there is no problem with the
headers in the reply screen. But, when I trash the messages and I have
new mail in the roundcube the headers are corrects in the main screen,
but when I reply (or read) this new messages all the headers in the
reply (or read) screen are the headers of the firsts messages.
Initially I have the option that I mention before false:
> $rcmail_config['enable_caching'] = FALSE;
But this causes the caducity of the user's session and don't permit
later login the user again until the user delete the cookies on his
navigator.
Does someone any idea to solve this problem?
Thank's in advance.
--
......................................................................
__
/ / Roger Castells
C E / S / C A Tècnic en microinformàtica
/_/ Centre de Supercomputació de Catalunya
Gran Capità, 2-4 (Edifici Nexus) • 08034 Barcelona
T. 93 205 6464 • F. 93 205 6979 • rcastells(a)cesca.es
......................................................................
_______________________________________________
List info: http://lists.roundcube.net/users/
i tried to answer someone the other day about something they posted to the
list, and my reply bounce due to a local sendmail configuration error. i
have fixed that error and am just testing, since this list is the only
manifestation i stumbled upon. sorry for the OT post. my reply is not
relevant any longer, thus this test.
_______________________________________________
List info: http://lists.roundcube.net/users/
It seems yesterday's code workaround didn't work with the older messages for
some reason, albeit it did work with all of my attempts. So I discarded it and
I had to come out with another try. And here it is.
This seems to do the trick right now (program/steps/mail/compose.inc):
$MESSAGE['headers'] = &$IMAP->get_headers( $msg_uid );
$MESSAGE['structure'] = &$IMAP->get_structure($msg_uid);
if ( empty ($MESSAGE['headers']) || $MESSAGE['headers']->from == '' ) {
while ( list ( $key , $val ) = each ($MESSAGE['structure']->headers ) ) {
$MESSAGE['headers']->${key} = $val;
}
}
It's getting rather frustrating.
I'll let you know in case I can ever manage to trace this back to the
primitive functions.
Cordialità / Best regards / Gxis la
------------------------------------------------------------------------
Manuel Giorgini <giorgini(a)interlogica.net>, Programmatore
INTERLOGICA e-business solutions - http://www.interlogica.net
Via Fusinato, 27 - IT 30171 Mestre VE - Italia - Unione Europea
Tel +39 041 099 30 00 (6 linee r.a.) - Fax +39 041 504 11 72
------------------------------------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi all, what do I need to do so that a user only has to put their username in to the login box and not the full email. user(a)thesite.com and password cut down to user and password.
Cheers :)
=
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
I've done a little poking around can't find an solution to my problem. I
was hoping someone on the list might be able to help.
I've just done the upgrade from beta2 to rc1. But when I attempt to
access the RC site I get this error in my RC log:
PHP Fatal error: Call to undefined function: strip_quotes() in
/var/www/htdocs/roundcube/index.php on line 93
Does anyone have any suggestions for me?
Thanks in advance.
--
Jason Murray
IMBA Durham Region Rep - www.imba.org/canada
DMBA President - www.durhammountainbiking.ca
TORBG Executive - www.torbg.org
_______________________________________________
List info: http://lists.roundcube.net/users/
Following up in my list of misadventures with a Domino IMAP server (for the
record, "* OK Domino IMAP4 Server Release 6.5.5FP3"), I noticed that when
preparing for a reply, RC wouldn't auto-fill the To and Subject fields from
the original message. Also the header line looked something like:
On , wrote:
It's not the first time that I had to tweak RC to make it drive around what I
can only conclude to be weirdness in the Domino server, mostly effecting the
IMAP function get_headers(). In this particular case I managed to make
everything appear again by changing the following line in
program/steps/mail/compose.inc, from
$MESSAGE['headers'] = &$IMAP->get_headers($msg_uid);
to
$MESSAGE['headers'] = &$IMAP->get_headers($msg_uid , $_GET['_mbox'] , false );
I am using 0.1-rc1 at this point. To be very honest I am afraid to upgrade it
because I'd have to scout around and re-introduce my changes. I'd rather wait
for the owners of the Domino server to announce an upgrade on their part...
Cordialità / Best regards / Gxis la
------------------------------------------------------------------------
Manuel Giorgini <giorgini(a)interlogica.net>, Programmatore
INTERLOGICA e-business solutions - http://www.interlogica.net
Via Fusinato, 27 - IT 30171 Mestre VE - Italia - Unione Europea
Tel +39 041 099 30 00 (6 linee r.a.) - Fax +39 041 504 11 72
------------------------------------------------------------------------
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I've just tried to install the RC1 of roundcube. But I've encountered
some strange Problems:
Steps to reproduce:
-I try to login.
-I take teh correct logininformations
-Login
-> get back to login-Screen, ith blank fields
There is no warning in the log-directory. (It is writeable and i know it
works.)
I get a new row in the session-table (mysql)
I get a user in the users-table
I found a some topics with this Problem in the Forum, but I didn't find
any solve.
Any Ideas?
Regards,
Christian
--
UNEM-Produktion
Dipl.-Inf. Christian Kütbach
Tel.:02507-982722
c.kuetbach(a)unem.de
www.unem.de
_______________________________________________
List info: http://lists.roundcube.net/users/
I have a problem in Roundcube where some messages don't have dates at
all. That field just shows up blank.
I realized that all of the emails doing this were coming from
livejournal.com, so I compared the dates between one that does display:
Date: Sun, 07 Oct 2007 00:07:27 -0700
and one that doesn't display:
Date: Sat, 6 Oct 2007 21:34:24 UT
So my guess is that the UT is throwing things off. Any suggestions on a
fix?
--
Todd Megee
http://rathervague.com/
Even the clearest and most perfect circumstantial evidence is likely to be at
fault, after all, and therefore ought to be received with great caution. Take
the case of any pencil, sharpened by any woman; if you have witnesses, you will
find she did it with a knife; but if you take simply the aspect of the pencil,
you will say that she did it with her teeth.
-- Mark Twain, "Pudd'nhead Wilson's Calendar"
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi! I'm setting up a mailserver with postfix + dovecot following this HOW-TO
(http://workaround.org/articles/ispmail-etch/) and I would like to use
RoundCube (0.1 rc1) for it. I'm using virtual domains. The problem is that I
can't get RoundCube working: every time I try to login i get "Login failed".
I have this in my main.inc.php:
$rcmail_config['virtuser_query'] = "SELECT email FROM
mailserver.view_usersWHERE email = '%u'";
RoundCube mysql user has reading access to the mailserver DB, and I have
successfully tested this query on the DB.
I think the problem is that my imap server is using TLS. Is that "diagnosis"
correct? How can I fix it?
Thanks in advance,
Daniele
--
Daniele Salatti
http://www.salatti.net
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
strange thing!! I uploaded some days again my version of roundcube, and everything was working, I could connect to any IMAP server. But since today my login fail but without an error (mit log status is 4, so errors should be displayed), if I log in with a wrong password there will be an error displayed.
Check this out: http://jangloeckner.virtual.vps-host.net/roundcube/
Exactly the same roundcube configuration runs on an other server, there everything is working fine (check it out: http://www.dddesign.ch/roundcube/ )
Any ideas?
jan
--
GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS.
Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail
_______________________________________________
List info: http://lists.roundcube.net/users/
I'm using r803 from 2007-09-20.
When composing in HTML mode, the first click of 'Save Draft' works as it
should. Subsequent clicks of 'Save Draft' do nothing.
In Plain text mode the 'Save Draft' button works perfectly.
-Michael
--
CONFIDENTIALITY NOTICE:
This message, and any attachments that may accompany it, contain information that is intended for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential, or otherwise exempt from disclosure under applicable law. If the recipient of this message is not the intended recipient, any disclosure, copying, or other use of this communication or any of the information, which it contains is unauthorized and prohibited. If you have received this message in error, please notify the original sender by return mail and delete this message, along with any attachments, from your computer. Thank you.
_______________________________________________
List info: http://lists.roundcube.net/users/
New to the list. I am trying to upgrade from from Version 0.1-beta2 to Version 0.1-rc1
and am receiving the following error when running the mysql.update.sql script. Can someone please tell
me how to fix this. thanks!
SQL query:
ALTER TABLE `messages` DROP `body` ,
DROP INDEX `cache_key` ,
ADD `structure` TEXT,
ADD UNIQUE `uniqueness` ( `user_id` , `cache_key` , `uid` ) ;
MySQL said: <http://dev.mysql.com/doc/mysql/en/error-messages-server.html>
#1062 - Duplicate entry '4-INBOX.msg-390' for key 2
and here is the script that was supplied to upgrade:
-- RoundCube Webmail update script for MySQL databases
-- Updates from version 0.1-beta and 0.1-beta2
ALTER TABLE `messages`
DROP `body`,
DROP INDEX `cache_key`,
ADD `structure` TEXT,
ADD UNIQUE `uniqueness` (`user_id`, `cache_key`, `uid`);
ALTER TABLE `identities`
ADD `html_signature` tinyint(1) default 0 NOT NULL;
-- Uncomment these lines if you're using MySQL 4.1 or higher
ALTER TABLE `users`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci,
CHANGE `username` `username` VARCHAR( 128 ) CHARACTER SET utf8 COLLATE utf8_
general_ci NOT NULL,
CHANGE `alias` `alias` VARCHAR( 128 ) CHARACTER SET utf8 COLLATE utf8_genera
l_ci NOT NULL;
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi,
I have installed rc the latest from the website. I just get a blank
page. My error log says:
[02-Oct-2007 12:07:27] PHP Fatal error: Call to a member function
on a non-object in
/home/brentadv/public_html/rc/program/include/rcube_db.inc on line
366
[02-Oct-2007 12:35:45] PHP Fatal error: Call to a member function
on a non-object in
/home/brentadv/public_html/rc/program/include/rcube_db.inc on line
366
[02-Oct-2007 12:36:45] PHP Fatal error: Call to a member function
on a non-object in
/home/brentadv/public_html/rc/program/include/rcube_db.inc on line
366
Line 366 says:
return "now()";
:s but I don't think it's that.
Also I couldn't work out how to do this in cpanel. I have already
set up my database with correct username and pass.
Database Setup
While we're uploading (or after we're done) we have one final step
to do before we can start using Roundcube. We need to set up our
database. Open your website control panel. You first need to create
a database and user with the information we decided earlier. Then
add that user to the database. Next we execute the SQL file found
in the "/SQL/" directory in Roundcube that is named:
"*.initial.sql" where * is your database backend type (mySQL,
PostgreSQL, SQLite).
For example with mysql enter the following code on the command line:
mysql --user=(your_db_user_name) -p (your_db_name) < mysql.initial.sql
=
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/dev/www.danda.org.uk
DANDA - Developmental Adult Neuro-Diversity Association
=
--
Powered By Outblaze
_______________________________________________
List info: http://lists.roundcube.net/users/
Hi Folks,
I disabled persistent db-connections and IMAP cache, as you can see:
db.inc.php:
// use persistent db-connections
$rcmail_config['db_persistent'] = FALSE;
main.inc.php:
// enable caching of messages and mailbox data in the local database.
// this is recommended if the IMAP server does not run on the same machine
$rcmail_config['enable_caching'] = FALSE;
Again, my server performance hangs with a lot of httpd process, but now
after something about 15 hours of working. Any idea of how can I solve this?
PS: I'll install apache-top to understand better what's happening.
Thanks,
Felipe Neuwald.
_______________________________________________
List info: http://lists.roundcube.net/users/