Recent Posts

Pages: 1 ... 8 9 [10]
91
General Discussion / Re: Setting user passwords over SSH
« Last post by SKaero on February 23, 2024, 01:09:01 PM »
The error log should be in <RC root>/logs/errors

If you need to use mysql through a tunnel you'll have to setup the tunnel binding for it to work: https://stackoverflow.com/questions/464317/connect-to-a-mysql-server-over-ssh-in-php
92
Did you install the javascript dependencies?
Code: [Select]
2.2. Install Javascript dependencies by executing `bin/install-jsdeps.sh` script.
It sounds like your missing the bootstrap dependency.
93
Hallo

I just reinstalled the actual master branch of Roundcube on my Ubuntu 22.04 server, because I could not update my old Roundcube anymore, too much errors.

First I checked out the repo and installed along the INSTALL howto, had to compile the less css to get working css, I can read my mails and send, that works.

But none of any DropDown Boxes are working, when I open e.g. the Options Button, with sort and list settings, there is no dropdown popping down, when I click in the field. In Firefox Debugger I see the error:
Code: [Select]
TypeError: select.popover is not a functionThat is in this code part:
Code: [Select]
select.popover('dispose')
                .popover({
                    // because of focus issues we can't always use body,
                    // if select is in a dialog, popover has to be a child of this dialog
                    container: dialog || document.body,
                    content: list[0],
                    placement: 'bottom',
                    trigger: 'manual',
                    boundary: 'viewport',
                    html: true,
                    offset: '0,2',
                    sanitize: false,
                    template: '<div class="popover select-menu" style="min-width: ' + min_width + 'px; max-width: ' + max_width + 'px">'
                        + '<div class="popover-header"></div>'
                        + '<div class="popover-body" style="max-height: ' + max_height + 'px"></div></div>'
                })
...
that code is in line 3746 of js:
Code: [Select]
roundcubemail/skins/elastic/ui.js
When I stop in FF with any exception, I see other errors too:
Code: [Select]
TypeError: $(...).attr(...).popover is not a function
MutationObserver.observe: Argument 1 is not an object.
While loading. So not only the DropDown Boxes are broken, I guess.

I thought maybe the master branch is buggy here, so I switched to tag 1.6.6 but its the same.

Does anybody could give me a hint, what I am missing here?
I am sure, I must have forgotten something, maybe something about jquery?

Thank. frank
94
General Discussion / Re: Setting user passwords over SSH
« Last post by IGIT on February 23, 2024, 10:43:34 AM »
That's what I thought but changing the settings doesn't seem to do anything. I turned logging on but not log file is created. There's nothing in any of the system logs. Do I need to reactivate the plugin or reload its setting in some way?

There's an option to use SSL, but I don't think this is what I want. My MySQL client connect to the database server over SSH. I think it's an SSH tunnel through which, on the remote end, it just connects using localhost on the standard MySQL port. Is this the same as SSL?
95
General Discussion / Re: Generating errors.log file
« Last post by MarcioD on February 23, 2024, 09:42:53 AM »
This is exactly what I had in mind. Thank you very much :)
96
General Discussion / Re: Generating errors.log file
« Last post by SKaero on February 23, 2024, 09:27:01 AM »
You could change <RC root>/program/lib/Roundcube/bootstrap.php "'log_errors' => true," to "'log_errors' => false," I think that would stop the Roundcube logging. Not recommended but may work for a short period of time.
97
General Discussion / Re: Setting user passwords over SSH
« Last post by SKaero on February 23, 2024, 09:20:28 AM »
I'm not sure what you mean by access mysql over ssh but you'll need to change the password plugin settings in <RC root>/plugins/password/confic.inc.php
98
Requests / Re: Purge deleted mails older than X days
« Last post by SKaero on February 23, 2024, 09:15:20 AM »
The setting is under Settings -> Preferences -> Server Settings -> Clear Trash on logout.
99
General Discussion / Generating errors.log file
« Last post by MarcioD on February 23, 2024, 08:53:54 AM »
How can I completely disable errors.log generation in Roundcube?
Errors are created in a very large file in a short time and I need to completely disable the generation of any errors for this file.
Naturally, this is a temporary disabling until I find the reason for generating errors.
100
General Discussion / Setting user passwords over SSH
« Last post by IGIT on February 23, 2024, 07:20:14 AM »
Hi,

First post on this forum, please accept apologies if in the wrong place. We've just had to move our RC install to another server, and this server is not the mail server any more. Everything works except setting the user password via RC's Settings.

My understanding is that this use the password plugin, but nothing I set in the config.inc.php makes any difference, including setting logging to true. Is there something I have to do to reload the plugin's settings? Nothing about the failure is showing up in any RC logs, so I'm a bit in the dark.

The issue we have is that remote access to the MySQL database has been configured to go over SSH, SSL doesn't seem to work. I don't know how to configure SSL and I don't want to mess, too much, with the mail server's MySQL configuration. Will RC do MySQL access over SSH?

Many thanks,
Pages: 1 ... 8 9 [10]