Re: [RCU] favicon

2019-11-27 Thread A.L.E.C

On 11/25/19 9:28 PM, Jorge Bastos wrote:
Since 1.4 i believe, i’m seeing the logo image that i have set, beeing set as the favicon 
aswell, not sure if this was the behavior before 1.4.


Looks like a side-effect of improving skin_logo option. You can set a different image for 
favicon now. See 
https://github.com/roundcube/roundcubemail/blob/master/config/defaults.inc.php#L393-L424


--
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Disable skins selectively

2019-11-26 Thread A.L.E.C
On 11/26/19 10:30 PM, Dan wrote:
> I am aware of disabling skin selection by adding the 'dont_override' option 
> to the
> config.inc.php file. However, Is there a way to disable only one skin, 
> without removing
> the folder from skins/ ?
> 
> I would like to disable classic, But not manually remove the folder.

There's 'skins_allowed' option in 1.4.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] import contacts from a different webmail system on first login

2019-11-26 Thread A.L.E.C
On 11/27/19 1:46 AM, Gerardo Contreras wrote:
> Is there a way to write a hook or script so that when a new user is created 
> it seeks and
> pulls all contacts from the old system? The old system's contacts exist under 
> different
> names on a specific directory. (~user/.openwebmail/webaddr)

Take a look at squirrelmail_usercopy plugin.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Update 1.4.1 released

2019-11-25 Thread A.L.E.C
On 11/25/19 11:54 AM, Jari Fredriksson wrote:
> If you need help in configuring SSL into your server, you need to read howtos 
> of said
> server, be it Apache http or Nginx.

Please, read the question again.

Answer: Since PHP 5.6 self-signed certs aren't accepted by default. You need to 
use
imap_conn_options/smtp_conn_options in Roundcube config. See defaults.inc.php 
for some
examples.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Truncated filenames of attachments

2019-08-22 Thread A.L.E.C
On 8/22/19 1:20 PM, Jorge Listas wrote:
> Thanks you.
> 
> Reading your related link I saw another related:
> 
> https://github.com/roundcube/roundcubemail/commit/0c56b5d4c01a7912108b98694c14c74142206256
> 
> but the suggested changes are applied to the 1.3.6 version that I use.
> 
> I will check near this piece of code.

Are you using imap4d?

I would start with making sure the filename is encoded properly in email 
header. (Do other
mail clients display the full name?). Then using imap_debug I'd check if the 
filename in
BODYSTRUCTURE response from the server is correct.

If first answer is Yes, and the second is No. Then this would help
https://github.com/roundcube/roundcubemail/pull/6783

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Lost Contacts Entries

2019-08-03 Thread A.L.E.C
On 8/4/19 5:01 AM, Mark Constable wrote:
> I finally got to a weekend to investigate this. There are 6000+ contacts,
> 100+ contactgroups, 2000+ contactgroupmembers and some unknown number of
> users actually using contacts. If the contacts entries are not visible
> within the contactgroups and contactgroupmembers (in the web interface
> itself) how do I determine which user_id column in the contacts table is 
> meant to be
> matched to the user_id column in the users table?

Sounds like it might be this issue 
https://github.com/roundcube/roundcubemail/issues/6744

I guess we have to release 1.3.10 soon.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Changing password on first login?

2019-06-30 Thread A.L.E.C
On 6/29/19 4:38 PM, David Mehler wrote:
> Hello,
> 
> I've got an email server setup all with virtual users. There only
> interaction with it will be via a webmail interface in this case
> roundcube. What I'm wanting to do is set up automatic password change
> on first login. The users already have the ability using the password
> plugin to change their password, I just want to make it mandatory so
> they'll know their passwords, I won't. Would this be considered a
> dovecot or a roundcube issue?

There's an option in Password plugin:

// Enables forcing new users to change their password at their first login.
$config['password_force_new_user'] = false;

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] roundcube plugin differences, which is preferred?

2019-06-26 Thread A.L.E.C
On 6/26/19 3:49 AM, David Mehler wrote:
> Hello,
> 
> I'm running roundcube. I'm wondering about two plugins managesieve and
> sieverules? Which is preferred/the differences between the two? Do I
> need both of them?

>From sieverules git repository:

THIS PLUGIN IS NO LONGER MAINTAINED

Originally created to provide functionality not available in the Managesieve 
plugin
shipped with Roundcube, Managesieve now provides more and so this plugin is 
defunct.


-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Manage sieve

2019-06-15 Thread A.L.E.C
On 6/15/19 5:45 PM, @lbutlr wrote:
> I have installed zambodaniel/managesieve in Roundcube, but when I log in to 
> Roundcube, there is no “filter” option in the settings pane of Roundcube.
> 
> Am I missing something else?

Yes, this library has nothing to do with Roundcube. What you need is the 
managesieve
plugin that is part of Roundcube. You don't have to install anything, just 
enable and
configure the plugin.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Problems with Roundcube/Dovecot when log in with TLS: Empty startup greeting

2019-06-01 Thread A.L.E.C
On 6/1/19 2:37 PM, zahn wrote:
> $config['default_host'] = 'tls://chogolisa.akadia.com';
> $config['default_port'] = 993;

usually SSL = 993 and TLS = 143.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] TRYING AGAIN: Replying to previously sent mail

2019-04-13 Thread A.L.E.C
On 4/13/19 11:26 AM, Philip Rhoades wrote:
>   1.4-beta

You should update to 1.4-rc1

> but on previous versions, RCM was smart enough to know that when I would 
> reply to a
> previously sent email in my Sent folder, that it knew the new reply should go 
> to the
> original recipient and not back to myself - this behaviour has stopped in the 
> last version
> or so - is there any way I can turn it back on?  I am constantly sending out 
> an email with
> a promise to follow up when I have more information about something and it is 
> very
> convenient to just reply to the previous email . . and not get it sent to 
> myself . .

Works for me. Do you add Reply-To to your messages? In such case it will have a 
precedence
over the code detecting reply-to-self case.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Roundcube Webmail 1.3.9 released

2019-04-01 Thread A.L.E.C
On 31.03.2019 19:05, Ralph Seichter wrote:
> My thanks for your work. Just a small blemish: Tag 1.3.9 ist marked as
> "unverified" on GitHub, so I am guessing somebody forgot to sign the
> tag.

That was my first time doing a release. I signed the tag with the devs@
key instead my personal key. And now I can't make it verified, I don't
have access to the mailbox. I probably should not re-add the tag now, so
we'll have to leave with that.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


[RCU] Roundcube Webmail 1.3.9 released

2019-03-31 Thread A.L.E.C
Dear subscribers

We proudly announce the next service release to update the stable version 1.3.

It contains fixes to several bugs backported from the master branch.

See the full changelog in the release notes on the Github download page [1].

This release is considered stable and we recommend to update all productive 
installations
of Roundcube with this version.

Best,
Alec & Thomas

[1] https://github.com/roundcube/roundcubemail/releases/tag/1.3.9
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] LDAP AddressBook with pagedResults control (from ldapsearch)

2018-12-19 Thread A.L.E.C
On 12/19/18 1:02 PM, Evgeniy Korneechev wrote:
> Hi.
> I have a MS AD as Roundcube Address book.
> My MS AD have a LDAPAdminLimits:MaxPageSize = 2000 and number of users more 
> than 3000.
> Number of contacts in AddressBook = 2000...
>  
> How i can use 'pagedResults control' (e.g. ldapsearch: -E pr=1000/noprompt)? 
> Or not? Or
> are there other solutions?

We don't support paged results. There's some support for paging with use of vlv 
indexes,
but this requires patched php and is probably not supported by AD anyway.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Purging an sqlite database - RC 1.3.8

2018-11-07 Thread A.L.E.C
On 11/7/18 11:04 PM, Sophie Loewenthal wrote:
> Hi,
> 
> I noticed a roundcube sqlite dB slowly growing after each login.
> 
> What sort of information could be being added to the dB?  And how could I 
> purge this data, or otherwise reduce the sqlite dB? Perhaps though some 
> regular cleaning?

Maybe just session data. It should clean automatically, but depends on php 
configuration.
Try bin/gc.sh.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] update

2018-10-28 Thread A.L.E.C
On 10/28/18 6:02 AM, mick crane wrote:
> excuse ignorance.
> using 1.3.5 with managesieve and enigma plugins.
> Is there a script that will update to 1.3.8 if I tell it where 1.3.5 is 
> installed or do I
> need to go through everything from start ?

https://github.com/roundcube/roundcubemail/blob/release-1.3/UPGRADING

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Slow displaying INBOX with thousands emails

2018-10-27 Thread A.L.E.C
On 10/27/18 12:01 PM, Alexey wrote:
>> So, you're showing the imap server timings. Note the response need to
>> be sent and parsed by the client.
> Yes, and since my client is roundcube I wrote to this maillist, to solve this 
> performance
> issue.

I'm just pointing out that e.g. a slow connection can cause the issue, so this 
don't have
to be Roundcube's fault. Is the IMAP server on the same host? What PHP version? 
What
Roundcube version?

>> hint: you can set $config['performance_stats'] = true
> mail [1.2 МБ/1.5 МБ]: 0.1386 sec
> mail/getunread [929 КБ/997 КБ]: 0.0092 sec  (it's probably for showing 
> counters in folders
> tree)
> mail/list [1.3 МБ/52 МБ]: 1.0174 sec

Here I see that list request takes 1 second. So, where's your 5-7?

ps. If you provide full debug log with THREAD and SORT responses I might take a 
look at
the code and see how performant is the parsing code and if there's any culprit. 
Also,
please be consistent/precise, first you say 5-7 seconds, then 3.5s and now I 
see 1 second.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Slow displaying INBOX with thousands emails

2018-10-27 Thread A.L.E.C
On 10/26/18 6:03 PM, Alexey wrote:
>> Maybe it's parsing the THREAD response, but I don't know. It also is
>> FETCHing messages for a hundred threads, no?
> Fetching is extremely fast (0.004 + 0.000 + 0.003 secs).

So, you're showing the imap server timings. Note the response need to be sent 
and parsed
by the client.

hint: you can configure $config['log_date_format'] = 'd-M-Y H:i:s.u' to get 
microsecond
precision in the log. It might not work on old PHP versions.

hint: you can set $config['performance_stats'] = true to log real time of the 
PHP script
execution into logs/console.log.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Slow displaying INBOX with thousands emails

2018-10-26 Thread A.L.E.C
On 10/25/18 11:50 AM, Alexey wrote:
> First level of slowness was `thread` mode. [UID THREAD REFS US-ASCII ALL] 1s
> Second level of little slowness was `sort by date`. [UID SORT (ARRIVAL) 
> US-ASCII ALL] 0.7s
> Final query looks like this: [UID SEARCH ALL] 0.1s
> 
> But how 1 + 0.7 became 3.5s of `waiting` request time? (I get it from 
> profiler in browser)

Maybe it's parsing the THREAD response, but I don't know. It also is FETCHing 
messages for
a hundred threads, no?

> And is there in chance to increase performance without disabling threads?

Did you try setting sorting to None? You can consider enabling imap_cache.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Slow displaying INBOX with thousands emails

2018-10-25 Thread A.L.E.C
On 10/24/18 7:59 PM, Alexey wrote:
> I have user with approximately 50 emails in his INBOX folder and this is 
> not limit.
> And there is some inconvenience in viewing this folder. It takes about 5-7 
> seconds to
> display list of emails in folder.
> Pagination is set to 100 emails per page. I checked that IMAP server complete 
> request
> "FETCH 1:100 ENVELOPE" in 147ms, and "FETCH 1:* ENVELOPE" in 6 second. This 
> is why I begun
> to think that RoundCube may request for all emails instead of 100. Roundcube 
> is configured
> for default sort order: descending by receiving date.

Try with disabled or just different sorting (in messages list options menu). 
Enable
imap_debug to see in the log what imap commands are used and with what timing.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] can't login after upgrade

2018-10-08 Thread A.L.E.C
On 10/08/2018 06:36 PM, Vincent Van Houtte wrote:
> Although your assessment is correct, it misses the overall picture. The 
> question relates
> to an existing installation that was merely updated. There is no reason why 
> RC would need
> to create (INSERT INTO 'users') a new user upon login.

You know nothing, John Snow ;)

@Meaulnes, the upgrade script did not fix the database structure for some 
reason. You have
to do this manually. Visit
https://github.com/roundcube/roundcubemail/tree/master/SQL/mysql. The files 
there are
named by date. You have to check all files starting from 2012080700 in order 
from most
recent to the oldest, until you see that the changes in the file are already in 
place.
Another option is to compare result of `show columns from table` command on 
every table
with table definitions from SQL/mysql.initial.sql file.

Your issue is quite rare, don't expect automated solution. Minimal knowledge 
about
database administration is required in this case.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Debug xdebug

2018-09-26 Thread A.L.E.C
On 25.09.2018 22:38, Jorge Bastos wrote:
> Sep 25 21:09:13 fastweb roundcube:  PHP Error: Maximum nesting
> level exceeded (xdebug.max_nesting_level=256) in
> /home/hosting/.pt/webmail/program/lib/Roundcube/rcube_washtml.php on
> line 447 (GET
> /webmail/?_task=mail&_caps=pdf%3D0%2Cflasjjjh%3D0%2Ctiff%3D0%2Cwebp%3D1&_uid=59688144&_mbox=INBOX&_action=show)

That message informs you that Roundcube wasn't able to parse HTML
message (malformed or very big) with this PHP setting. Increase the
limit or live with that.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] can't login new user

2018-09-23 Thread A.L.E.C
On 09/22/2018 06:48 PM, WaveWeb - M. Legler wrote:
> DB Error: [1364] Field 'alias' doesn't have a default value (SQL Query: 
> INSERT INTO
> `users` (`created`, `last_login`, `username`, `mail_host`, `language`) VALUES 
> (now(),
> now(), 'leglerlugano', 'legler.org', 'it_IT')) in
> /home/.sites/xxx/xxx/web/roundcube/program/lib/Roundcube/rcube_db.php on line 
> 539 (POST
> /roundcube/?_task=login&_action=login)

Looks like your database structure is outdated. There's no 'alias' column since 
Roundcube
0.8. You can just drop the column, but would be better to verify the whole 
structure.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Info about RC/Links/HTTPS

2018-09-11 Thread A.L.E.C
On 11.09.2018 12:40, Jorge Bastos wrote:
> I have HTTPS in the vhost that the webmail is running, everything’s
> fine, but, if I click an email that has images that are loaded from an
> HTTP:// url (without HTTPS) the browser starts telling me that the HTTPS
> validation failed with the yellow sign in the padlock.

https://github.com/roundcube/roundcubemail/issues/5996

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] RC 1.4 and missing Elastic skin for some plugins

2018-09-11 Thread A.L.E.C
On 11.09.2018 11:02, Josef Karliak wrote:
>   Good morning,
>   we tried 1.4 RC, all works fine, great work, but some plugins are
> missing elastic skins, so it did not work (primitivenotes, calendar).
>   For example:

1. Kolab Calendar plugin has Elastic support in git-master version
(requires libcalendaring and libkolab plugins). Note that Classic skin
support has been removed from Kolab plugins.

2. From primitivenotes see
https://github.com/Offerel/roundcube_primitivenotes/issues/10

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Elastic skin and user avatar in the message display

2018-08-31 Thread A.L.E.C
On 08/29/2018 03:48 PM, Thomas Pircher wrote:
> Hi,
> 
> I have installed v1.4-beta with elastic skin and I really like it. It looks 
> great, but
> more importantly for me, it really works well on desktop and mobile. Well 
> done guys.
> 
> I have one question about the sender avatar in the message view. I think it 
> is one static
> picture, sourced from the mail server, and not, say a dynamic picture loaded 
> form an
> external source such as gravatar. Is this correct?

Yes, it's taken from addressbook. There are plugins that add gravatar support. 
There's
also identicon plugin.

> In either cases, I would like to disable this avatar in the mail view, 
> side-wide, if
> possible. But I could not find a setting in this respect. Is there perhaps a 
> config file I
> could tweak to suppress the image from the message view?

There's no such option. It has already been requested (ticket exist).

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Elastic skin

2018-07-31 Thread A.L.E.C
On 07/31/2018 05:03 PM, Davide Perini wrote:
> is it possible to use Elastic theme on the current roundcube 1.3.7?

No.

> Why elastic is not the default theme on 1.3.7?

Because while developing the theme I did a massive amount of changes to the 
Roundcube core
and because stable branches receive only bugfixes. You have to wait for 1.4.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] PHP patch update, Roundcube crashes

2018-07-01 Thread A.L.E.C
On 07/01/2018 02:48 AM, Rouncube Lbutlr wrote:
> One other thing, php does work, this is a roundcube specific error.
> here is the relevant part of my info.php file:
> 
> Jun 30 2018 16:37:36
> 
> Configure Command './configure' '--with-layout=GNU'
> '--with-config-file-scan-dir=/usr/local/etc/php' '--disable-all'
> '--enable-libxml' '--enable-mysqlnd' '--with-libxml-dir=/usr/local'
> '--with-pcre-regex=/usr/local' '--with-zlib-dir=/usr'
> '--program-prefix=' '--enable-fpm' '--with-fpm-user=www'
> '--with-fpm-group=www' '--enable-embed' '--with-regex=php'
> '--with-zend-vm=CALL' '--prefix=/usr/local' '--localstatedir=/var'
> '--mandir=/usr/local/man' '--infodir=/usr/local/info/'
> '--build=i386-portbld-freebsd11.1'
> 'build_alias=i386-portbld-freebsd11.1' 'CC=cc' 'CFLAGS=-O2 '-pipe'
> '-fstack-protector' '-fno-strict-aliasing'' 'LDFLAGS=
> '-fstack-protector'' 'LIBS=-lpthread' 'CPPFLAGS=' 'CPP=cpp' 'CXX=c++'
> 'CXXFLAGS=-O2 '-pipe' '-fstack-protector' '-fno-strict-aliasing'

`php -m` would be more helpful. I think you just need pdo-mysql extension.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] How to install elastic skin

2018-06-20 Thread A.L.E.C
On 06/20/2018 11:14 AM, bertrand.cap...@chunkz.net wrote:
> Alright, thanks for quick answer ALEC.
> 
> Do you in what release it will be available ?

1.4

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] How to install elastic skin

2018-06-20 Thread A.L.E.C
On 06/20/2018 10:43 AM, bertrand.cap...@chunkz.net wrote:
> Hey there,
> 
> I'm trying to install elastic skin on my 1.3.6 roundcube.

This will just not work, don't bother. The skin works only with git-master.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] roundcube recipient_to_contact plugin php error

2018-04-14 Thread A.L.E.C
On 04/13/2018 04:07 PM, David Mehler wrote:
> Hello,
> 
> I've enabled the recipient_to_contact plugin in Roundcube. I can log
> in, but whenever I go to the settings tab I get a blank screen and see
> this in my logs/ssl-errors file:
> 
> [Fri Apr 13 10:01:46.359205 2018] [proxy_fcgi:error] [pid 81781:tid
> 34389192448] [client xxx.xxx.xxx.xxx:52490] AH01071: Got error 'PHP
> message: PHP Fatal error:  Call to undefined function Q() in
> /usr/local/www/roundcube/plugins/recipient_to_contact/recipient_to_contact.php
> on line 323\n', referer:
> https://webmail2.domain.com/?_task=mail&_mbox=INBOX

Looks like the code is not compatible with recent Roundcube versions. For Q() 
you can just
replace it with rcube::Q(), but there may be other issues. Here are some hints
https://github.com/roundcube/roundcubemail/blob/release-1.2/program/include/bc.php

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Roundcube Carddav and Enigma plugins

2018-04-10 Thread A.L.E.C
On 04/10/2018 10:31 AM, David Mehler wrote:
> Hi,
> 
> Thanks. Can this change be conditional only coming in to play with IE
> browsers? If so, can I assist with this?

Fixed and tested. Will be part of 1.3.6 release.

https://github.com/roundcube/roundcubemail/commit/8373b3b3f0b

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Roundcube Carddav and Enigma plugins

2018-04-10 Thread A.L.E.C
On 10.04.2018 00:10, David Mehler wrote:
> Hello,
> 
> Whenever I go to settings then pgp keys and try to create a keypair
> (using IE11) I get the message can not create keypair browser does not
> support cryptography. Serverside I'm using gnupg 2.25.
> 
> Using firefox keypair generated and was imported successfully.
> 
> I'm wondering if there's an ie11 fix as some of my clients will
> undoubtedly use it.

We check for window.crypto support here
https://github.com/roundcube/roundcubemail/blob/master/plugins/enigma/enigma.js#L154

IE11 supports this functionality via window.msCrypto. So, maybe the
solution would be to just change the check. I'm not sure if there's
anything more to do to make openpgpjs library we use working in IE11.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Roundcube Carddav and Enigma plugins

2018-04-09 Thread A.L.E.C
On 09.04.2018 02:40, David Mehler wrote:
> Hello,
> 
> I'm wanting to get the carddav and enigma plugins going.
> 
> When I turn on carddav then attempt a log in I get a blank screen.

There's usually an error in some log in such cases.

> Whenever I turn on enigma I am wanting to make keys, this does not
> appear possible.

What do you mean? Do you get some error message? What's in log? Or
controls are disabled? Or what?

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] roundcube custom tls verification options

2018-04-09 Thread A.L.E.C
On 09.04.2018 02:37, David Mehler wrote:

> Can I put a config in each of the domain specific files?

Yes. You can also do:

$config['imap_conn_options'] = array(
'hostname' => array(
 'ssl' => array(

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] feature request

2018-04-02 Thread A.L.E.C
On 02.04.2018 20:48, Webert de Souza Lima wrote:
> Because of the problem I have described recently in the email entitled:
> 
> "Unable to send command: A0007 FETCH 1:* (UID BODY.PEEK[HEADER.FIELDS
> (FROM)])"
> 
> I would like to request a feature: clear ordering preference.
> That would make the sort as the default again.
> 
> How is that likely to be done? I'm not sure I can request any features.

bin/moduserprefs.sh --delete message_sort_col

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] roundcube quota

2018-04-02 Thread A.L.E.C
On 04/02/2018 05:25 AM, David Mehler wrote:
> I've got a postfix virtual mail server setup going and using Roundcube
> as webmail. I've got MySQL database serving quota and both Dovecot and
> Postfix are configured to utilize it. I'd like to get roundcube
> working with quota.

So, it does not display quota information? Then you have to configure dovecot 
to provide
quota in imap service. There's a dovecot plugin to enable. Or it might be some 
other
problem in dovecot, but most likely not in Roundcube.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Fwd: Unable to send command: A0007 FETCH 1:* (UID BODY.PEEK[HEADER.FIELDS (FROM)])"

2018-03-27 Thread A.L.E.C
On 03/27/2018 06:52 PM, Webert de Souza Lima wrote:
> Hey A.L.E.C., thanks for hitting back.
> You mean the filed *message_sort_col* in roundcube's settings file?
> 
> In the config/defaults.inc.php file it says:
> 
> // default messages sort column. Use empty value for default server's sorting,
> // or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'
> $config['message_sort_col'] = '';                                          
> 
> I've checked and in all my servers it is set to empty:
> 
>  /var/www/config # grep -r message_sort_col .
> ./defaults.inc.php:$config['message_sort_col'] = '';
> 
> I tried changing it to 'None' as you suggested but it didn't take any effect. 
> Roundcube is
> still issuing the SORT command before FETCH.

Every user has this option already set in his preferences. So, either they go 
to messages
list options menu and change that "manually". Or you force that for all users 
using
dont_override setting.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Fwd: Unable to send command: A0007 FETCH 1:* (UID BODY.PEEK[HEADER.FIELDS (FROM)])"

2018-03-27 Thread A.L.E.C
On 03/27/2018 04:30 PM, Webert de Souza Lima wrote:
> A0006 UID SORT (DATE) US-ASCII ALL
> 
> Is there something I can do in Roundcube to minimize this issue?

Set messages list sorting to "None" or "Arrival date".

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Roundcube Webmail 1.3.5 released

2018-03-16 Thread A.L.E.C
On 15.03.2018 23:18, Jorge Bastos wrote:
> Hi Thomas,
> 
> Thank you and Alec for new relase!
> 
> Just curious, 1.4 has any date already?

April or May for the beta release and around 3 months more for stable.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Design larry

2018-03-01 Thread A.L.E.C
On 03/01/2018 06:08 PM, Andreas Meyer wrote:
> I have $config['skin'] = 'larry' already set. Nevertheless in the settings
> one can choose between classic and larry style.

Use $config['dont_override'] = array('skin');

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Question regarding PGP

2018-03-01 Thread A.L.E.C
On 03/01/2018 08:20 PM, A.L.E.C wrote:
>> [01-Mar-2018 18:12:15 Europe/Berlin] PHP Warning:  exec() has been disabled 
>> for security
>> reasons in 
>> /vwww/HIDDEN/root/mailsystem/vendor/pear/crypt_gpg/Crypt/GPG/ProcessControl.php
>> on line 143
>>
>> Do I have to enable exec() in the php.ini?
> 
> Yes. The enigma plugin uses gpg binary.

Correction. exec() is used for ps and kill, if you don't have php-posix 
extension installed.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Question regarding PGP

2018-03-01 Thread A.L.E.C
On 03/01/2018 06:17 PM, Andreas Meyer wrote:
> Hello!
> 
> Is see this in the log:
> 
> [01-Mar-2018 18:12:15 Europe/Berlin] PHP Warning:  exec() has been disabled 
> for security
> reasons in 
> /vwww/HIDDEN/root/mailsystem/vendor/pear/crypt_gpg/Crypt/GPG/ProcessControl.php
> on line 143
> 
> Do I have to enable exec() in the php.ini?

Yes. The enigma plugin uses gpg binary.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] How to avoid accessing mailboxes elsewhere

2018-02-27 Thread A.L.E.C
On 02/27/2018 12:23 PM, Mario Jorge Lima wrote:
> If someone who accesses my Roundcube, fill the Server field with any other 
> POP Server name
> elsewhere, he will read those emails. How to avoid it, so that only mailboxes 
> in one of my
> two Mailboxes mentioned above can be accessed?
I think I responded to similar question recently with:

You have a few options to deal with this

default_host
username_domain
username_domain_forced
login_username_filter
trusted_host_patterns (git-master only)

How to use them will depend on what you want to achieve and your environment. 
You can
always create a plugin that checks the host before connecting to it.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Does RCM support MIME Digests? ie so replying to an item in a digest doesn't break the thread . .

2018-02-27 Thread A.L.E.C
On 02/11/2018 11:41 PM, Philip Rhoades wrote:
> I am supposed to be getting MIME digests but there are no "attached" emails 
> eg here is the
> top of the most recent one I have received - the only difference between this 
> and what I
> get with "Plain Text" digests is that the four header lines have a grey 
> background but
> there is nothing to click on to reply to an individual message.  What is 
> suspicious though
> is the line "(InvalidPath)" - it looks like (a) link(s) might be missing?:

Sorry for late response. If you're talking about multipart/digest format, then 
I think we
don't fully support it. Messages inside of a multipart/digest message will not 
appear as
attachments, as they don't have message/rfc822 type, I guess.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Security issue (possible?) (was: RE: Unknown user in users table, very odd, possible security hole)

2018-02-11 Thread A.L.E.C
On 02/09/2018 09:28 PM, Jorge Bastos wrote:
> Well yes, but now i'm thinking, i have the imap server set to be dynamic
> it's filled with:
> 
> mail. + domain.tld
> 
> ok this option in Roundcube is grrreeeaaattt, but I think it makes people
> use my server for webmail! Damn!
> 
> How would I tell Roundcube, to connect just to my ip's?
> I could do this via iptables but is some shared hosting user wants to
> connect to any imap server he would be blocked

You have a few options to deal with this

default_host
username_domain
username_domain_forced
login_username_filter
trusted_host_patterns

How to use them will depend on what you want to achieve and your environment. 
You can
always create a plugin that checks the host before connecting to it.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] LDAP address book - problem with groups

2018-02-11 Thread A.L.E.C
On 02/10/2018 12:03 AM, Franta Hanzlík wrote:
> 'groups'=> array(
> 'base_dn' => '',
> 'mail'=> '{Mail-Address}@mydomain.com',
> 'filter'  => '(&(objectClass=groupOfNames)(Mail-Address=*))',
> 'object_classes'  => array("top", "groupOfNames"),
> 'class_member_attr' => array(
>   'groupofnames'   => 'member',
>   'groupofuniquenames' => 'uniquemember'
> ),
> ),

Here's an example from defaults.inc.php file:

// definition for contact groups (uncomment if no groups are supported)
// for the groups base_dn, the user replacements %fu, %u, %d and %dc
work as for base_dn (see above)
// if the groups base_dn is empty, the contact base_dn is used for the
groups as well
// -> in this case, assure that groups and contacts are separated due to
the concernig filters!
  'groups'  => array(
'base_dn'   => '',
'scope' => 'sub',   // Search mode: sub|base|list
'filter'=> '(objectClass=groupOfNames)',
'object_classes'=> array('top', 'groupOfNames'),   // Object
classes to be assigned to new groups
'member_attr'   => 'member',   // Name of the default member
attribute, e.g. uniqueMember
'name_attr' => 'cn',   // Attribute to be used as group name
'email_attr'=> 'mail', // Group email address attribute
(e.g. for mailing lists)
'member_filter' => '(objectclass=*)',  // Optional filter to use
when querying for group members
'vlv'   => false,  // Use VLV controls to list groups
'class_member_attr' => array(  // Mapping of group object class
to member attribute used in these objects
  'groupofnames'   => 'member',
  'groupofuniquenames' => 'uniquemember'
),
  ),


So, there's no such thing as your "composite" 'mail' attribute
specification. A group with an email_attr that contains an email address
will not resolve to members' addresses.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Does RCM support MIME Digests? ie so replying to an item in a digest doesn't break the thread . .

2018-02-11 Thread A.L.E.C
On 02/10/2018 09:19 AM, Philip Rhoades wrote:
> People,
> 
> IT looks like RCM can't do this?

Since Roundcube 1.3 it is possible to open attached messages. There you
have a Reply button. I just tested it now using git-master version and
such a reply has proper References header set.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] "Must issue a STARTTLS command first"

2018-01-01 Thread A.L.E.C
On 12/31/2017 09:19 PM, Jonathan Nichols wrote:

> 
> $config['default_host'] = 'tls://%n’; #I’ve tried ‘tls://pile.pbp.net' as well

default_host is for IMAP, you have to set smtp_server.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Roundcube 1.3 and _SERVER['HTTPS']

2017-12-18 Thread A.L.E.C
On 12/18/2017 04:59 PM, Webert de Souza Lima wrote:
> the port 443 here is just a different port but traffic is not encrypted
> because the HA-Proxy does the encryption with the client.
> 
> Any suggestions to fix this? Thanks!

$config['use_https'] = true;

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] adaptive design

2017-12-07 Thread A.L.E.C
On 12/07/2017 03:08 PM, Meaulnes Legler @ roundcube wrote:
> I have users that complain that the webmailer doesn't display correctly
> on their smartphones when using FLINT's Larry skin interface. They
> cannot reduce the display size nor change the width of the left folders
> column.
> 
> Is there a skin interface that uses adaptive design? How can one install it?

Not yet, but I'm working on it. You can find some info on my blog. It's
planned for Roundcube 1.4.

There are some non-official commercial skins, but I've never tried them.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] mailsploit

2017-12-07 Thread A.L.E.C
On 12/07/2017 09:45 AM, Maarten wrote:
> Hello,
> 
> Is roundcube going to get a patch for mailsploit?
> 
> https://www.mailsploit.com/
> 
> I tried the demo and it seems that roundcube is vulnurable for this:
> 
> https://www.mailsploit.com/index#demo

I tried that two days ago and see no issue. Could you be more specific?

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] PHP 7.2 support

2017-12-07 Thread A.L.E.C
On 12/07/2017 12:07 AM, Philip Iezzi wrote:
> Hi there,
> 
> How does PHP 7.2 support come along? Can Roundcube 1.3.3 already be used in 
> production on PHP 7.2.
> So far, on my PHP 7.2.0 test instances, I didn't find a single glitch.

There were some more fixes for php warnings, waiting now for 1.3.4 and I
expect some more fixes needed, but there are no known critical issues.

I'm developing Roundcube using 7.2 since first release candidate, but
have no experience from production installations yet.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Addressbook and QRCode issue in Roundcube ver 1.3.1

2017-10-18 Thread A.L.E.C
On 18.10.2017 01:01, Jorge wrote:
> I have installed Roundcube version 1.3.1 and I have a problem when in 
> addressbook I clicks on QR Code button.
> 
> When I clicks on QR Code button, the QR Code image is not shown and in log 
> file I have a lot of lines saying:
> 
> PHP Warning:  str_repeat(): Second argument has to be greater than or equal 
> to 0 in  (RC dir)\vendor\endroid\qrcode\src\QrCode.php on line 1230

Are there any errors before these?

I see a complete refactoring in newer versions of the library, but they
also changed the API and requirements, so we can't just upgrade.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Issue with filters plugin

2017-10-17 Thread A.L.E.C
On 17.10.2017 09:56, absolutely_f...@libero.it wrote:
> I am using RC 1.3.1 (I just upgraded from 1.1.9).
> 
> After upgrade it seems plugin "filters" (2.1.6) is not working anymore.
> 
> Every time I get error "field contains cannot be empty", even with a
> non-empty value, of course.
> 
> Any suggestion?

Maybe https://github.com/6ec123321/filters/issues/30

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Upgrade from 1.1.9 to 1.3.1

2017-10-11 Thread A.L.E.C
On 10/11/2017 10:56 AM, absolutely_f...@libero.it wrote:
> Hi,
> 
> is it possible to upgrade RC from 1.1.9 to 1.3.1 without intermediate
> version?

Yes, it is possible.


-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Reset RC settings to default

2017-10-11 Thread A.L.E.C
On 10/11/2017 10:50 AM, absolutely_f...@libero.it wrote:
> is there a way to reset RC settings for some user?

UPDATE users SET preferences = NULL WHERE 

above will reset all settings, but if you want to reset some specific
option you can use bin/moduserprefs.sh script.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] SMTP and IMAP/STARTTLS

2017-10-11 Thread A.L.E.C
On 10/11/2017 04:37 PM, Rich Lott wrote:

> 1. When roundcube accesses a remote IMAP server to fetch mail.
> 
> 2. When roundcube accesses a remote SMTP server to send mail.

Use tls:// prefix.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Issue with address book after migration

2017-10-03 Thread A.L.E.C
On 10/03/2017 09:47 AM, absolutely_f...@libero.it wrote:
> Hi,
> 
> I migrated my mail spool to a different server; in file config.inc.php I
> just changed accordingly 
> 
> $config['default_host']
> 
> to new hostname.
> 
> nothing else.

>From defaults.inc.php where all configuration options are described:

WARNING: After hostname change update of mail_host column in users table
is required to match old user data records with the new host.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Plugin for "cloud storage"

2017-09-25 Thread A.L.E.C
On 25.09.2017 11:04, Jorge Bastos wrote:
> I may miss speled what i want.
> The ideia is to have some storage withing the webmail, and not connect to
> external storage services (called cloud, like gdrive/onedrive/etc)

There's Dropbox integration plugin, but it looks not updated since the
initial commit more than 2 years ago.
https://github.com/hassansin/dropbox_attachments

Another plugin is kolab_files, but it uses a separate service and
generally requires Kolab. Though a programmer could make some use of its
code as a starting point if he don't want to install Kolab. It also
allows "mounting" an external CalDAV/Seafile storage.
https://git.kolab.org/diffusion/RPK/browse/master/plugins/kolab_files/
You can test how it works on KolabNow.com.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Get Username without domain.

2017-06-01 Thread A.L.E.C
On 01.06.2017 11:16, Mathew Shires wrote:
> setting mail_domain has done nothing, the email addresses are still
> usern...@mail.example.com.

This works when the user record is being created, so drop the user
record from users table and log in again.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Get Username without domain.

2017-06-01 Thread A.L.E.C
On 01.06.2017 11:11, Mathew Shires wrote:
> Is there anywhere I can find a list of ALL options?

config/defaults.inc.php.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Get Username without domain.

2017-06-01 Thread A.L.E.C
On 01.06.2017 10:46, Mathew Shires wrote:
> Is there any way I can have the "usern...@example.com" email address
> *AND* have the caldav URL be correct (i.e. for %u to equal "username"
> instead of "usern...@example.com")?

Set mail_domain instead of username_domain.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Autocomplete from LDAP address book

2017-05-27 Thread A.L.E.C
On 05/25/2017 08:15 PM, Mathew Shires wrote:
> How do I autocomplete email address from the LDAP address book?
> 
> It's named "NQC" but if I add the following line to config.inc.php:
> 
>> $config['autocomplete_addressbooks'] = 'NQC';
> I get this error:
> 
>> Application Error (700): Addressbook source (NQC) not found!

The (ldap) addressbooks here must be the same as the keys of
$config['ldap_public'] array not names specified in that array.

There's a sample in defaults.inc.php.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] How to export all contacts to a cvs file

2017-05-16 Thread A.L.E.C
On 15.05.2017 22:01, Jo Roseborough wrote:
> I need to export my address book as a cvs file for importing into a
> different email program (not Outlook). I am not finding any information
> in the forum or on your website about how to do that. Can you assist me?

You may try this plugin
https://git.kolab.org/diffusion/RPK/browse/roundcubemail-plugins-kolab-3.2/plugins/csv_export/
but it's not really supported.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Folder names

2017-04-07 Thread A.L.E.C
On 04/07/2017 05:55 PM, Robert Moskowitz wrote:
> But my question is still open, as all my (current) users default to US
> english.

The option name is show_real_foldernames.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Folder names

2017-04-07 Thread A.L.E.C
On 07.04.2017 02:02, Robert Moskowitz wrote:
> Yet, Roundcubemail client labels the folder 'Junk'.
> 
> I can see the email in it via 'fetch' in dovecot, or opening the 'Junk'
> folder in Roundcubemail.
> 
> What have I missed in my setup?

Special folders names are localized. You can disable that in Preferences
> Special folders.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Installer reports Mcrypt: NOT AVAILABLE

2017-04-04 Thread A.L.E.C
On 04/05/2017 05:32 AM, Robert Moskowitz wrote:
> Yet, it is installed:
> 
> grep mcrypt /var/log/yum.log
> Mar 03 11:42:17 Installed: libmcrypt-2.5.8-13.el7.armv7hl
> Mar 03 11:42:19 Installed: mcrypt-2.6.8-11.el7.armv7hl
> 
> How do I figure out why the installer reports it is not available?


Because it requires php extension of that name. Why are you installing
old version of Roundcube? Since 1.2 we do not use mcrypt.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] drag & drop not working as expected

2017-03-28 Thread A.L.E.C
On 28.03.2017 10:56, lutz.niede...@gmx.net wrote:
> Version 0.9 worked like a charm.  It does these strange things since I
> updated to 1.2.3.
>  
> Any ideas?

Disable all plugins and try again.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] [SMTP, SSL] Roundcube 1.2.2 - never use TLSv1.2 and always fallback to TLSv1 when sends mail

2016-11-10 Thread A.L.E.C
On 10.11.2016 11:55, Paweł Łukasik wrote:
> Yes, I'm pretty sure it's problem with RC - it uses TLSv1.2 for IMAP
> connections but not for SMTP.
> PHP is rather new (Debian 7):
> 
> php --version
> PHP 5.4.45-1~dotdeb+7.1 (cli) (built: Sep  5 2015 00:21:03)
> Copyright (c) 1997-2014 The PHP Group
> Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies

I'm afraid you need PHP 5.6 according to this
http://php.net/manual/en/function.stream-socket-enable-crypto.php

I have no idea how did you get IMAP connection to use TLS 1.2.
As I've said both SMTP and IMAP code use the same way of setting TLS.

ps. PHP 5.4 is no longer supported by PHP.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] [SMTP, SSL] Roundcube 1.2.2 - never use TLSv1.2 and always fallback to TLSv1 when sends mail

2016-11-10 Thread A.L.E.C
On 10.11.2016 11:02, Paweł Łukasik wrote:
> What could cause this behaviour? Is it possible to force TLSv1.2 for SMTP?

You need Net_SMTP package in version >= 1.7.1.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Permissions in config.inc.php not ok

2016-10-12 Thread A.L.E.C
On 12.10.2016 13:33, Fábio Cabrita wrote:
> config.inc.php:  NOT OK(Unable to read file. Did you create the config
> file?)

>> -rw-r--r--@ 1 root  admin164 28 Sep 20:30 .htaccess
>> -rw-r--r--@ 1 root  admin   3983 28 Sep 20:30 config.inc.php.sample
>> -rw-r--r--@ 1 root  admin  51625 28 Sep 20:30 defaults.inc.php

I don't see config.inc.php file here.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Problem with empty HMTL e-mails

2016-09-30 Thread A.L.E.C
On 09/30/2016 04:05 PM, Webert de Souza Lima wrote:
> Hey Alec,
> 
> I'm always testing with new messages, following the steps I first described:
> 1. Click Create e-mail
> 2. Add receipt
> 3. Add subject
> 4. Click Send
> 
> The message received is this: http://pastebin.com/raw/mTaUiH75
> missing boundary definition line maybe?

I'm unable to reproduce. Such empty messages are never sent in multipart
format for me (so, no problem with boundary at all).

Disable all plugins. Make sure you don't use some ancient Mail_mime
package. Enable smtp_debug to see what exactly is sent to the server.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Problem with empty HMTL e-mails

2016-09-30 Thread A.L.E.C
On 09/30/2016 03:20 PM, Webert de Souza Lima wrote:
> Still happens with latest release-1.2 pulled today.

The fix was for sending messages. So, if you have old messages they will
still be broken.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


[RCU] Update 1.2.2 and 1.1.6 released

2016-09-30 Thread A.L.E.C
Dear subscribers

We just published updates to both stable versions 1.2 and 1.1 delivering
important bug fixes and again more improvements of the Enigma plugin
introduced in version 1.2. Version 1.1.6 comes with cherry-picked fixes
from the more recent version and improvements in contacts searching as
well as a few localization fixes.

See the full changelog in the wiki [1] and the selection for 1.1.6 on
the release page [2].

Both versions are considered stable and we recommend to update all
productive installations of Roundcube with either of these versions.
Download them from GitHub via https://roundcube.net/download.

As usual, don’t forget to backup your data before updating!

Best,
Alec

[1] https://github.com/roundcube/roundcubemail/wiki/Changelog#release-122
[2] https://github.com/roundcube/roundcubemail/releases/tag/1.1.6
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Problem with empty HMTL e-mails

2016-09-27 Thread A.L.E.C
On 09/27/2016 02:50 PM, Webert de Souza Lima wrote:
> Hi,
> 
> I'm using roundcube version 1.2-rc and some e-mails are showing
> incorrectly, as shown here:


It have been fixed, why you're using rc? Update.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Malicious header causing RoundCube to hang (load forever)

2016-09-07 Thread A.L.E.C
On 09/07/2016 05:07 PM, Luescher Claude wrote:
> [07-Sep-2016 16:58:48 +0200]: <06631i17> [0B8F] C: A0009 UID MOVE 5 Spam
> [07-Sep-2016 16:58:48 +0200]: <06631i17> [0B8F] S: A0009 NO [CANNOT] Failed 
> to create spool file

Something's trying to move the message to spam and it fails. So, the bug
is in imap as you see above, but I think you're using some plugin,
because Roundcube does not move messages to to Spam when accessing them.
So, this might be caused by some plugin.

I also think that maybe you hit another issue. Is your session_lifetime
setting a very big value? Set it to something sensible, like 60.

Use debug_level=1.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Malicious header causing RoundCube to hang (load forever)

2016-09-07 Thread A.L.E.C
On 07.09.2016 10:38, Luescher Claude wrote:
> I have a strange header which causes Roundcube Webmail 1.2.0 to hang.
> Could you please investigate why and fix this in the next version?
> I have removed the ips and the domains from the message but it should
> produce the same results and I can confirm it was not the body but the
> header which caused the issue. I had to do bunch of traffic sniffing
> between the rc<>dovecot until I figured out that this is the root cause.

I'm unable to reproduce.

Disable all plugins, enable imap_debug in Roundcube. Maybe this will
give you some hints. What exactly "it hangs" means? Maybe dovecot hangs,
not Roundcube? Any errors in log?

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer [http://kolab.org]
Roundcube Webmail Developer   [http://roundcube.net]

PGP: 19359DC1 # Blog: https://kolabian.wordpress.com
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] 1.3-git [GIT 20160820.1942] broken (can't send mail anymore)

2016-08-22 Thread A.L.E.C
On 08/22/2016 12:57 AM, Michael Heydekamp wrote:
> I believe I did ask that before: Is there no way to make sure that all
> plugins will be compatible with a new commit? Are the plugin developers made
> aware at all of such significant changes?

Plugin authors have beta releases, changelog and time to update their
plugins. Sometimes we keep backward compatibility for some time, but it
would be hard for changes like this one.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] 1.3-git [GIT 20160820.1942] broken (can't send mail anymore)

2016-08-21 Thread A.L.E.C
On 08/21/2016 04:05 PM, Michael Heydekamp wrote:
> But I'm using it as my production branch for a long while already, because I 
> have to: Some things do not work (or work different) in the stable version - 
> e.g. the identity selection when I reply to this or any other Roundcube list. 
> The default identity is chosen in the stable version rather than the list 
> identity. Probably because the stable version doesn't support the 
> X-Envelope-To and/or the additional Delivered-To header which we add as the 
> very last header upon arrival, I assume...

I don't see a change in master that would be related to this and not in
release-1.2 branch.

>> Works for me in Firefox and Chrome. What browser (and version), what
>> skin, what plugins?
> 
> Win10/64 Pro, FF 42.0, Classic Skin, Plugins see below:

Did you check browser error console? Maybe some external plugin is not
compatible with new version of jQuery/jQuery-UI.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] 1.3-git [GIT 20160820.1942] broken (can't send mail anymore)

2016-08-21 Thread A.L.E.C
On 08/20/2016 11:08 PM, Michael Heydekamp wrote:
> Apparently due to the commit quoted below, I (and not only me) can't send
> mail with 1.3-git anymore. I'm seeing a huge attachment window area, but no
> editor window area where I could enter any text.

> Would it be possible to test at least this particular function before
> committing? Composing and sending a message is quite an essential feature of
> a webmail client. ;)

Well, that's not a production branch.

Works for me in Firefox and Chrome. What browser (and version), what
skin, what plugins?

Please, note that we dropped support for IE<10.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Update 1.2.1 published

2016-08-17 Thread A.L.E.C
On 08/17/2016 09:56 AM, Noel Butler wrote:
> Are you working on being able to import a key, by key-id - whereas it
> gets the key directly from keyserver if we enter it, or, click on key-id
> in a message even?

Implemented in git-master and I don't plan to backport this to 1.2.
>From Changelog:
- Enigma: Import keys from key-server(s) (#5286)
- Enigma: Search missing public keys on a key-server in mail compose (#5286)

Import in mail preview still on the todo list.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] forward as html with attachment: "failed to send message"

2016-08-12 Thread A.L.E.C
On 08/12/2016 01:08 AM, Bob Miller wrote:
> Also, I was looking through the changelog up to release 1.2.1 and I
> don't see anything that mentions this type of problem being fixed, and
> because this install still has some of the old MyRoundcube plugins I
> would avoid upgrading in case that breaks more than it fixes.

I can't reproduce with 1.2.1, so I propose to test with disabled all
plugins.

ps. no matter what changelog says, always use most recent version in
your branch. If you don't want 1.2, use 1.1.5.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Update 1.2.1 published

2016-07-27 Thread A.L.E.C
On 07/27/2016 07:21 AM, Noel Butler wrote:
> The enigma binary option is great (thanks!) but thats only half the
> problem...
> where's  $config['enigma_pgp-agent_binary'] = '/path/gpg-agent';   option ?

Implemented now in git, will be part of 1.2.2.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] pop3fetcher no longer works 1.2.1

2016-07-27 Thread A.L.E.C
On 07/27/2016 01:38 PM, Nick Edwards wrote:
> Eventually logs this
> 
> PHP Fatal error:  Call to undefined method rcmail::imap_connect()

Some methods were removed in 1.2.

https://github.com/roundcube/roundcubemail/commit/454b0b1ca983adfa2e40e47ccbd0dc384c141d9a

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] enigma binary

2016-07-22 Thread A.L.E.C
On 07/22/2016 08:32 AM, soumi...@iitk.ac.in wrote:

> ReferenceError: PublicKey is not defined

PublicKey is defined in publickey.js

> OS: centos7.2, RC version: 1.2.0

No, you don't. Key server support was added in master only. I assume you
applied some commits from master to 1.2.0, which require some other
changes you missed.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] enigma binary

2016-07-20 Thread A.L.E.C
On 07/21/2016 07:02 AM, Nick Edwards wrote:
> After sorting out proc_open but changing to suhosin blacklist instead
> native php disable, things progressed, however
> just wiped out the config and used fresh, with and without
> $rcmail_config or $config...  I clearly have wrong option idea for the
> path to it as roundcube error now says binary not found, is
> $config['enigma_pgp_binary'] = 'path/file'; actually the right entry to use?

Yes, are you using git-master version? The option does not exist in 1.2.0.

> [Thu Jul 21 13:44:54.093373 2016] [:error] [pid 6431:tid 2843577200]
> [client ] PHP Fatal error:  Call to undefined method
> Crypt_GPG_SubKey::usage() in

You need more recent Crypt_GPG package.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] possible bug

2016-07-20 Thread A.L.E.C
On 07/20/2016 03:16 PM, soumi...@iitk.ac.in wrote:
> $config['plugins'] = array('additional_message_headers', 'archive',
> 'attachment_reminder', 'emoticons', 'hide_blockquote',
> 'identity_select', 'jqueryui', 'legacy_browser',  'newmail_notifier',
> 'show_additional_headers', 'subscriptions_option', 'userinfo',
> 'vcard_attachments', 'zipdownload', 'google_addressbook',
> 'html5_notifier', 'contextmenu', 'mobile', 'calendar', 'threecol',
> 'lastlogin', 'geolocation', 'rcguard',
> 'filters','automatic_addressbook', 'rc_foldersort', 'blacklist',
> 'markasjunk2', 'keyboard_shortcuts', 'background_changer',
> 'attachment_position', 'tasklist', 'gravatar');
> 
> I tested with disabling threecol plugin, but no avail.

The error is in rc_foldersort.js and you disabled threecol, interesting ;)

I'm pretty sure there are other plugins not yet compatible with 1.2 on
your list.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] possible bug

2016-07-20 Thread A.L.E.C
On 07/20/2016 02:33 PM, soumi...@iitk.ac.in wrote:

> --$config['display_next'] = false;
> 
> -- The user use double click to read messages without preview pane.
> 
> Now when he deletes a message, the message is moved to Trash , but the
> screen does not goes back to list of message, it is stuck at showing the
> deleted message along with status "Moving message" in grey. The user has
> to click on folder name to get the list of message.

Works for me. What version? What plugins? What browser? See browser
console for errors.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] enigma binary

2016-07-20 Thread A.L.E.C
On 07/20/2016 09:40 AM, Nick Edwards wrote:
> For security purposes we disable paths and functions, is there a way we
> can enable the pgp binary if we move it to the enigma home directory?

You can already set path to gpg binary via enigma_pgp_binary option.
However, for GnuPG 2.x you'll need to set also gpg-agent path which is
not yet supported by config option. You'd need to set $options['agent']
around
https://github.com/roundcube/roundcubemail/blob/master/plugins/enigma/lib/enigma_driver_gnupg.php#L87

> We have also
> disable_functions = exec, shell_exec, system, virtual, show_source,
> passthru, escapeshellcmd, proc_open, popen, pclose, phpinfo,
> parse_ini_file, eval

Crypt_GPG uses proc_open().

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Address book setup

2016-06-14 Thread A.L.E.C
On 06/13/2016 11:09 PM, Dmitry Katsubo wrote:
> $rcmail_config['ldap_public']['public'] = array(
> 'name'  => 'Public LDAP Addressbook',
> 'hosts' => array('localhost'),
> 'port'  => 389,
> 'user_specific' => false,
> 'base_dn'   => 'cn=persons,cn=corporate',
> 'scope' => 'one',
> 'filter'=> '(objectClass=inetOrgPerson)',
> 'groups'=> array(
> 'base_dn'=> '',
> 'filter' => '(objectClass=groupOfNames)',
> 'object_classes' => array("top", "groupOfNames"),
>   ),
> );

You need 'fieldmap' here. We could probably make it optional and provide
something for inetOrgPerson, which is most common. For now, you have to
define the mapping in config.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] How to configure roundcube to relay mail

2016-06-07 Thread A.L.E.C
On 06/08/2016 04:21 AM, John Tucker wrote:
> $config['smtp_server'] = ‘my.host.com <http://my.host.com/>:10025’;
> $config[‘smtp_user’] = 'userid’;
> $config[‘smtp_pass’] = ‘password’;
> 
> or is there another 'smtp_port’ parameter or such?

There is.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Enigma shows and uses stale/old keys

2016-05-31 Thread A.L.E.C
On 05/31/2016 12:39 AM, Jari Fredriksson wrote:
> I updated my pgp keys and gpg -K and gpg2 -K do show the keys correctly.
> 
> Enigma, however, does not see or use the updated things in my keys. Does
> it have some kind of a cache somewhere? I restarted apache2 but that is
> all I did, and that did not help...

There's no cache, at least not in Roundcube. How did you update the keys
(and what did you change)? What if you remove and import again.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] confused about PGP

2016-05-27 Thread A.L.E.C
On 05/27/2016 04:39 PM, Andreas Meyer wrote:
> I enabled the plugin and importet a public key. When I write
> a mail to the owner of that key, I choose "encrypt" and when
> I send it, Roundcube asks for the public key of the sender.
> 
> Shouldn't it ask for the key of the recipient?

You store sent mail in Sent folder, right? To be able to decrypt it you
need to use your (sender's) key too.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] RCU 1.2 & Enigma (s/mime)

2016-05-23 Thread A.L.E.C
On 05/23/2016 07:54 PM, Jari Fredriksson wrote:
>> But... My posts contain a signed plain message wrapped with pgp stuff. I
>> would love to have the signature sent as an separate mime part. I can
>> see that enigma supports this format, at least when reading a message
>> from some other. How to enable that in roundcube/enigma?
> 
> Err. Not S/MIME but PGP/MIME is what I was trying to ask...

You can't control that (yet). The format is chosen automatically. Its
"inline" for plain text messages and PGP/MIME for multipart (e.g. HTML
or with attachment).

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] Limit number of attachments

2016-04-28 Thread A.L.E.C
On 04/23/2016 11:56 PM, Sam wrote:
> Did I missed something or is there anything to do to limit the number of
> attachment that a user can send ?

You're right. There's no such option built-in.

However, we have a ticket and some plugin already exists
https://github.com/roundcube/roundcubemail/issues/4993

I think we should give it a higher prio, as it has impact on security,
indeed.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] session data stored in memcache is not in plain-text?

2016-04-27 Thread A.L.E.C
On 04/27/2016 01:46 PM, Alex Mihičinac wrote:

> Thanks for quick answer Alec! :-) Is it possible to switch this flag off 
> (maybe via config file)?

It could be. Create a ticket and/or provide a pull request.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] session data stored in memcache is not in plain-text?

2016-04-27 Thread A.L.E.C
On 04/27/2016 01:30 PM, Alex Mihičinac wrote:
> Any hint more than welcome.

We use MEMCACHE_COMPRESSED flag when writting session data.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Re: [RCU] Enigma Plugin: FILE NOT FOUND

2016-03-08 Thread A.L.E.C
On 03/08/2016 11:06 AM, Marcus Schopen wrote:
> using rouncube 1.1.4 on Ubuntu 14.04 LTS and tried to enable enigma
> plugin, which come with the "Complete" download from roundcube.net, but

Just don't use Enigma with 1.1. It really started to work in 1.2.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


Re: [RCU] How to report bug if trac is closed?

2016-02-29 Thread A.L.E.C
On 02/29/2016 09:43 AM, Stanislav Humplík - Analogic s.r.o. wrote:
> I've found bug which prevents using passwords longer than 27 characters
> (other imap clients works ok). I want send bug report somewhere but trac
> says "Notice: Account registration is currently disabled. Please read
> our news for further updates."

You can write here, but I don't think this is Roundcube bug. Maybe other
clients use different authentication method.

-- 
Aleksander 'A.L.E.C' Machniak
Kolab Groupware Developer[http://kolab.org]
Roundcube Webmail Developer  [http://roundcube.net]
---
PGP: 19359DC1 @@ GG: 2275252 @@ WWW: http://alec.pl
___
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users


  1   2   3   4   5   >