User Details
- User Since
- Jan 24 2022, 2:40 PM (150 w, 14 h)
Oct 19 2024
The message header is parsed!
Oct 7 2024
You asked for hints!
The crash should not happen, but there are still to much variables included.
I just analyzed, the information I had.
Oct 1 2024
as long as I could see, it is still a Domain address issue!
Sep 25 2024
perhaps Domain based issue?
see end of your logs.
Aug 16 2024
Sorry, but this code looks like another service user account.
I think this is not a code issue, but a configuration issue.
Should be solved with howto doc, not with code on auth/ldap.
Aug 2 2024
the debug option is " -d " with an integer up to 9
seems the same problem as T8337.
I have posted a workaround to the parser UTF8 error.
Jul 22 2024
389ds update issue resides on Ubuntu, it is not a Kolab issue.
Jun 24 2024
it was a smarty version issue.
bookworm comes with smarty4.
Mar 21 2024
It's because of default php versions on Debian:
Debian 10 - php 7.3
Debian 11 - php 7.4
Debian 12 - php 8.2
Feb 1 2024
Aug 16 2023
Debian OS version doesn't matter.
Jul 28 2023
Looks like a duplication.
Duplicated see T7247
Jun 13 2023
you could try direct with apt install
it is in repository!
https://obs.kolabsys.com/repositories/Kolab:/16/Debian_10.0/all/roundcubemail-plugin-contextmenu_3.0-0~kolab13_all.deb
Distribution?
Manually tried to install the package? (apt yum dnf...)
It's definetly not a bug, it's a feature request (plugin).
It shouldn't be installed automatically, but mentioned as recommended.
May 16 2023
wallace error mentioned here: T7247#100099
May 14 2023
@waadaa85 : Did you try to limit synchronous (+S) and asynchronous (+A) threads?
Mar 6 2023
python3 ./kolab-cli.py lm
should show list but is empty on actual git version
Feb 5 2023
Debian11 Install is testing....
check error with existing tasks on bug list.
As PHP and Python3 needs upgrades to newer versions, shipped with new distributions, there are still rough corners and known errors.
Feb 3 2023
Thanks for the debugging
Feb 2 2023
adding:
deb http://obs.kolabsys.com/repositories/Kolab:/16/Debian_11.0/ ./
deb http://obs.kolabsys.com/repositories/Kolab:/Winterfell/Debian_11.0/ ./
deb http://obs.kolabsys.com/repositories/Kolab:/16:/Testing/Debian_11.0/ ./
'changed the typo'
Work for for newer Distributions are still in progress!
work is in progress
Jan 12 2023
Which readme? used repository? OS version, installed package version?
Some more information to help accordingly is appreciated.
So help could only be in general, with some information and more manuals to read.
Jan 2 2023
abandoned by error
a comma was deleted by an error and fixed
Using text strings in cyruslib.py module is not very suitable:
quote is set now in cyruslib.py line 564
Oct 22 2022
Some small adjustments on dscreate data and comments
Oct 7 2022
The fix is accepted into git.
But as I ran into another Error, you should also use the latest Diff 11060.
I ran into an integer error on other tests,
so I corrected this with this patch.
Oct 4 2022
Sep 30 2022
res.append(c)
Just remove chr()
c is single character of a string, but not an integer value of a character.
I could see via grep, decode(s) is used with folders in modules used for imap
Aug 15 2022
changed line 285 by a mistake, just split with \ as line to long
dscreate depends on python3-lib389, you will run into error, if you start setup with Python 2.
I run into this on Debian 10
Ubuntu 22.04 LTS has dscreate only for install and cockpit module would be the new admin, .pl scripts are dropped.
Jul 15 2022
D3692 and D3710 should fix this
I ran into same error, when testing for Python 3
Jun 17 2022
removed comitted code
Jun 16 2022
dropped old imports in try..except lesser than 2.7
try...except removed
try...except
and old or unused imports
removed as explained
Jun 14 2022
Jun 13 2022
encode and decode becomes obsolete at the return value as sql, sql alchemy should do the encoding/decoding
see also:
class Entry def __init__
line 70-75 checks unicode
Jun 9 2022
sqlalchemy.interfaces.PoolListener in pykolab/telemetry.py is deprecated since v0.7 and removed in v1.4
gettext.lgettext is removed in Python v 3.10
Apr 24 2022
Apr 22 2022
external cyruslib.py not python3 compatible.
Apr 16 2022
Apr 14 2022
streams ( Python 2 -> type { str } (bytes string) | Python 3 -> type { class bytes } ) uneven
encode() ( Python 2 -> type { str } (bytes string) | Python 3 -> type { class bytes } ) uneven
decode() ( Python 2 -> type { str } (text string) | Python 3 -> type { class string } ) even
Mar 23 2022
this is for python 3 as there is more strict type operations between byte and text strings.
https://docs.python.org/3/howto/pyporting.html#text-versus-binary-data
Mar 20 2022
Here is my debugging with python2.7 -3 ./saslauthd.py -d 9
and log. INFO before the trouble line:
logger.py
Mar 15 2022
saslauthd.py -d 9
The root cause is that level is set from third party ldap and sqlalchemy logging, which are not of type (int).
pykolab/logger.py:271: DeprecationWarning: comparing unequal types not supported in 3.x
with --fork
testsaslauthd -u user(@domain) -p password
0: NO "authentication failed"
- Logging error ---
Traceback (most recent call last):
File "/usr/lib/python3.x/logging/__init__.py", line 1037, in emit stream.write(msg + self.terminator)
BrokenPipeError: [Errno 32] Broken pipe
Call stack:
File "./saslauthd.py", line 43, in <module> saslauthd.run()
...
Message: "Authentication for 'user(@domain)' succeeded"
I'll just change line 22
Mar 14 2022
Mar 13 2022
Mar 6 2022
removed line at pykolab/cli/__init__.py
Feb 23 2022
[Python 3]basestring to six string_types D3403
Feb 21 2022
some manuals of interest:
Cheat-Sheet: Writing Python 2-3 compatible code:
https://python-future.org/compatible_idioms.html
Feb 7 2022
gettext.lgettext removed in 3.10 D3367
Feb 6 2022
some module names changed in python3 D3355