[SOGo] XMPP video question

2020-04-16 Thread Marco

Hello SOGo users,

 I'm new in SOGo and I'm trying to integrate an XMPP chat on the webmail.

I found this client


https://jsxc.readthedocs.io/en/latest/getting-started/installation/sogo.html

The docs says that it is unmaintained, this is not good really.

Anyway I tried to install it on SOGo 4 and it works. The XMPP server is 
Openfire last version with Meeting plugin. All applications are on the 
same host placed in a private network that I contact with clients on VPN.


I have two problems.

First, I use Cyrus IMAP with virtual domains, the usernames are 
@. These logins are not compatible with Openfire, and I 
have to replace in the jsxc login form the '@' char with '\40'.


Second, the video icon on chat remains unclickable. I tried to verify 
some debug logs on SOGo and Openfire, but I can't let video to be 
selectable.



I would like to know how is your experiences with XMPP with SOGo4. If 
there are some best practices, success stories, some hints you could share.


Thank you very much
Best Regards

  Marco
--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Sogo scalability

2020-08-06 Thread Marco

Hello,

 I read that SOGo can manage at least 25000 mailboxes and more. But I 
don't understand how to setup the hosts through an high availability 
balancer.


At the moment I have about 2 mailboxes accessed through IMAP. Many 
mailboxes are large (over 10GB) and very intensively accessed. They are 
highly accessed through ActiveSynch too, so I'll setup a separate 
installation for this protocol, as suggested on SOGo site.


I wonder how many mailboxes can manage a single SOGo host.
I would like to know if an IMAP session must stay on a single host, or 
if it can land on a random balanced host.
For instance, I remember that Horde can have multiple hosts equally 
configured with the same DB (in particular one session table). So it's 
not important what balanced host a client contacts: even in the same 
IMAP session the host can change.


I would like to know if you have some hints or best practices how to 
configure SOGo in a large environment. For instance, a typical resource 
allocation (CPU, RAM) for a single host.


Let suppose to choose a MySQL DB. Reading at the manual, it seems the DB 
is a system global configuration. Can a single DB manage over 2 
mailboxes?


Thank you very much for every hints.

Cheers
Marco

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Sogo scalability

2020-08-11 Thread Marco

Hello Christian,

On 11/08/2020 13:55, Christian Mack (christian.m...@uni-konstanz.de) has 
written:

Hello

First, most of your questions are not SOGo related, but IMAP and
database server related.

That said, let's start :-)

You can optimize your setup for either speed, high availability or easy
setup.
As you seem to go for redundancy and/or speed, you should split up your
setup into loadbalancer, SOGo + reverse Proxy, database and IMAP/SMTP
server.


Ouch, yes, I forgot to write that we are changing the webmail and 
collaboration suite only. So, we are evaluating a new webmail because 
our older one (Open-Xchange) become too expensive.


So I expect to don't touch other setup about IMAP, SMTP and LDAP. They 
are already working as well.


In particular we use LDAP for authentication and we use a kind of 
sharding of mailboxes over IMAP servers. About this aspect I appreciate 
SOGo, which let me to define the IMAP server through an LDAP attribute 
(such as mailHost).
So I can choose a different IMAP server for every account! This is not 
really true, I have to grant the IMAP sharing among the mailboxes. But 
the idea is working, we separate accounts and disks over multiple IMAP 
hosts.


[...]

IMAP sessions are bound to one connection.
As long as the connection exists, the session can survive.
One connection can provide multiple sessions.
There can be multiple connections at the same time.
Therefore it is irrelevant which server a session connects, as long as
the server doesn't die and all servers have the same content.


Ok, If I well understand a set of equally configured (cloned) virtual 
machines for SOGo could be a good solution.




Database:
Independent to SOGo, can be reused for multiple services.
SOGo only stores authentication information, settings, address books and
calendars in database.
Those are tiny compared to emails.
For 25,000 users only, no database will get into a sweat.
They usually are made for datasets in the hundreds of millions.
If you need high redundancy, you can even use a cluster setup, but they
are hard to do right and expensive.


This sounds very good.



SOGo:
How many accounts one SOGo server can serve, depends on the usage.
Example:
We have split our servers like outlined at the start of this message.
We have ~20,000 accounts and provide no ActiveSync.
There are roughly 120 parallel, active SOGo sessions per minute in high
usage times.
Active SOGo session means, that the user clicked at least one time in
that minute or accessed any information via DAV.
This is served by an 16 core 32 GB RAM 200 GB SSD/HD VM.
RAM is the most limiting factor here.
Especially for large emails and folders with a lot of emails we had to
increase max Limit of RAM per worker SxVMemLimit to 512.
Else we had seen a lot of respawned workers after one access.
We have 350 workers running.

If you want to use multiple SOGo servers (as you are planning for
dedicated ActiveSync and web + DAV), you have to use one shared
memcached server.
You also have to use one shared NFS or cifs server for email composition
and encoding storage (SOGoMailSpoolPath + NGMimeBuildMimeTempDirectory).
If you don't use those, you will have diverse problems when creating
emails or change settings and content.


Thank you for these very useful details.
On our current Open-Xchange we see about 400 parallel sessions as 
maximum. These are equally likely distributed over IMAP and over Active 
Sync.


Using balanced solution, I wonder if it is better to separate sogod for 
EAS and sogod processes for IMAP on the same host (as described in 
documentation FAQ), or if it is better to provide different separated 
hosts for EAS. Ie, balanced hosts for IMAP and separated balanced hosts 
for EAS.


The shared Memcache server is another task where I have to define an 
appropriate resources of RAM.


Thank you very much for these hints.

Cheers
Marco


Hope that helps a bit.


Kind regards,
Christian Mack

Am 06.08.20 um 15:20 schrieb Marco (fa...@ruparpiemonte.it):

Hello,

  I read that SOGo can manage at least 25000 mailboxes and more. But I
don't understand how to setup the hosts through an high availability
balancer.

At the moment I have about 2 mailboxes accessed through IMAP. Many
mailboxes are large (over 10GB) and very intensively accessed. They are
highly accessed through ActiveSynch too, so I'll setup a separate
installation for this protocol, as suggested on SOGo site.

I wonder how many mailboxes can manage a single SOGo host.
I would like to know if an IMAP session must stay on a single host, or
if it can land on a random balanced host.
For instance, I remember that Horde can have multiple hosts equally
configured with the same DB (in particular one session table). So it's
not important what balanced host a client contacts: even in the same
IMAP session the host can change.

I would like to know if you have some hints or best practices how to
configure SOGo in a large environmen

[SOGo] Multiple IMAP account with one authentication

2020-09-04 Thread Marco

Hello,

 using IMAP I see two way to share one set of mailbox to many users.

For "set of mailbox" I mean an INBOX mailbox and relative subfolders, 
such as


mysharedmail (INBOX)
mysharedmail/Junk
mysharedmail/Trash
mysharedmail/Sent
mysharedmail/Drafts

A shared mailbox has not credentials. It's accessed using other 
credentials if IMAP ACL grant the access to the authenticated user.


The first way is to use IMAP ACL. This method can be adopted to share a 
set of mailboxes with INBOX, Spam, Drafts, Junk folders. But this is not 
optimal for the special use folders. Our customers expect that a mailbox 
shared with name "office" must have a subfolder like "office/Junk" where 
to place the spam marked from office INBOX, and a subfolder 
"office/Trash" where to place the deleted mails from office INBOX and 
subfolders...


SOGo doesn't implement a mechanism like above described. There is a 
unique Trash personal folder where deleted mails are moved to.


So, the second possibility I could see is to use one SASL PLAIN 
authentication over more SASL PLAIN authorization.
I authenticate with myuser to see the myuser mailboxes (INBOX, Sent, 
Trash, Junk...) only, and I authenticate again using the same credential 
to see other mailboxes too, such as "office", with subfolders Sent, 
Trash, Junk, if the IMAP ACL grant the access. The office mailboxes are 
now opened like another account.


SOGo doesn't implement above mechanism too. I can open many mailboxes, 
but I have to provide a complete different set of server, username and 
password.


I tried to open a request (https://sogo.nu/bugs/view.php?id=5081), but I 
suppose that this is not of interest.


There is a third trivial solution: to give authentication credential to 
a shared mailbox and share the credential to many users. But in this way 
I can't see who is really authenticating. I prefer if one user must have 
only one credential.


I wonder if some SOGo user had this issue and how to deal with it. Any 
hints?


Thank you very much
Kind Regards

Marco
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] SMTP Auth and delegated Email/Calendar

2021-07-15 Thread Marco

Il 26/04/2021 16:37, c...@brain-biotech.de ha scritto:
I can set up an LDAP attribute (eg otherMailbox) where I can add entries 
if this person is allowed to do this. But this is an additional setting 
I like to avoid.


Hello,

 if you enable reject_sender_login_mismatch you have to specify the 
allowed emails. You can't know the allowed emails associated to shared 
IMAP accounts, so you have to keep them in another LDAP attribute, of 
course.


There are many problems in this management, and a kind of Identity 
Manager could be mandatory.


Another problem, when you share all mailboxes of an account, is the 
"mark as Spam" task:


https://www.sogo.nu/bugs/view.php?id=5057

Alternatively, if you use PLAIN SASL in order to ease the IMAP mailbox 
share and delegation, you could use the "authentication as another 
user", but SOGo doesn't support it:


https://www.sogo.nu/bugs/view.php?id=5081

Kind Regards

Marco
--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Shared calendar: changing oder deleting items not working

2023-07-09 Thread Marco

Hello,

I have a mailcow server with sogo. Here I have calendars from another 
user which he shared to me.
The permissions are set so that I can create, modify and delete 
appointments:


[X] This person can add items to my calendar.
[X] This person can delete items from my calendar.

I have synchronized all calendars via CalDAV to my mail client.

Despite the permissions, it is only possible to create appointments. It 
is not possible to change or delete appointments. These operations can 
be performed only by the owner of the calendar itself, despite the setting.


I suspect a bug here.

Greetings

Marco


Re: [SOGo] Email not being sent

2023-09-28 Thread Marco
Am 27.09.2023 schrieb "\"Support\"" (supp...@futbollocker.com)
:

> : host
> msn-com.olc.protection.outlook.com[104.47.59.161] said: 550 5.7.1
> Unfortunately, messages from [185.223.74.125] weren't sent. Please
> contact your Internet service provider since part of their network is
> on our block list (S3140).

That is not related to SOGo at all.
You send the mails out from 185.223.74.125.

That host seems to be or has been on a blacklist MS uses.

https://docs.hetzner.com/de/robot/dedicated-server/troubleshooting/microsoft-blacklist/

https://olcsupport.office.com/ is named as a place where you can delist
it.

Question 1: Is 185.223.74.125 your system or do you relay it through
another SMTP server (often called smarthost)?

If it is yours and only controlled by you: Check the logs for any spam
message


Re: [SOGo] Email not being sent

2023-09-28 Thread Marco
Am 28.09.2023 schrieb "\"Raoul Schroeder\""
(raoul.schroe...@global-ist.net) :

> Additionally, they seem to have blocked the entire gandi.net IP
> range, due to SPAM servers.

That is the problem.
If operators take too long or don't care about spam at all, entire
network ranges will land in blacklists.

The only way around: Get your own ASN and your own address space.


Re: [SOGo] documentation for sogo-tool

2023-10-05 Thread Marco
Am 05.10.2023 schrieb "qhivert" (qhiv...@alinto.eu) :

> There is no documentation yet but it's in our short todo list.
> For now, you can have more information for each command by typing:
> sogo-tool 
> without any arguments.

Thanks for that suggestion, but that doesn't display all options.

[root@sogo ~]# sogo-tool user-preferences
user-preferences get|set|unset defaults|settings user [-p
credentialFile] key [value|-f filename]

 user  the user of whom to set the defaults/settings
 key/value value the JSON-formatted value of the key

  -p credentialFileSpecify the file containing the sieve admin
  credentials The file should contain a single line:
 username:password
  Examples:
   sogo-tool user-preferences get defaults janedoe SOGoLanguage
   sogo-tool user-preferences unset settings janedoe Mail
   sogo-tool user-preferences set defaults janedoe SOGoTimeFormat
   '{"SOGoTimeFormat":"%I:%M %p"}'

I am interested in changing the forwarding rules via sogo-tool.


[SOGo] Error in autocomplete when sending email from webmail - Bug #3513 e #3573

2016-07-07 Thread Marco

Hi,

we found today the problem causing the bug reported #3513 e #3573.

Composing a new email from SOGo webmail version 3, when you try to write 
down the email address in the "To" field, the email address is wrongly 
completed when you press '@', just like you press 'Return' instead. 
This issue does not let you write a complete email address not included 
in address book.


The issue happens in the following environment:

- Mac OS X

- Browser Safari or Chrome

- Italian keyboard layout (the '@' character and ';' character have the 
same keycode 186)



The workaround we found is the following.

In file:

WebServerResources/js/vendor/angular-material.min.js

change row 25316:

if (this.separatorKeys.indexOf(event.keyCode) !== -1)

in

if (this.separatorKeys.indexOf(event.keyCode) !== -1 && 
!(navigator.appVersion.indexOf("Mac") != -1 && event.keyCode == 186 && 
event.altKey)) {



In other words, it is an exception into angular material framework.


I am aware that this is not an elegant solution, but it is another step 
beyond to understand and fix the issue.



Maybe the 'separatorKeys' list does not include the alt+186 combination 
as an exception for completing the email address?


Is it possible to fix the code in order to include this case?


Thank you

Marco




--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] SOGo + RHEL 5.5

2010-05-15 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi..

are there any known problems with RHEL 5.5 ?
i got a Missing Dependency: libevent-1.1a.so.1


# yum install sogo
Loaded plugins: fastestmirror
Determining fastest mirrors
 * addons: centos.intergenia.de
 * base: centos.intergenia.de
 * extras: centos.intergenia.de
 * updates: centos.intergenia.de
RHEL5

| 1.9 kB 00:00
RHEL5/primary_db

|  15 kB 00:00
addons

|  951 B 00:00
addons/primary

|  202 B 00:00
base

| 1.1 kB 00:00
base/primary

| 920 kB 00:00
base

 2599/2599
extras

| 2.1 kB 00:00
extras/primary_db

| 180 kB 00:00
updates

| 1.9 kB 00:00
updates/primary_db

|  57 kB 00:00
Setting up Install Process
Resolving Dependencies
- --> Running transaction check
- ---> Package sogo.i386 0:1.2.2-1.el5 set to be updated
- --> Processing Dependency: memcached for package: sogo
- --> Running transaction check
- ---> Package memcached.i386 0:1.4.2-1.el5 set to be updated
- --> Processing Dependency: libevent-1.1a.so.1 for package: memcached
- --> Finished Dependency Resolution
memcached-1.4.2-1.el5.i386 from RHEL5 has depsolving problems
  --> Missing Dependency: libevent-1.1a.so.1 is needed by package
memcached-1.4.2-1.el5.i386 (RHEL5)
Error: Missing Dependency: libevent-1.1a.so.1 is needed by package
memcached-1.4.2-1.el5.i386 (RHEL5)
 You could try using --skip-broken to work around the problem
 You could try running: package-cleanup --problems
package-cleanup --dupes
rpm -Va --nofiles --nodigest
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkvutcQACgkQqyPvPxEbK368/wCdHKByAh+ZJb9/dkXpN/5/w2EU
jIwAniSAy6wq8Xt2/l6cK9PbB59l7YPD
=LV5f
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] first mail lost if you open a second

2010-06-25 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hi..

is there a way to open a new mail in a second window ?
ive just answered a mail and during this a new arrived and i tryed to
forward it.
then i noticed that the mail i want to forward opend in the same window
i answered the other one..
and the answered mail is gone..

i dont think this is a big problem cause nearly noone would open two
mails at the same time.. but it would be nice to get a message that the
other mail would be closed or that the second mail opens in a new window..

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkwkiFUACgkQqyPvPxEbK34qxQCfaPU6nwMVphWQV/OH0p6cD+PB
8okAoJignc9b4c8uhi6JzKsSke9u1me1
=uxl1
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] ANN: SOGo v1.3.2

2010-09-21 Thread Marco Smiatek
hi..

When i use the TB3.1 Addons i got 2 more identities added (when i
compose a mail in TB).
Im sure both cam from ldap.
Before i only had
lastn...@example.com
after installing 3.1 Addons i have
lastn...@example.com
firstname.lastn...@example.com
ldap...@example.com

how can i prevent that?


Am 21.09.2010 18:17, schrieb Ludovic Marcotte:
>  The Inverse Team is pleased to announce the immediate availability of
> SOGo 1.3.2. This is a minor release of SOGo which focuses on small new
> features and improved stability over previous versions.
> 
> === What is SOGo ===
> 
> SOGo is a free and modern scalable groupware server. It offers shared
> calendars, address books and emails through your favorite Web browser or
> by using a native client such as Mozilla Thunderbird and Lightning.
> 
> SOGo is standard-compliant and supports CalDAV, CardDAV, GroupDAV and
> reuses existing IMAP, SMTP and database servers - making the solution
> easy to deploy and interoperable with many applications.
> 
> SOGo features :
> 
>  * Scalable architecture suitable for deployments from dozen to many
> thousand users
>  * Rich Web-based interface that shares the look and feel, the features
> and the data of Mozilla Thunderbird and Lightning
>  * Improved integration with Mozilla Thunderbird and Lightning by using
> the SOGo Connector and the SOGo Integrator
>  * Two-way synchronization support with any SyncML-capable devices
> (BlackBerry, Palm, Windows CE, etc.) by using the Funambol SOGo Connector
>  * Excellent integration with Apple iCal 3/4 and Apple iPhone OS 3/4
> 
> and many more! SOGo and our connectors are completely free.
> 
> 
> === Changes from the previous release ===
> 
>  * fixed various issues with some types of email address fields
>  * added support for Ctrl-A (select all) in all web modules
>  * added support for Ctrl-C/Ctrl-V (copy/paste) in the calendar web module
>  * now builds properly with gnustep-make >= 2.2 and gnustep-base >= 1.20
>  * added return receipts support in the webmail interface
>  * added CardDAV support (Apple AddressBook and iPhone)
>  * added support for multiple, external IMAP accounts
>  * added SSL/TLS support for IMAP accounts (system and external)
>  * improved and standardized alerts in all web modules
>  * added differentiation of public, private and confidential events
>  * added display of unread messages count for all mailboxes
>  * added support for email event reminders
> 
> See http://www.sogo.nu/bugs/changelog_page.php?project_id=1 for the
> change log.
> 
> Mozilla Thunderbird 3.1 is now the preferred version to use with SOGo.
> New versions of the SOGo Connector, Integrator and Lightning "Inverse
> Edition" extensions are now available for Thunderbird 3.1.
> 
> 
> === Getting SOGo ===
> 
> SOGo is free software and is distributed under the GNU GPL. As such, you
> are free to download and try it by visiting the following page :
> 
> http://www.sogo.nu/downloads/backend.html
> 
> You can also download the sources by following the instructions on this
> page:
> 
> http://www.sogo.nu/development/source_code.html
> 
> Frontend clients such as Mozilla Thunderbird, Mozilla Lightning (Inverse
> Edition), SOGo Connector and SOGo Integrator extensions are available
> for download from :
> 
> http://www.sogo.nu/downloads/frontends.html
> 
> Documentation about the installation and configuration of SOGo,
> Thunderbird or mobile devices is available from :
> 
> http://www.sogo.nu/downloads/documentation.html
> 
> You can also try our online SOGo demo at :
> 
> http://www.sogo.nu/tour/online_demo.html
> 
> 
> === How can I help ? ===
> 
> SOGo is a collaborative effort in order to create the best Free and Open
> Source groupware solution.
> 
> There are multiple ways you can contribute to the project :
> 
>  * Documentation reviews, enhancements and translations
>  * Write test cases - if you know Python, join in!
>  * Feature requests or by sharing your ideas (see the roadmap)
>  * Participate to the discussion in mailing lists
>  * Patches for bugs or enhancements (http://www.sogo.hu/bugs)
>  * Provide new translations
> (http://www.sogo.nu/english/support/faq/article/how-to-translate-sogo-in-another-language.html)
> 
> 
> Feel free to send us your questions. You can also post them to the SOGo
> mailing list: https://inverse.ca/sogo/lists
> 
> === Getting Support ===
> 
> For any questions, do not hesitate to contact us by writing to
> supp...@inverse.ca
> 
> Customer support packages for SOGo are available from
> http://inverse.ca/support.html
> 


-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


[SOGo] [FYI] multiple master passwords on startup [SOLVED]

2010-09-28 Thread Marco Smiatek
hi..

after installing the sogo plugins i have to enter my masterpw multiple
times on startup. That seems to be a Thunderbird Problem.

To solve this i installed this addon:
https://addons.mozilla.org/de/thunderbird/addon/9808/

-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


[SOGo] Sender Adress in Webmail

2010-10-08 Thread Marco Smiatek
hi..

is there a way to edit the sender adress when using webmail ?
I can see the option in latest SOGo but i cant edit it.
My Users have a few emailadresses in ldap, is there a admin way to
configure what emailadress is used ?
in my setup SOGo uses FIRSTNAME.LASTNAME@ and it would be nice to change
that to LASTNAME@

Marco Smiatek
-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


Re: [SOGo] Sender Adress in Webmail

2010-10-08 Thread Marco Smiatek
ok sry.. SOGo uses primary emailadress
i used the wrong template for new users


Am 08.10.2010 12:58, schrieb Marco Smiatek:
> hi..
> 
> is there a way to edit the sender adress when using webmail ?
> I can see the option in latest SOGo but i cant edit it.
> My Users have a few emailadresses in ldap, is there a admin way to
> configure what emailadress is used ?
> in my setup SOGo uses FIRSTNAME.LASTNAME@ and it would be nice to change
> that to LASTNAME@
> 
> Marco Smiatek


-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


Re: [SOGo] TB3 not installing Lightning from update server

2010-10-20 Thread Marco Smiatek
Hey..

same here. I have 1.3.2 running with 102 plugins.
Tonight ive upgraded to 1.3.3 with 103 plugins.
when i start TB3 SOGo Connector gehts updated, and after that TB3
reports an update and restart.. then reports in update and restart..

and there it loops, but wont upgrade Integrator oder Lightning

Am 20.10.2010 13:02, schrieb Anthony Milan:
> Le 03/10/2010 17:32, Ludovic Marcotte a écrit :
>>  On 01/10/10 2:34 PM, Bill Cameron wrote:
>>> Hi,
>>>
>>> I'm trying to get Thunderbird 3 (version 3.1.2) to install the addons
>>> from the update server. We have this working fine with Thunderbird 2
>>> and the Connector is downloaded and installs correctly in TB3 but I
>>> can't get Lightning to download and install on TB3.
>>>
>> [massive snip]
>>
>> I've the same problem, we'll fix that tomorrow.
> Hi Ludovic,
> 
> Did you have time to fix this? I didn't find changes in nightly extensions.
> 
> http://inverse.ca/downloads/extensions/nightly/
> 
> Regards,
> 


-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

Institute for Internet Security - if(is)
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596 763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


[SOGo] SOGo Connector 103 + TB3 restart

2010-10-20 Thread Marco Smiatek
hi..

when i manually install the 103 Connector TB3 keeps restarting until i
disable the Connector.

Anyone else has problems with that ?
-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

Institute for Internet Security - if(is)
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596 763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


Re: [SOGo] SOGo Connector 103 + TB3 restart

2010-10-20 Thread Marco Smiatek
Hi Ludovic..

right.

So updating Connector via updates.php  to 103 ends in restart loop (TB
shows 102 is installed).
manually installing 103 Connector after that stops restarting (TB shows
103 is installed).

And Lightning is not updated.

Am 20.10.2010 16:10, schrieb Ludovic Marcotte:
>  On 10-10-20 10:06 AM, Marco Smiatek wrote:
>> hi..
>>
>> when i manually install the 103 Connector TB3 keeps restarting until i
>> disable the Connector.
>>
>> Anyone else has problems with that ?
> If you install it manually and it keeps restarting, that's because the
> version number specified in updates.php together with the file it refers
> to does not match the version you've installed manually.
> 
> Regards,
> 


-- 

Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

Institute for Internet Security - if(is)
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596 763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


[SOGo] Web Performance issue

2012-03-26 Thread Marco Coli
Hello.

We've been using cyrus imap since 10 years.
Our actual machine is RHEL 6.2, DL380G6 with 8GB RAM

Recently, I installed (from yum rpm channel) and configured SOgo.
All went well, we are at the beginning, now we are testing the web access.

All is ok for users with a moderate quantity of mail folders, while for users 
with a lot of folders+a lot of Other Users folders+a lot of Shared Folders, 
there is a performance issue.
For example, at login, or changing from Calendar or Address Book to Mail, the 
user must wait around 10 seconds before seeing the mail tree.
Maybe is because by default the mail tree appears completely opened?

Do you think there is a workaround to this problem?
(in thunderbird, only witch cyrus at the moment, there is absolutely no delay 
in folder navigation or in launching application)

Thank you



--
Saluti - Marco Coli

Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-03-27 Thread Marco Coli
Il 27/03/2012 08:57, Alessio Cecchi ha scritto:
>
> Hi Marco,
>
> what IMAP server are you using? Dovecot should have better performance
> than Cyrus.

I am using cyrus-imapd-2.4.14-1.el6.x86_64.
Are you sure about best Dovecot performances? For us is not possible to
migrate, we are using Cyrus for the last 10 years.
In the daily use, with Thunderbird as a client or with squirrelmail as
web application, we never experienced any performance issue.

>
> Have you properly configured memcached?
>

Well, it depends on what you intend with "properly". At first memcached
was not active (as I noticed on sogo logs). After this I started it,
with these parameters:
PORT="11211"
USER="nobody"
MAXCONN="1024"
CACHESIZE="64"
OPTIONS=""

But nothing has changed about this performance issue.
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-03-27 Thread Marco Coli
Il 27/03/2012 20:12, André Schild ha scritto:
> Where do you see performance issues ?
>
> We first need to find the bottleneck before we can find solutions
>

Thank you for your answer.
The performance issue are on the webmail, on users with a lot of
folders, shared folders, Other users folders, there is a big time (10
seconds ca.) when changing tabs from Calendar or Address Book to Mail tab.

There is no such delay using squirrelmail or regular email client.

Memcached is on, with default parameters:

PORT="11211"
USER="nobody"
MAXCONN="1024"
CACHESIZE="64"
OPTIONS=""



Thank you
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-03-29 Thread Marco Coli
Il 28/03/2012 08:45, Alessio Cecchi ha scritto:
> I
> Do you have in your SOGo config:
>
> SOGoMemcachedHost 127.0.0.1
>
> Should be by default.
>

Yes, I have
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-03-29 Thread Marco Coli
Il 29/03/2012 11:14, Khapare Joshi ha scritto:
hello all,

[]

This has helped at least for me.

There are probably other technique to optimize sogod but at this time this is 
good for me:) try doing this and see what happens.

Khapare




Well, thank you very much for your valuable infos!
I will try to apply your suggestions to my case.
I will let you know!




Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 29/03/2012 11:14, Khapare Joshi ha scritto:
hello all,

I dealt with sogo slow performance earlier - perhaps you can find in the list. 
I deployed sogo at my work around feb last year and is doing well. Although we 
have 17000+ users in our cyrus (imap server), only 6000 of those users are now 
using sogo. This might change very soon when we will enforce everyone to use 
sogo (goodbye to old sq mail).

With the performance issue with the sogo. I also use imapproxy in between imap 
server and sogo server. This has certainly help to increase performance at 
least for me. Also, seach in mailing list as "Sogo Slow performance" - this 
will give you some idea how to optimize your sogo that we discussed. So what I 
did is: increase the number of PREFORK to 70(in /etc/sysconfig/sogo) and you 
need minimum 3 postgres connection per sogod which means:

if you increase prefork to 70 then your postgres connection should be 3*70

This has helped at least for me.

There are probably other technique to optimize sogod but at this time this is 
good for me:) try doing this and see what happens.

Khapare


Well, I applied all your suggestion, but no luck.

- I installed imaproxy, listening on port 144, and instructed SoGo to connect 
to this port. I see it is correctly working
- I preforked sogo to 10 (now there are only some test users)
- I adapted postgres connections likewise

The problem is the same: the system in the complex is ok, but 3 users with a 
LOT of folders, needs to wait 9 seconds to pass from Calendar or Address tab to 
Mail
No such problem in Squirrel, or in thunderbird client.

I don't know what to do...

Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 13/04/2012 15:01, Francis Lachapelle ha scritto:
> Hi Marco
>
> It's likely a browser issue. Which browser (and version) is used?
Thank you for your answer!
Firefox, latest version (Now I am not on front of pc to tell you exactly).
I will tell the user to try another browser. Which do you reccomend?
Chrome, Explorer?

> How many folders is "a LOT" of folders?
>
>

Well, they have 50/100 folders owned, + a lot of shared folders from
other users... I will give you a more precise number soon...
Squirrel does not expand the folder tree, so there is no wait, but sogo
on the web expand the whole structure by default, and here is the wait.
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 13/04/2012 15:20, Francis Lachapelle ha scritto:
>
>> Well, they have 50/100 folders owned, + a lot of shared folders from
>> other users... I will give you a more precise number soon...
>> Squirrel does not expand the folder tree, so there is no wait, but sogo
>> on the web expand the whole structure by default, and here is the wait.
> Wrong: the folders state is saved and restored when the user visits the 
> webmail. When logging in for the first time, no folder is expanded.
>
>

Mumble I am trying now... I am logged in (I have only 20 folders
total), my structure is fully opened, I close it, I move to Calendar, I
return to Mail, all folders are expanded.
It is not supposed to be? Do I have something wrong?

Platform RHEL6.2, sogo 1.3.14, cyrus-imapd 2.4.14

Thank you
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
9.092 sogod[27646] WOCompoundElement: id logging is on.
2012-04-13 15:27:09.186 sogod[27646] WARNING: IMAP4 connection pooling is 
disabled!
2012-04-13 15:27:09.228 sogod[27646] Note(NGImap4Connection): using '.' as the 
IMAP4 folder separator.
2012-04-13 15:27:09.519 sogod[27646] Note: using 'UCS-2LE' on Linux.
localhost.localdomain - - [13/Apr/2012:15:27:09 GMT] "GET 
/SOGo/so/marco_hc/Mail/view HTTP/1.1" 200 9760/0 1.006 34592 71% 7M
Apr 13 15:27:10 sogod [27646]: [WARN] <0x0x21b20c8[SOGoWebDAVAclManager]> entry 
'{DAV:}write' already exists in DAV permissions table
Apr 13 15:27:10 sogod [27646]: [WARN] <0x0x21b20c8[SOGoWebDAVAclManager]> entry 
'{DAV:}write-properties' already exists in DAV permissions table
Apr 13 15:27:10 sogod [27646]: [WARN] <0x0x21b20c8[SOGoWebDAVAclManager]> entry 
'{DAV:}write-content' already exists in DAV permissions table
localhost.localdomain - - [13/Apr/2012:15:27:10 GMT] "POST 
/SOGo/so/marco_hc/Calendar/alarmslist?browserTime=1334323629 HTTP/1.1" 200 2/0 
0.009 - - 128K
localhost.localdomain - - [13/Apr/2012:15:27:10 GMT] "POST 
/SOGo/so/marco_hc/Mail/0/mailboxes HTTP/1.1" 200 1584/0 0.298 - - 4K
localhost.localdomain - - [13/Apr/2012:15:27:11 GMT] "POST 
/SOGo/so/marco_hc/Mail/foldersState HTTP/1.1" 200 198/0 0.004 - - 0
localhost.localdomain - - [13/Apr/2012:15:27:11 GMT] "POST 
/SOGo/so/marco_hc/Mail//0/folderINBOX/unseenCount HTTP/1.1" 200 13/0 0.284 - - 
12K



Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 13/04/2012 15:20, Francis Lachapelle ha scritto:
>
> Wrong: the folders state is saved and restored when the user visits the 
> webmail. When logging in for the first time, no folder is expanded.
>
>
>

Well, I tried with zeg under vmware, and the behaviour is the same... I
created a lot of nested folders, and they are ALWAYS opened, no matter
if I close them before changing tab in the webmail...
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 13/04/2012 16:07, Wolfgang Sourdeau ha scritto:


Well, I tried with zeg under vmware, and the behaviour is the same... I
created a lot of nested folders, and they are ALWAYS opened, no matter
if I close them before changing tab in the webmail...
Marco Coli

Which ZEG? SOGo 2.0 rc1 ?

no, the stable one, 1.3.12

Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 13/04/2012 15:20, Francis Lachapelle ha scritto:
>
>> Thank you for your answer!
>> Firefox, latest version (Now I am not on front of pc to tell you exactly).
>> I will tell the user to try another browser. Which do you reccomend?
>> Chrome, Explorer?
> Chrome should be the fastest.
>
>

I ask the user to try, he has no chrome and he can't install it right
now,, with firefox 11 he waits 9 seconds, with Explorer 9.0.8 he waits
21 (!) seconds
Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli
Il 13/04/2012 16:12, Wolfgang Sourdeau ha scritto:
Le 12-04-13 10:09, Marco Coli a écrit :
no, the stable one, 1.3.12
There is a bug in SOGo < 1.3.13 where certain characters are not properly 
escaped. You need to update to 1.3.14 and perform the fix that Francis 
mentionned previously.


Wolfgang


Thank you. I can try the fix, but I do not think this is my case.
Apart from the test I did with ZEG, the production site started with 1.3.13, 
now i 1.3.14, and if I do a backup like in 
http://www.sogo.nu/bugs/view.php?id=1767 , I have no errors:

[sogo@nic-server-mail ~]$ sogo-tool -v backup /BACKUP/CANC/test ALL
Apr 13 16:18:14 sogo-tool [2865]: <0x0xb8ce08[LDAPSource]> WARNING: using old 
bindFields format - please update it
Apr 13 16:18:14 sogo-tool [2865]: <0x0xc2da08[SOGoCache]> Cache cleanup 
interval set every 300.00 seconds
Apr 13 16:18:14 sogo-tool [2865]: <0x0xc2da08[SOGoCache]> Using host(s) 
'127.0.0.1' as server(s)


Marco Coli

Global Services
CAD CAM Specialist

Tel.+39 057444741

Fax+39 0574440645

E-mail marco.c...@tecnosistemi.com
Web   www.tecnosistemi.com






-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli

Il 13/04/2012 16:12, Wolfgang Sourdeau ha scritto:
There is a bug in SOGo < 1.3.13 where certain characters are not 
properly escaped. You need to update to 1.3.14 and perform the fix 
that Francis mentionned previously.



Wolfgang



I have some problem trying to apply Francis' fix:
[sogo@nic-server-mail ~]$ psql sogo
Password: *
psql (8.4.9)
Digita "help" per aiuto.

sogo=> begin transaction;
BEGIN
sogo=> update sogo_user_profile set c_settings = replace(c_settings, 
'\\', '\');
sogo'> update sogo_user_profile set c_defaults = replace(c_defaults, 
'\\', '\');

Comando errato \. Prova \? per la guida.
sogo(>

I think there is some escape character problem in the string
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Web Performance issue

2012-04-13 Thread Marco Coli

Il 13/04/2012 16:07, Wolfgang Sourdeau ha scritto:




Well, I tried with zeg under vmware, and the behaviour is the same... I
created a lot of nested folders, and they are ALWAYS opened, no matter
if I close them before changing tab in the webmail...
Marco Coli


Which ZEG? SOGo 2.0 rc1 ?


I tried to download also zeg 2.0 rc1, but the behaviour is the same, the 
folder tree is always opened, regardless of how you left it.


I don't know if the performance issue with my users would be the same, 
but is definitely not true that the folders state is saved and restored 
when the user visits the webmail

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Deploying signatures

2012-06-29 Thread Marco Lertora


On 10/26/10 12:41 PM, Alessio Fattorini wrote:

Il 23/03/2010 19:58, André Schild ha scritto:

Hello,

what is the best way to deploy signatures ?

I think of such a solution:

1. Setup the signature in the web frontend (Perhaps even have 
templates which can then be set by a

admin)
2. When the sogo integrator starts on thunderbird, it also retrieves 
the signature from the sogo

server and sets in in thunderbird ?


+ 1 old but it's a good good feature


+ 1 very old but very nice

Marco Lertora
--
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] SOGoSievePrependFilterName Inclusion/Embedding of server-side sieve scripts into standard sogo-script

2012-07-10 Thread Marco Coli

Hello,

on ID 1392 (http://www.sogo.nu/bugs/view.php?id=1392) there is a (in my 
opinion brilliant) extension of sogo configuration, to allow the 
inclusion of existing scripts into sogo, very useful in many cases, for 
example if you have pre-existing"standard" rules and you want to give to 
sogo users only vacation messages, without removing your previous rules.


Unfortunately, these patches were not included in the code, and the 
patch itself refers to code of 2011


There is no follow-up to this ideas?

Thank you
--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Parsing sieve rules

2012-10-29 Thread Marco Coli

In 0001819  sogo changed his behaviour regarding sieve rules parsing.

This caused a problem in our organization, where a system manager 
prepares and mantains sieve rules for users (enabling 
SOGoSieveScriptsEnabled on a temporary basis).
Most of the time he set SOGoSieveScriptsEnabled to no, avoiding the 
modification of rules directly by the users.


After 0001819 this seems no longer possible, beacause with 
SOGoSieveScriptsEnabled set to no, there is no more sieve rules parsing.


Do you have a workaround or a suggestion for our scenario?

Thank you
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Samba4 conflict with original version

2012-11-14 Thread Marco Coli
I have the same problem, and if I try to remove the conflict packages 
(like libtalloc), half OS wants to de-install itself due to dependencies.


Anyone has suggestions?

Thank you

Il 23/10/2012 11:49, Devinder Singh ha scritto:

Hi,

When I try to install Samba4 on the system I get the below error. I 
have CentOS 6 installed. Can someone guide how I can resolve this 
using Yum cymand?


One way I am aware is to use download the RPM and install through rpm 
-ivh --replacedfiles  samba4-4.0.0beta5-4.centos6.1.x86_64, but I am 
afraid this would be irrevocable and may not perform correctly.


Command :
yum install samba4

Transaction Check Error:
  file /usr/lib64/libtalloc.so.2 from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
libtalloc-2.0.1-1.1.el6.x86_64
  file /usr/lib64/libtdb.so.1 from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
libtdb-1.2.1-3.el6.x86_64
  file /lib64/libnss_winbind.so.2 from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
samba-winbind-clients-0:3.5.10-125.el6.x86_64
  file /usr/lib64/libwbclient.so.0 from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
samba-winbind-clients-0:3.5.10-125.el6.x86_64
  file /usr/bin/net from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
samba-common-0:3.5.10-125.el6.x86_64

.
  file /usr/lib64/pkgconfig/netapi.pc from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
samba-common-0:3.5.10-125.el6.x86_64
  file /usr/bin/nmblookup from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
samba-client-0:3.5.10-125.el6.x86_64


  file /usr/share/man/man1/nmblookup.1.gz from install of 
samba4-4.0.0beta5-4.centos6.1.x86_64 conflicts with file from package 
samba-client-0:3.5.10-125.el6.x86_64



--
Thanks & Regards,
Devinder Singh Birdi


--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Re: Windows client can't join Samba4 domain after adding dcerpc entries into smb.conf

2013-01-23 Thread Marco Coli

Il 18/05/2012 15:54, Alberto Federico Turelli ha scritto:

I forgot to mention that OpenChange provisioning was done just after
installing it.

I am following the documentation, slightly adapting it to my situation
(MySQL backend, Postfix IMAP server) where I already reached the point
of making Outlook users set up a profile and use mail and calendar.

The only missing point to a fully functional domain controller seems
the unavailable RPC server.


I have same issue. Only difference from Alberto is the server platform, 
Centos 6.x in my case, but the problem is the same:


adding Openchange lines to smb.conf cause any domain-related activity on 
the clients fail with


"RPC server not available" message.

It seems like an on/off situation, you can use samba4 with openchange for 
outlook OR you can use samba4 for AD Controller, but not both.

There is no solution to this problem?

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Re: Windows client can't join Samba4 domain after adding dcerpc entries into smb.conf

2013-01-23 Thread Marco Coli

Il 23/01/2013 19:48, Jean Raby ha scritto:

Could you try with these lines instead (notice the + sign):

### Configuration required by OpenChange server ###
dcerpc endpoint servers = +epmapper, +mapiproxy
dcerpc_mapiproxy:server = true
dcerpc_mapiproxy:interfaces = exchange_emsmdb, exchange_nsp, 
exchange_ds_rfr

### Configuration required by OpenChange server ###




Thank you for your answer. I will try asap and I will let you know.
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Re: Windows client can't join Samba4 domain after adding dcerpc entries into smb.conf

2013-01-24 Thread Marco Coli

Il 23/01/2013 19:48, Jean Raby ha scritto:

Could you try with these lines instead (notice the + sign):

### Configuration required by OpenChange server ###
dcerpc endpoint servers = +epmapper, +mapiproxy
dcerpc_mapiproxy:server = true
dcerpc_mapiproxy:interfaces = exchange_emsmdb, exchange_nsp, 
exchange_ds_rfr

### Configuration required by OpenChange server ###




Wonderfu! Now I have again samba4 ad capabilites!
Thank you very much!
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-01-25 Thread Marco Coli

Il 08/11/2012 17:20, Gerhard W. Recher (abuse) ha scritto:

[2012/11/08 17:08:08,  0] MAPIStoreSOGo.m:153(sogo_backend_create_context)
   [SOGo: sogo_backend_create_context:153]
2012-11-08 17:08:08.644 samba[25720] METHOD '+[MAPIStoreContext
openContext:withURI:connectionInfo:andTDBIndexing:]' (227) -- uri:
'gerhard:gerhard@outbox/folderINBOX.Drafts/'
/usr/sbin/samba: Uncaught exception NSInvalidArgumentException, reason:
Tried to add nil to array
[2012/11/08 17:08:08,  0]
mapiproxy/servers/default/nspi/dcesrv_exchange_nsp.c:1394(dcesrv_exchange_nsp_unbind)
   dcesrv_exchange_nsp_unbind


any ideas ?


-- Gerhard

Hi, I have same problem, constantly and repeatedly happening when 
sending mail from Outlook 2010:


2013-01-24 11:01:12.081 samba[30491] METHOD '+[MAPIStoreContext 
openContext:withURI:connectionInfo:andTDBIndexing:]' (227) -- uri: 
'test:test@outbox/folderDrafts/'
2013-01-24 11:01:12.081 samba[30491] returning wrapper: 0x35b8f60; 
object: 0x47d88f8
2013-01-24 11:01:12.082 samba[30491] returning wrapper: 0x4401a90; 
object: 0x2980668
/usr/sbin/samba: Uncaught exception NSInvalidArgumentException, reason: 
Tried to add nil to array

[2013/01/24 11:01:12,  0] ../lib/util/fault.c:72(fault_report)
  ===
[2013/01/24 11:01:12,  0] ../lib/util/fault.c:73(fault_report)
  INTERNAL ERROR: Signal 6 in pid 30491 (4.0.0beta5-4.centos6.1)
  Please read the Trouble-Shooting section of the Samba HOWTO
[2013/01/24 11:01:12,  0] ../lib/util/fault.c:75(fault_report)
  ===
[2013/01/24 11:01:12,  0] ../lib/util/fault.c:144(smb_panic_default)
  PANIC: internal error

Similar when exploring calendar:
[2013/01/25 09:47:03,  0] 
mapiproxy/servers/default/emsmdb/oxcfxics.c:2635(oxcfxics_check_cnset)
  inconsistency: idset range for 'cnset_seen' is referencing a change 
number that has not been issued yet: 1a0 >= 7b

... and panic


Server Platform: CentOS 6.3
All packages from sogo repository, so:
samba4-4.0.0beta5-4.centos6.1.x86_64
sogo-2.0.3a-1.centos6.x86_64
openchange-1.0.0.20121206.sogo-1.centos6.x86_64
openchange-rpcproxy-1.0.0.20121206.sogo-1.centos6.x86_64
openchange-ocsmanager-1.0.0.20121206.sogo-1.centos6.x86_64
and so on

sogo from web is ok, the problem is with outlook 2010, which panics samba4

The environment is in italian language, could this be an office 
localization problems?
I tried everything, restart from scratch with a minimal install with 
nightly packages, all the same.
I use cyrus-imad from years, never a problem, I installed several Sogo 
environments with thunderbird, no problem (the product is very weel 
documented), this is the first installation with outlook, but for me 
openchange/outlook is a living hell!


Some ideas? Thank you.
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-01-25 Thread Marco Coli

Il 25/01/2013 14:12, Julien Kerihuel ha scritto:


In your case, you need to:
 1. use a recent build. This has been fixed long ago in git
 repositories and builds based on samba4 beta5 have been
 deprecated a while ago.
 2. After updating, use the openchange_cleanup.sh script
 available in SOGo
 2. remove your Outlook profile
 3. rerun samba4


Thank you Julien for your detailed and precious indications.
Using nightly builds, which means:

samba4-4.0.1-4.centos6.1.x86_64
sogo-openchange-backend-2.0_20130124-1.centos6.x86_64
openchange-rpcproxy-1.0.0.20130123.sogo-1.centos6.x86_64
openchange-ocsmanager-1.0.0.20130123.sogo-1.centos6.x86_64
openchange-1.0.0.20130123.sogo-1.centos6.x86_64

and after cleaning, finally no more samba panic! I am very, very happy, 
I had to install the system with 40+ clients, and I was quite sure to 
quit the project because of the outlook/openchange problems.
So, we can say that the combination of samba/openchange distributed on 
redhat/CentOS stable repository of sogo is broken.




Your problem is unrelated to the Outlook version getting used. This
being said, Outlook 2012 has not yet been included in our matrix of
compatibility.

For the past few weeks - and while preparing our next forthcoming
release - we have been doing OpenChange dogfooding and have not
experienced any crash or panic but one in SOGo backend which we've
fixed.


Some questions, at this point:
1) the sogo openchange nightly version is fresh enough or you suggest to 
build from source?
2) in this build there is no "openchange_cleanup.sh" script, but I used 
instead "python openchange_cleanup.py  ". It is the same?
3) I noticed that samba log is huge, it seems every tiny outlook event 
is logged with much detail, and now I am only experimenting with a 
client. I am worried about how many lines will be generated with 40 
clients... I will have to buy a san storage only for /var partition! 
There is a way to reduce verbosity, when in production?



Hope it helps.



Indeed! Thank you for your precious tips!

Have a nice day
Marco

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-01-26 Thread Marco Coli

Il 25/01/2013 20:23, Jean Raby ha scritto:

On 13-01-25 1:59 PM, Marco Coli wrote:


and after cleaning, finally no more samba panic! I am very, very happy,
I had to install the system with 40+ clients, and I was quite sure to
quit the project because of the outlook/openchange problems.
So, we can say that the combination of samba/openchange distributed on
redhat/CentOS stable repository of sogo is broken.


this will change (real) soon


I am very glad to read this.


3) I noticed that samba log is huge, it seems every tiny outlook event

is logged with much detail, and now I am only experimenting with a
client. I am worried about how many lines will be generated with 40
clients... I will have to buy a san storage only for /var partition!
There is a way to reduce verbosity, when in production?

What debug level are you using in smb.conf?



Oh, I thought the responsible was openchange and not samba
I am not sure if samba4 has the same directive of samba3 about log 
verbosity... I had no entry in smb.conf, I tried to add, in [global], 
"debug level = 1", restarted samba, and now log seems more than before, 
but a lot of messages are blocks with no date/time information... I need 
to read log for a while to understand better...

However, which debug level do you suggest?

Thank you, have a nice day.
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] OpenChange 2.0 QUADRANT Released!

2013-01-29 Thread Marco Coli

Il 29/01/2013 02:18, Julien Kerihuel ha scritto:

The OpenChange project team is proud to announce the release of
OpenChange 2.0 QUADRANT.




Congrats!
Upgrade from previous release requires particular steps?

Thank you
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-01-29 Thread Marco Coli

Il 25/01/2013 19:59, Marco Coli ha scritto:

Il 25/01/2013 14:12, Julien Kerihuel ha scritto:


In your case, you need to:
 1. use a recent build. This has been fixed long ago in git
 repositories and builds based on samba4 beta5 have been
 deprecated a while ago.
 2. After updating, use the openchange_cleanup.sh script
 available in SOGo
 2. remove your Outlook profile
 3. rerun samba4


Thank you Julien for your detailed and precious indications.
Using nightly builds, which means:

samba4-4.0.1-4.centos6.1.x86_64
sogo-openchange-backend-2.0_20130124-1.centos6.x86_64
openchange-rpcproxy-1.0.0.20130123.sogo-1.centos6.x86_64
openchange-ocsmanager-1.0.0.20130123.sogo-1.centos6.x86_64
openchange-1.0.0.20130123.sogo-1.centos6.x86_64

and after cleaning, finally no more samba panic! I am very, very 
happy, I had to install the system with 40+ clients, and I was quite 
sure to quit the project because of the outlook/openchange problems.
So, we can say that the combination of samba/openchange distributed on 
redhat/CentOS stable repository of sogo is broken.




Today I am in production and I am again with the Panic problem!!!

[2013/01/29 15:48:18,  0] MAPIStoreSOGo.m:154(sogo_backend_create_context)
  [SOGo: sogo_backend_create_context:154]
2013-01-29 15:48:18.418 samba[6466] METHOD '+[MAPIStoreContext 
openContext:withURI:connectionInfo:andTDBIndexing:]' (227) -- uri: 
'utente2:utente2@outbox/folderDrafts/'
2013-01-29 15:48:18.418 samba[6466] returning wrapper: 0x4231340; 
object: 0x2c42e78
2013-01-29 15:48:18.419 samba[6466] returning wrapper: 0x42bf9d0; 
object: 0x1f37978
/usr/sbin/samba: Uncaught exception NSInvalidArgumentException, reason: 
Tried to add nil to array


Those are packages installed:

[root@mail private]# rpm -qa|grep openchange
openchange-ocsmanager-2.0.r3641.sogo-1.centos6.x86_64
openchange-2.0.r3641.sogo-1.centos6.x86_64
openchange-rpcproxy-2.0.r3641.sogo-1.centos6.x86_64
sogo-openchange-backend-2.0_20130129-1.centos6.x86_64
[root@mail private]# rpm -qa|grep sogo
openchange-ocsmanager-2.0.r3641.sogo-1.centos6.x86_64
sogo-slapd-sockd-2.0_20130129-1.centos6.x86_64
openchange-2.0.r3641.sogo-1.centos6.x86_64
sogo-2.0_20130129-1.centos6.x86_64
sogo-tool-2.0_20130129-1.centos6.x86_64
openchange-rpcproxy-2.0.r3641.sogo-1.centos6.x86_64
sogo-openchange-backend-2.0_20130129-1.centos6.x86_64
sogo-ealarms-notify-2.0_20130129-1.centos6.x86_64
[root@mail private]# rpm -qa|grep sope
sope49-gdl1-4.9-20130129_1664.el6.1.x86_64
sope49-gdl1-postgresql-4.9-20130129_1664.el6.1.x86_64
sope49-sbjson-2.3.1-20130129_1664.el6.1.x86_64
sope49-xml-4.9-20130129_1664.el6.1.x86_64
sope49-ldap-4.9-20130129_1664.el6.1.x86_64
sope49-cards-2.0_20130129-1.centos6.x86_64
sope49-core-4.9-20130129_1664.el6.1.x86_64
sope49-mime-4.9-20130129_1664.el6.1.x86_64
sope49-appserver-4.9-20130129_1664.el6.1.x86_64
sope49-gdl1-contentstore-2.0_20130129-1.centos6.x86_64

samba4-4.0.1-4.centos6.1.x86_64


I tried to create a brand new user, ok via web and all other features, 
samba panic as soon as I send a mail. The mail appears in outlook sent 
not in imap sent.


The only difference with the test machine I used before are:
1) New nigthly packages (are there bugs??)
2) realm now different intranet..local  (instead of .test 
like it was on test machine)


I am stuck now...
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-01-30 Thread Marco Coli

Il 29/01/2013 19:14, Ludovic Marcotte ha scritto:

On 29/01/13 09:54, Marco Coli wrote:
/usr/sbin/samba: Uncaught exception NSInvalidArgumentException, 
reason: Tried to add nil to array 
Install the SOGo/SOPE/GNUstep debugging packages, run samba inside gdb 
using a single process, set a breakpoint on 'raise' and produce a nice 
looking stacktrace.




Ok, I'll provide this data asap
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-02-05 Thread Marco Coli

Il 29/01/2013 19:14, Ludovic Marcotte ha scritto:

On 29/01/13 09:54, Marco Coli wrote:
/usr/sbin/samba: Uncaught exception NSInvalidArgumentException, 
reason: Tried to add nil to array 
Install the SOGo/SOPE/GNUstep debugging packages, run samba inside gdb 
using a single process, set a breakpoint on 'raise' and produce a nice 
looking stacktrace.




Sorry for late answer. Unfortunately I have very little time in this month.
I finally manage to solve the problem. I discovered that there was an 
authentication problem for that user in the cyrus imapd service. The 
openchange message "Uncaught exception NSInvalidArgumentException, 
reason: Tried to add nil to array" was not helping in finding the real 
problem, but the cyrus log was.

My fault.

Anyway, I found a litte dangerous that in situations like that one, 
samba dies, leaving the whole AD infrastracture upside-down.


Now I am testing, before to go to production, the environment, and I did 
find that is quite easy to create a problem in openchange and cause 
samba to die.
For example, a few minute ago I create a new user, create an outlook 
profile, all ok. then

1) I create a new folder "Test" in web
2) Sync outlook, Test appears as expeceted
3) Create a Subfolder of Test, named Test1 via web
4) Sync outlook, no test1 appears. The same closing and restarting
5) play a litte moving one message back and forth via web from test an 
test1. No change in Outlook (i see the message when in test, not being 
able to see test1)

6) create a new subfolder ot test, named test2, in outlook.
7) after first sync, outlook crashes and samba panic.
In 5 minute I created a system crisis!
I had to close outlook, clean the oc user, restart samba, and recreate 
local outlook profile


The main problem, for me of course, is that a problem with a user 
paralizes the whole infrastracture.






--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-02-05 Thread Marco Coli

Il 05/02/2013 15:12, Sven Tegethoff ha scritto:


Unfortunately, my experiments with Outlook 2010 aren't really promsing 
either.  The nice folks at inverse have upated their packages to sama 
4.0.1 and openchange 2.0 - and the good news is that quite a few bugs 
seem to have been fixed. The bad news is, all that means in my test 
case is that it takes a few seconds longer to crash, and it now does 
so in a different context :)




Sorry to add bad news, but my tests continue and the results are very 
sad...


Trying to move a bunch of mail from existing pop account to new 
openchange one cause other panics after some messages:


Feb 05 15:35:37 samba [2462]: 
 METHOD 
'-[MAPIStoreMessage saveMessage]' (493)
2013-02-05 15:35:37.627 samba[2462] NGMimeMultipartBodyGenerator.m:237  
Assertion failed in NGMimeMessageMultipartBodyGenerator(instance), 
method generateBodyOfPart:additionalHeaders:delegate:.  
NGMimeMultipartBodyGenerator expect a NGMimeMultipartBody as body of part
 part: attachment; "content-type" = "multipart/signed"; } 
bodyClass=NSDataMalloc body[len=678370]>
/usr/sbin/samba: Uncaught exception NSInternalInconsistencyException, 
reason: NGMimeMultipartBodyGenerator.m:237  Assertion failed in 
NGMimeMessageMultipartBodyGenerator(instance), method 
generateBodyOfPart:additionalHeaders:delegate:.  
NGMimeMultipartBodyGenerator expect a NGMimeMultipartBody as body of part
 part: attachment; "content-type" = "multipart/signed"; } 
bodyClass=NSDataMalloc body[len=678370]>


[2013/02/05 15:35:37,  0] ../lib/util/fault.c:72(fault_report)
  ===
[2013/02/05 15:35:37,  0] ../lib/util/fault.c:73(fault_report)
  INTERNAL ERROR: Signal 6 in pid 2462 (4.0.1-4.centos6.1)
  Please read the Trouble-Shooting section of the Samba HOWTO
[2013/02/05 15:35:37,  0] ../lib/util/fault.c:75(fault_report)
  ===
[2013/02/05 15:35:37,  0] ../lib/util/fault.c:144(smb_panic_default)
  PANIC: internal error


--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-02-05 Thread Marco Coli

Il 05/02/2013 16:23, Ludovic Marcotte ha scritto:

On 05/02/13 10:15, Marco Coli wrote:
Sorry to add bad news, but my tests continue and the results are very 
sad...


Trying to move a bunch of mail from existing pop account to new 
openchange one cause other panics after some messages: 


These mails would likely break in SOGo itself too (the webmail 
interface). Identify them and file a bug report for them.





I can assure you is not the case.
I eventually deleted the openchange account on the outlook client, I did 
an imap account pointing to the same server, and I transfered all mails 
(a few thousands, in some folders) to the server in a fraction of time I 
was experimenting with the oc mapi account.

Now I have the mail visible in sogo (web) as well, as expected.

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-02-05 Thread Marco Coli
Thank you for your answer. Please remind my critics are intented for a 
better product.


Il 05/02/2013 16:28, Julien Kerihuel ha scritto:
Initially the abort() cases - that causes samba to die on purpose - 
were restricted to a very limited set of cases and situations that 
"should not or could not happen". This was used as a safety guard when 
we reached leaves of the graph. We almost never reach these cases 
anymore. This model however got extended to less critical paths for 
development convenience but introduced the side effects you 
unfortunately experienced. We can fix this easily: 1. chase the 
abort() used in non critical paths and remove/replace them with 
termination or error code + add more logging. 2. Rework the logging so 
you can identify where the problem initially lies and helps reporting 
issues in a way that is relevant both for you and OpenChange/SOGo. In 
this case, one's feature may not be working but that won't impact the 
overall system and still provide a way to find the cause. 


Ok, I am looking forward to see these changes. Strange, however, you did 
not reach cases like mine, I did find them continously.


Unfortunately, the Sogo/OC project at this company has been stopped 
beacuse of these dead ends. For now we will use imap/sogoweb/mobiles. 
For the time being, we will try some caldav/carddav extensions to 
outlook ($), I will propose to switch to thunderbird. But I really look 
forward to see improvements in OpenChange, in the future I will 
certainly need this.


I do not blame anyone but me. I should have tested better the 
environment, but time was limited, and I had faith in sogo, provided 
several previous success story I implemented in different companies 
(from 10 to 40/50 clients with sogo/mobile/thunderbird/funanmbol), but 
this was the first one with outlook mapi integration.


4) is a known issue for quite some time. OpenChange has the 
infrastructure to fix this bug but SOGo wasn't using it yet. This is 
something afaik they are working on this for next release. This being 
said - and from my experience - I'm doubtful on the relevance of tests 
mixing Outlook and web interface. I don't argue on the path to abort() 
that needs to be less pedantic - we agreed on this - but generally 
users either use Outlook or web interface, not both at the same time. 
Kind Regards, Julien. 


I disagree. I have a lot of people in this company which use Outlook at 
work, web at home or outside the company, mobile, and they expect to 
create folders and manipulate their data wherever they can reach them.

I did not know there was this issue. Is that documented, and I did miss it?

Thank you for your efforts, I will continue to follow, as a user and a 
consultant, the project of openchange, and I will report my on-the-field 
experience (this time only in testing environment!!)



--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] samba dies with outlook 2012 [and 2010]

2013-02-05 Thread Marco Coli

Il 05/02/2013 16:56, Julien Kerihuel ha scritto:


Quick pointer that *may help* solving the problem: Did you clean up
socfs table for the user within the postgresql/mysql database?




Oh, yes I did! Everytime I repeated all cleaning steps with attention. 
(my db is postgres)

--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] SOGo Sieve Question

2013-08-12 Thread Marco Benecke

Hi,

it seems i found a sieve Issue, but i am not sure.
Maybe you could confirm this.

Version:
ii  sogo 2.0.7-1

Settings:
:~# sogo-tool dump-defaults all|grep -i sieve
SOGoSieveScriptsEnabled = YES;
SOGoSieveServer = "sieve://198.19.219.18:4190";

I managed my Mails in Subfolders:
lists
  |
  +--- SOGo Users
  |
  +--- and so on

Now i try to set a sieve filter, with the WebInterface.
Result in the sogo.sieve:

if anyof (header :contains "List-Id" "users.sogo.nu", header :contains 
"subject" "[SOGo]") {

fileinto "lists/SOGo";
}

LogMessage:
sieve: info: started log at Aug 12 11:27:20.
error: msgid=<...>: failed to store into mailbox 'lists/SOGo': Invalid 
mailbox name.

sieve: info: started log at Aug 12 11:46:41.
error: msgid=<...>: failed to store into mailbox 'lists/SOGo': Invalid 
mailbox name.


proper sieve rule:
if anyof (header :contains "List-Id" "users.sogo.nu", header :contains 
"subject" "[SOGo]") {

fileinto "lists.SOGo";
}

Did i miss a configuration option or is this a small Bug.

fine Regards
Marco B.

--
www.marcobenecke.de
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] public Calendarname

2014-05-19 Thread Marco Sturm
The calendar is a resource and was created with ldifde. How can I change 
the name of the calendar without me to log in as this resource?


cheers,
Marco

On 15.05.2014 18:52, Uwe Koch wrote:

Yep,

go to your web server page, access the user account and from inside,
click on calendar, Kalender or whichever name you are using on your
translation, click on the configuration icon (probably a gear) and then
tab on the new calendar tag, giving a choosen name (name to show). You
can later click on that name if you want to make it default.

Regards,

El 15/05/14 05:27, marco.st...@gameduell.de escribió:

Hi

is there a way to set or change the default name who is created (now it is
personal Calendar)?

thanks,
Marco


--

Uwe Koch Kronberg
Enrique Koch y Cía. Ltda.
Fono: + 56 32 2543464
Fax: + 56 32 2543465
Cel: + 56 9 87177837
Skype: uwe.koch.k
E-mail:uwe.k...@opticakoch.cl <mailto:uwe.k...@opticakoch.cl>

La información contenida en este mensaje puede ser privada, confidencial
y estar protegida contra la divulgación. Si el lector de este mensaje no
es el receptor que se intentó contactar o un trabajador o interlocutor
responsable de entregar este mensaje al receptor que se intentó
contactar, usted está siendo notificado que cualquier propagación,
distribución o copia de esta comunicación está estrictamente prohibida.
Si ha recibido esta comunicación por error, por favor, notifíquenos de
inmediato respondiendo este mensaje y eliminándolo de su computador.


--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-27 Thread marco ardito

Hi,

I'm learning all about SOGo, and I've been able to setup two different 
working scenarios (local LDAP / lan AD), and I'm quite happy with what I 
see, but I have a slight but noticeable slow behaviour of the web 
interface, comapred to online demo... and I cant find what is causing 
it, and then... how to solve. :)


about hardware:
* the sogo server is a kvm virtual machine
* hypervisor is proxmox running on IBM x3650M2 nodes
* nodes have Intel(R) Xeon(R) CPU  E5520  @ 2.27GHz (2x) and 20GB RAM each.
* vm has
- 2GB RAM,
- 1 cpu/4 cores,
- virtio LAN, virtio storage
- vm storage is iSCSI (1GB eth)

about software:
* the base system is debian 7.5
* sogo 2.2.3-1
* postfix 2.9.6-2
* dovecot 2.1.17-2
* openldap 2.4.31-1+nmu2
* apache 2.2.22-13+deb7u1
* mysql-server 5.5.37-0+wheezy1

As I said, I have two working setup
setup A: sogo & dovecot authenticate on lan AD server (w2003)
setup B: sogo & dovecot authenticate on local slapd server (JohnDoe/JohnDoe)

Both work (even it took me a while to figure out how to ;D) but I feel 
that the mail section is kinda slow, opening the voarious folders takes 
a few seconds, maybe 2-3. Not something unusable but... feels 
sluggish... I also tried to enable auth_cache_size and auth_cache_ttl, 
fearing there could be some auth delay, but nothing changed.


So I tried online demo, and I noticed that was less "slow" than mine, 
local vm! In particular, switching from one mail folder to another takes 
less than a second, on the online demo, much less than my local install...?


I wondered what it could be the reason but ended up downloading the ZEG 
appliance, and created another vm with identical hardware (same network 
storage box but on NFS, since iSCSI is block storage and can't hold vmdk 
images)


well, this is snappy at least as the online demo, if not more (probably 
obviously)! So, I guess that my fears of a slow access to vm disk due to 
hypervisor are out of game here... I noticed that ZEG appliances has 
Cyrus instead of Dovecot, so I am not able to check different settings 
from my install...


Since I'm a noob on this system, can anyone point me to what can bring 
me those snappy mail performances?


Any help would be greatly appreciated, thanks!
Feel free to ask me more info & tests...

Marco
--
*Marco*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-27 Thread marco ardito

Il 27/05/2014 14:57, heupink ha scritto:

Since I'm a noob on this system, can anyone point me to what can
bring me those snappy mail performances?

Any help would be greatly appreciated, thanks! Feel free to ask me
more info & tests...

Well, I'm no expert at all, but does it feel the same if you connect a
real imap or another webmail client? (apt-get install roundcube, for 
example)


MJ


Thanks for the suggestion, I thought to try webmail systems (perhaps 
later) but given that the default is "fast" in the ZEG appliance, also 
on my local vm, I would like to understand what is wrong in my setup, 
first... are you using (or suggesting as better choice) roundcube 
instead of the SOGo webmail?


Thanks,
--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-27 Thread marco ardito

Il 27/05/2014 15:59, heupink ha scritto:

Thanks for the suggestion, I thought to try webmail systems (perhaps
later) but given that the default is "fast" in the ZEG appliance, also
on my local vm, I would like to understand what is wrong in my setup,
first... are you using (or suggesting as better choice) roundcube
instead of the SOGo webmail?

Nope. We like the SOGo webmail a lot. :-)
(though we offer roundcube too, and in fact: even squirrelmail)

I suggested a regular imap client, so see if your complete imap system 
is slow, or if just imap through SOGo is somehow slow.


OK. well, in the mean while I managed to install roundcube (1.0.1)

I can login both of my setups.
I have no reference as in the sogo webmail online demo, but it feels 
also "slowish"
more or less, on this roundcube I see similar lags moving between mail 
folders... well, not only mail folders but nearly everything, fwiw.


could it be dovecot? is it better cyrus, or else?
is there any "benchmark" (ie: timed command) I can issue to test if ldap 
is acting slow, or else?


Thanks,
--
*Marco*



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-27 Thread marco ardito

Il 27/05/2014 17:11, heupink ha scritto:

is acting slow, or else?

is there any "benchmark" (ie: timed command) I can issue to test if ldap
Sogo.log tells you for many commands how long they took to complete. 
And I don't think a slower ldap would 'slow down' your imap folders.


MJ


Thx all :D

Sogo.log

here are last lines whan switching from Inbox to Trash...
192.168.3.22 - - [27/May/2014:17:47:44 GMT] "POST 
/SOGo/so/ardito/Mail//0/folderINBOX/uids HTTP/1.1" 200 28/46 2.648 - - 0
192.168.3.22 - - [27/May/2014:17:47:52 GMT] "POST 
/SOGo/so/ardito/Mail/0/folderTrash/unseenCount HTTP/1.1" 200 13/0 2.085 
- - 0
192.168.3.22 - - [27/May/2014:17:47:52 GMT] "POST 
/SOGo/so/ardito/Mail//0/folderTrash/uids HTTP/1.1" 200 386/28 2.127 1124 
65% 0


Are those float near the line end, seconds? Because that could likely be 
the lag I experiment...2-3 seconds. need more lines?


Then, here some conf files I have atm (keep in mind that is just a test 
install, lots of details are just tests. and I disabled any SSL I found, 
for now)


/etc/dovecot/local.conf:

disable_plaintext_auth = no
log_path = /var/log/dovecot.message
log_timestamp = "%Y-%m-%d %H:%M:%S "
mail_location = maildir:/var/mail/%u
mail_privileged_group = mail
mail_uid = vmail
mail_gid = vmail
auth_cache_size=5 M
auth_cache_ttl=3600
passdb {
  args = /etc/dovecot/dovecot-ldap.conf
  driver = ldap
}
passdb {
  driver = pam
}
protocols = imap
service auth {
  unix_listener auth-master {
group = vmail
mode = 0600
user = vmail
  }
  unix_listener auth-userdb {
user = vmail
  }
  user = root
}
userdb {
  args = /etc/dovecot/dovecot-ldap.conf
  driver = ldap
}
userdb {
  driver = passwd
}
protocol lda {
  hostname = oc.local
  log_path = /var/log/dovecot.message
  postmaster_address = postmaster@oc.local
}

protocol pop3 {
  pop3_uidl_format = %08Xu%08Xv
}

/etc/dovecot/dovecot-ldap.conf (setup "B", eg: local openldap)
===
uris = ldap://localhost:389
dn = cn=admin,dc=oc,dc=local
dnpass = openchange
tls = no
ldap_version = 3
base = dc=oc,dc=local
scope = subtree
user_attrs = homeDirectory=home,uidNumber=uid,gidNumber=gid
user_filter = (uid=%u)
pass_attrs = uid=user,userPassword=password
pass_filter = (uid=%u)

apache (/etc/apache2/conf.d/SOGo.conf)
==
Alias /SOGo.woa/WebServerResources/ \
  /usr/lib/GNUstep/SOGo/WebServerResources/
Alias /SOGo/WebServerResources/ \
  /usr/lib/GNUstep/SOGo/WebServerResources/


AllowOverride None
Order deny,allow
Allow from all

# Explicitly allow caching of static content to avoid browser 
specific behavior.
# A resource's URL MUST change in order to have the client load the 
new version.


  ExpiresActive On
  ExpiresDefault "access plus 1 year"



## Uncomment the following to enable proxy-side authentication, you will 
then
## need to set the "SOGoTrustProxyAuthentication" SOGo user default to 
YES and

## adjust the "x-webobjects-remote-user" proxy header in the "Proxy" section
## below.
#
#  AuthType XXX
#  Require valid-user
#  SetEnv proxy-nokeepalive 1
#  Allow from all
#

ProxyRequests Off
SetEnv proxy-nokeepalive 1
ProxyPreserveHost On

# When using CAS, you should uncomment this and install 
cas-proxy-validate.py

# in /usr/lib/cgi-bin to reduce server overloading
#
# ProxyPass /SOGo/casProxy http://localhost/cgi-bin/cas-proxy-validate.py
# http://localhost/app/cas-proxy-validate.py>
#   Order deny,allow
#   Allow from your-cas-host-addr
# 

ProxyPass /SOGo http://127.0.0.1:2/SOGo retry=0

# Enable to use Microsoft ActiveSync support
# Note that you MUST have many sogod workers to use ActiveSync.
# See the SOGo Installation and Configuration guide for more details.
#
#ProxyPass /Microsoft-Server-ActiveSync \
# http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync \
# retry=60 connectiontimeout=5 timeout=360

http://127.0.0.1:2/SOGo>
## adjust the following to your configuration
#  RequestHeader set "x-webobjects-server-port" "443"
#  RequestHeader set "x-webobjects-server-name" "192.168.3.10"
#  RequestHeader set "x-webobjects-server-url" "https://192.168.3.10";
  RequestHeader set "x-webobjects-server-port" "80"
  RequestHeader set "x-webobjects-server-name" "192.168.3.10"
  RequestHeader set "x-webobjects-server-url" "http://192.168.3.10";

## When using proxy-side autentication, you need to uncomment and
## adjust the following line:
#  RequestHeader set "x-webobjects-remote-user" "%{REMOTE_USER}e"

  RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"

  AddDefaultCharset UTF-8

  Order allow,deny
  Allow from all


# For Apple autoconfiguration

  Rewr

Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-28 Thread marco ardito

Il 27/05/2014 18:07, Martin Simovic ha scritto:

What are these lines for?


passdb {
  driver = pam
}



userdb {
  driver = passed
}


...I struggled to figure out, remember from where i copy/pasted that 
config, without success. but I am quite sure it was an example somewhere.
anyway, atm I barely understand configs for everything in sogo & 
backends (ldap connection was easier, as I aready used it a few times, 
elsewhere)


now that I see it, and seeing web references, it seems that "driver = 
passed" was a "driver = passwd" with a typo?
I didn't noticed that yet, since it was all "working", except the lag, 
so I tried to understand what was affecting the ui performance.


I could try to remove or correct those lines, if anyone suggest me, but 
I am so new to dovecot that I could help a good tutorial, perhaps, to 
understand the underlying complexity. wiki docs seemed a bit scaring, at 
first. I would love to RTFM, if there is one (it was planned, just later).


Thanks,
Marco


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  � destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-28 Thread marco ardito

Il 28/05/2014 13:16, Martin Simovic ha scritto:
Namely, I don’t think you really use passdb pam or userdb passwd. 
These lookups leading to nonexistent configuration will fail silently 
but slow down your system considerably.


I removed tho se section, restarted dovecot, but sogo, but the lag is 
still there :(
btw, you're right that using unknown config is wrong, as I said I tried 
to follow overall sogo examples just to see if I could make it work, and 
this is just my sogo test/learn environment, so I don't care much about 
breaking up things, I just wished to have a somewhat working system to 
learn. the lag was just my first stop.


here are the log lines after a fresh login:

May 28 15:09:56 sogod [20041]: SOGoRootPage successful *login *from 
'192.168.3.22' for user 'ardito' - expire = -1  grace = -1
192.168.3.22 - - [28/May/2014:15:09:56 GMT] "POST /SOGo/connect 
HTTP/1.1" 200 27/69 0.013 - - 0
192.168.3.22 - - [28/May/2014:15:09:56 GMT] "GET /SOGo/so/ardito 
HTTP/1.1" 302 0/0 0.003 - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "GET /SOGo/so/ardito/view 
HTTP/1.1" 302 0/0 0.003 - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "GET 
/SOGo/so/ardito/Calendar HTTP/1.1" 302 0/0 0.003 - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "GET 
/SOGo/so/ardito/Calendar/view HTTP/1.1" 200 13134/0 0.069 47761 72% 672K
May 28 15:09:57 sogod [20022]: [ERROR] <0x0xb8280600[WOWatchDog]> No 
child available to handle incoming request!
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "POST 
/SOGo/so/ardito/Calendar/personal/canAccessContent HTTP/1.1" 204 0/0 
0.007 - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "POST 
/SOGo/so/ardito/Calendar/alarmslist?browserTime=1401282597 HTTP/1.1" 200 
2/0 0.008  - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "POST 
/SOGo/so/ardito/Calendar/eventslist?asc=true&sort=start&day=&filterpopup=view_today  
HTTP/1.1" 200 532/0 0.012 - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "POST 
/SOGo/so/ardito/Calendar/taskslist?show-completed=0&asc=true&sort=end 
HTTP/1.1" 200  2/0 0.007 - - 0
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "POST 
/SOGo/so/ardito/Calendar/weekview HTTP/1.1" 200 2162/0 0.024 45090 95% 40K
192.168.3.22 - - [28/May/2014:15:09:57 GMT] "POST 
/SOGo/so/ardito/Calendar/eventsblocks?sd=20140526&ed=20140601&view=weekview 
HTTP/1. 1" 200 868/0 0.008 - - 44K
192.168.3.22 - - [28/May/2014:15:10:01 GMT] "GET 
/SOGo/so/ardito/Contacts HTTP/1.1" 302 0/0 0.003 - - 0
192.168.3.22 - - [28/May/2014:15:10:01 GMT] "GET 
/SOGo/so/ardito/Contacts/view HTTP/1.1" 200 7585/0 0.043 23963 68% 48K
192.168.3.22 - - [28/May/2014:15:10:01 GMT] "POST 
/SOGo/so/ardito/Contacts/personal/canAccessContent HTTP/1.1" 204 0/0 
0.003 - - 0
192.168.3.22 - - [28/May/2014:15:10:01 GMT] "POST 
/SOGo/so/ardito/Contacts/directory/canAccessContent HTTP/1.1" 204 0/0 
0.003 - - 0
192.168.3.22 - - [28/May/2014:15:10:01 GMT] "POST 
/SOGo/so/ardito/Calendar/alarmslist?browserTime=1401282601 HTTP/1.1" 200 
2/0 0.005  - - 0
192.168.3.22 - - [28/May/2014:15:10:06 GMT] "GET /SOGo/so/ardito/Mail 
HTTP/1.1" 302 0/0 0.003 - - 0
192.168.3.22 - - [28/May/2014:15:10:08 GMT] "GET 
/SOGo/so/ardito/Mail/view HTTP/1.1" 200 10006/0 *2.447* 34694 71% 0  
===slow operation ===
192.168.3.22 - - [28/May/2014:15:10:09 GMT] "POST 
/SOGo/so/ardito/Calendar/alarmslist?browserTime=1401282609 HTTP/1.1" 200 
2/0 0.005  - - 0
192.168.3.22 - - [28/May/2014:15:10:11 GMT] "POST 
/SOGo/so/ardito/Mail/0/mailboxes HTTP/1.1" 200 534/0*2.758* - - 0  
===slow operation ===
192.168.3.22 - - [28/May/2014:15:10:12 GMT] "POST 
/SOGo/so/ardito/Mail/foldersState HTTP/1.1" 200 48/0 0.004 - - 0
192.168.3.22 - - [28/May/2014:15:10:14 GMT] "POST 
/SOGo/so/ardito/Mail/0/folderINBOX/unseenCount HTTP/1.1" 200 13/0*2.207* 
- - 0 ===slow operation ===
192.168.3.22 - - [28/May/2014:15:10:23 GMT] "POST 
/SOGo/so/ardito/Mail/0/folderDrafts/unseenCount HTTP/1.1" 200 13/0 
*2.312* - - 0 ===slow operation ===
192.168.3.22 - - [28/May/2014:15:10:23 GMT] "POST 
/SOGo/so/ardito/Mail//0/folderDrafts/uids HTTP/1.1" 200 634/28*2.350* - 
- 0 ===slow operation ===


I've stressed the lines with the lag, with "===slow operation ===".
Do they make sense?  What can cause that, how to debug the slowness? 
dovecot logs?
In the meanwhile I'll dig into dovecot 'delivery' methods and options... 
it's just a bit overwhelming...

I'm sort of used to this, but it will take time... ;)

any help, much appreciated

Marco







--

Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-28 Thread marco ardito
b168[NGLdapAttribute]> 
could not convert value of sIDHistory to string
2014-05-28 15:48:40.999 sogod[21017] WARNING: IMAP4 connection pooling 
is disabled!
2014-05-28 15:48:43.031 sogod[21017] Note(NGImap4Connection): using '/' 
as the IMAP4 folder separator.
192.168.3.22 - - [28/May/2014:15:48:43 GMT] "GET 
/SOGo/so/ardito/Mail/view HTTP/1.1" 200 10006/0 2.352 34694 71% 1M
192.168.3.22 - - [28/May/2014:15:48:43 GMT] "POST 
/SOGo/so/ardito/Calendar/alarmslist?browserTime=1401284923 HTTP/1.1" 200 
2/0 0.008 - - 0
2014-05-28 15:48:43.645 sogod[21016] WARNING: IMAP4 connection pooling 
is disabled!
2014-05-28 15:48:46.244 sogod[21016] Note(NGImap4Connection): using '/' 
as the IMAP4 folder separator.
192.168.3.22 - - [28/May/2014:15:48:46 GMT] "POST 
/SOGo/so/ardito/Mail/0/mailboxes HTTP/1.1" 200 534/0 2.764 - - 408K
192.168.3.22 - - [28/May/2014:15:48:46 GMT] "POST 
/SOGo/so/ardito/Mail/foldersState HTTP/1.1" 200 48/0 0.003 - - 0
192.168.3.22 - - [28/May/2014:15:48:48 GMT] "POST 
/SOGo/so/ardito/Mail/0/folderINBOX/unseenCount HTTP/1.1" 200 13/0 1.553 
- - 0

===

where I experiment the lag, and those timings of 2-3 seconds appear...

hope this sheds some more light...

Marco



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-29 Thread marco ardito
ion=
2014-05-29 16:29:23 imap(ardito): Info: Disconnected: Logged out in=51 
out=498

2014-05-29 16:29:23 auth: Debug: auth client connected (pid=25391)
2014-05-29 16:29:23 auth: Debug: client in: AUTH1   PLAIN   
service=imapsecured session=YupcwYr6YgB/AAABlip=127.0.0.1   
rip=127.0.0.1   lport=143   rport=40290 resp=
2014-05-29 16:29:23 auth-worker(25377): Debug: pam(ardito,127.0.0.1): 
lookup service=dovecot
2014-05-29 16:29:23 auth-worker(25377): Debug: pam(ardito,127.0.0.1): 
#1/1 style=1 msg=Password:
2014-05-29 16:29:25 auth-worker(25377): Info: pam(ardito,127.0.0.1): 
pam_authenticate() failed: Authentication failure (password mismatch?)
2014-05-29 16:29:25 auth: Debug: 
cache(ardito,127.0.0.1,): hit:   user=ardito

2014-05-29 16:29:25 auth: Debug: client passdb out: OK  1   user=ardito
2014-05-29 16:29:25 auth: Debug: master in: REQUEST 3315073025  
25391   1   5b2b45f82074db122b4ac3b96e40d290
2014-05-29 16:29:25 auth: Debug: 
userdb-cache(ardito,127.0.0.1,): miss
2014-05-29 16:29:25 auth-worker(25377): Debug: passwd(ardito,127.0.0.1): 
lookup
2014-05-29 16:29:25 auth-worker(25377): Info: passwd(ardito,127.0.0.1): 
unknown user
2014-05-29 16:29:25 auth: Debug: 
userdb-cache(ardito,127.0.0.1,): hit: ardito 
mail=maildir:/var/mail/ardito
2014-05-29 16:29:25 auth: Debug: master userdb out: USER
3315073025  ardito  mail=maildir:/var/mail/ardito
2014-05-29 16:29:25 imap-login: Info: Login: user=, 
method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, mpid=25395, secured, 
session=
2014-05-29 16:29:25 imap(ardito): Info: Disconnected: Logged out in=91 
out=548
2014-05-29 16:30:07 master: Warning: Killed with signal 15 (by pid=25462 
uid=0 code=kill)


Thanks,
Marco



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] new to SOGo, have slowish webmail interface, need help...

2014-05-29 Thread marco ardito

I found it!!

it was in
/etc/dovecot/conf.d/auth-system.conf.ext

by default has this enabled... and tries (failing) it before ldap, of 
course.

passdb {
  driver = pam
}

now I have much better timing  ~

192.168.3.22 - - [29/May/2014:17:17:41 GMT] "GET /SOGo/so/ardito/Mail 
HTTP/1.1" 302 0/0 0.002 - - 4K
192.168.3.22 - - [29/May/2014:17:17:41 GMT] "GET 
/SOGo/so/ardito/Mail/view HTTP/1.1" 200 10006/0 0.337 34694 71% 3M
192.168.3.22 - - [29/May/2014:17:17:42 GMT] "POST 
/SOGo/so/ardito/Calendar/alarmslist?browserTime=1401376662 HTTP/1.1" 200 
2/0 0.004 - - 0
192.168.3.22 - - [29/May/2014:17:17:42 GMT] "POST 
/SOGo/so/ardito/Mail/0/mailboxes HTTP/1.1" 200 534/0 0.173 - - 0
192.168.3.22 - - [29/May/2014:17:17:42 GMT] "POST 
/SOGo/so/ardito/Mail/foldersState HTTP/1.1" 200 48/0 0.017 - - 0
192.168.3.22 - - [29/May/2014:17:17:42 GMT] "POST 
/SOGo/so/ardito/Mail/0/folderINBOX/unseenCount HTTP/1.1" 200 13/0 0.212 
- - 0


Thanks all,
Marco




---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]

--
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] sogo web ui: can a user search all of his mail folders for custom text?

2014-05-29 Thread marco ardito

Hi all,

I was wondering if there's any way to enable a way for users to search 
their email from gui?
More or less what thunderbird allows... it could be there but I can't 
find it... ?

I see only a "filter" on upper right  that acts on the current folder,

Anybody knows if it's there, or it could be enabled, or even added, if 
missing?


Thanks,
--
*Marco*



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] sogo web ui: can a user search all of his mail folders for custom text?

2014-05-30 Thread marco ardito

Il 30/05/2014 02:07, Ludovic Marcotte ha scritto:

On 2014-05-29, 1:09 PM, marco ardito wrote:
Anybody knows if it's there, or it could be enabled, or even added, 
if missing?

That feature is not yet available.



urgh... this is a bit a showstopper for me...
although desktop client can be a workaround...

and, is it on a roadmap?

Thanks,
--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Very big problem with reply with attachment

2014-06-05 Thread marco ardito

Il 04/06/2014 19:19, Ludovic Marcotte ha scritto:

On 2014-06-04, 1:08 PM, Albert Shih wrote:

Because many of my users don't take a close look about what is on the
screen, and sooner or later we going to have a big problem (sending 
private

document to mailing-list/etc.)
Note that for this to happen, the message in the draft folder must of 
course have an attachment. Moreover and more importantly, it must have 
the same unique message identifier (IMAP UID) as the message in the 
folder where the reply has been initiated. These two combined made 
this bug unnoticed for more than 3 years.




sorry, what it means "we no longer try to include attachments when 
replying to a mail", in the commit "Don't try to add attachments during 
reply operations" ? I tried to look at the code, but...

--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] about default conf files, sogo setup

2014-06-09 Thread marco ardito


Hi,
I'm still learning sogo, I'm a bit confused.

in the install docs I read
</etc/sogo/sogo.conf, while the users preferences are confgurable by the 
user and stored in SOGo's database.>>


in /etc/sogo/sogo.conf I read
<< ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this 
file,  make sure to move it away to avoid unwanted parameter overrides.>>


in many "other guides" (like 
http://www.openchange.org/cookbook/backends/sogo/index.html) I can find
<openchange user):|

$ defaults write sogod SOGoTimeZone "Europe/Paris" |
...
>>
At first, I followed those guides, also because I thought they were a 
"good basic setup", and issued those "defaults write" commands.
those values were created  in the XML file 
(~sogo/GNUstep/Defaults/.GNUstepDefaults)


now I try to recap, and I'm ready to even restart from scratch:

- is it better to use only /etc/sogo/sogo.conf?
- should then I move all values created in the XML file into 
/etc/sogo/sogo.conf and then delete the XML file?
- should I avoid to issue any "defaults write" command in the future, 
and directly write my conf in the .conf file?
- reading "domains preferences" in the docs, which "domain" is exactly 
referring to? mail domain? auth domain? both?
- in any case, may I have more of each "domains" configured 
concurrently? or, how can I set "domain specific" settings in sogo 
configurations? I see "domain specific" configs, in the docs, but how to 
bind them to a "domain" or "another"?
- how can users select different domains, or be enforced to one specific 
(eg: based on their user email, or user config)?


I suspect there is a nice clear example somewhere, but I can't find it. 
That's also why I tried to follow "other guides" to learn...


Any help, tip, hint appreciated, Thanks.

--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] unable to add attachment to any reply, compose new works

2014-06-12 Thread marco ardito

Il 12/06/2014 14:05, mourik jan heupink ha scritto:
We're seeing this since 2.2.5: we are unable to add attachments to a 
reply in /SOGo. Attachments only work with _new_ emails.

Is anyone else seeing this?


It's been disabled.
see the above thread "Very big problem with reply with attachment"

Marco



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]

--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Very big problem with reply with attachment

2014-06-13 Thread marco ardito

Il 05/06/2014 13:39, Ludovic Marcotte ha scritto:

On 2014-06-05, 3:23 AM, marco ardito wrote:
sorry, what it means "we no longer try to include attachments when 
replying to a mail", in the commit "Don't try to add attachments 
during reply operations" ? 
It's quite obvious, attachments shouldn't be added to a reply 
operation in the first place.




Sorry, I don't understand what "in the first place" mean here... ?

!?! if a friend asks me " can  you send me that doc", I can't reply 
attaching it? :D

could it be just a temporary patch perhaps?

( I sent this on june 5th but somehow ML did not receive it...)
--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Very big problem with reply with attachment

2014-06-13 Thread marco ardito

Il 13/06/2014 13:23, Ludovic Marcotte ha scritto:

On 2014-06-13, 4:34 AM, marco ardito wrote:

Sorry, I don't understand what "in the first place" mean here... ?

Let me say it one last time.
When replying to a mail, the attachments from the _original mail_ 
should never be included (original bug, fixed).
But if you reply to a mail and want to attach files during that 
process, you should be allowed to do so (regression fixed yesterday).
many thanks, now I can understand it completely...  and of course I'm 
fine with that.

it could be my english... :) thanks.
--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Production Server Specification

2014-07-03 Thread marco ardito

Il 03/07/2014 06:03, Sogo Thailand ha scritto:

On Thursday, July 3, 2014 05:32 ICT, "ABBAS Alain"  
wrote:

Le Mercredi 2 Juillet 2014 06:30 CEST, "Sogo Thailand"  a 
écrit:
Could anyone suggest me the specification of Hardware, CPU, RAM ? My Linux 
distribution is SME 8.0. with 12G RAM and it is freezed from time to time.

Do I need more processing speed or require to install more RAM

My SME 8.0 is 32 bit version. Your idea about 64 bit is a good idea but I will 
have problem to move users data to the new installation.
Migrate users to a new server is not easy at all.   I will consider this next 
time.

My server is freezed for around 10-30 minutes and when it is light load it 
comes back again.
I already change the processes to 32 in /etc/default/sogo. Do I need to 
increase this number to 64?


btw, if your SME is 32 bit, it can't see 12 GB RAM at all... but only 
4GB for the whole machine RAM needs... ;)


--
*Marco
*


---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  � destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Production Server Specification

2014-07-03 Thread marco ardito

Il 03/07/2014 16:10, Janis Hamme ha scritto:

Am 07/03/2014 01:07 PM, schrieb marco ardito:

Il 03/07/2014 06:03, Sogo Thailand ha scritto:

btw, if your SME is 32 bit, it can't see 12 GB RAM at all... but only 
4GB for the whole machine RAM needs... ;)


--
*Marco
*



PAE should be enabled on Linux by default, hence all memory should be 
available ;)


@Somsak
You should do extensive monitoring of your server to find the 
bottleneck. Besides memory and CPU limitations the problem might also 
be IO related. You should check if a high IO wait time causes freezes  
of your Sogo, IMAP Backend or your Database.


Janis

mm I wasn't aware of this, sorry. good to know.

btw I read that it depends also on cpu & kernel used/configuration, and 
anyway

"Each process is still limited to a maximum of 4Gb of memory."

--
*Marco*



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  � destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] ANN: SOGo v2.2.8

2014-09-11 Thread marco ardito
The Inverse Team is pleased to announce the immediate availability of 
SOGo 2.2.8. Tprevious release


*New features*

IMAP global search support (#2670)


...wow, yes! I was waiting for this... it was a kind of major issue for 
my user base. Now I am eager to give SOGo a test run again...


Thanks,
Marco



---
[Ai sensi e per  gli  effetti della Legge sulla tutela della privacy
(L. 196/2003), questa  mail  è destinata unicamente alle persone sopra
indicate e le informazioni in essa contenute sono da considerarsi
strettamente riservate. E' proibito leggere, copiare, usare o
diffondere il contenuto della presente mail senza autorizzazione.
Se avete ricevuto questo messaggio per errore, siete pregati di
rispedire la stessa al mittente. Grazie]
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] German-speaking usergroup of SOGo?

2010-11-17 Thread Marco Smiatek
/me also


Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de

Am 17.11.2010 20:37, schrieb Martin Lehmann:
> I'd also like to join a german list in addition to the official sogo.nu.
> 
> Am 17.11.2010 09:06, schrieb Patrick Ben Koetter:
>> * Pascal Gienger:
>>> Are there other SOGo users in Germany, Switzerland, Austria
>>> deploying or planning to deploy SOGo in their institution?
>>>
>>> We at the university of Constance/Konstanz do offer the SOGo service
>>> already to all our students, staff members and professors/teachers.
>>>
>>> Operating System is CentOS 5.5.
>>>
>>> If there's some interest to share experiences and to look at each
>>> other's setup/solution I would be fine.
>> +1
>>
>> We'd join the list. We'd provide a list if that is needed.
>>
>> p...@rick
>>



signature.asc
Description: OpenPGP digital signature


[SOGo] updates.php @ v1.3.4

2010-11-19 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hey..

ive just upgraded to 1.3.4 with no problems, but pushing the new addons
to Thunderbird failed.
The Connector gets updated to 104 but Thunderbird then loops in reboots.
Lightning and Intrgrator are not updated.

Any ideas ?
Marco
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAkzmaP4ACgkQqyPvPxEbK34TAgCfWTM9UiDRlysP8RH7XUngDwzL
tIIAoIvAAa/sGaAxAzM+bNnHl9MpckmP
=UJCG
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] updates.php @ v1.3.4

2010-11-19 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi..

hwere we go:

r...@sogo plugins]# ls -R
.:
Darwin_x86-gcc3Linux_x86-gcc3 sogo-connector-3.102.xpi
sogo-connector-3.104.xpi   sogo-integrator-3.103.xpi
sogo-integrator-3.104.xpi  WINNT_x86-msvc
Linux_x86_64-gcc3  sogo-connector-3.103.xpi  sogo-integrator-3.102.xpi
sogo-integrator-3.104-sogo-demo.xpi  updates.php-ALT

./Darwin_x86-gcc3:
lightning-1.0b2.102i.xpi  lightning-1.0b2.104i.xpi

./Linux_x86_64-gcc3:
lightning-1.0b2.102i.xpi  lightning-1.0b2.103i.xpi  lightning-1.0b2.104i.xpi

./Linux_x86-gcc3:
lightning-1.0b2.102i.xpi  lightning-1.0b2.103i.xpi  lightning-1.0b2.104i.xpi

./WINNT_x86-msvc:
lightning-1.0b2.102i.xpi  lightning-1.0b2.103i.xpi  lightning-1.0b2.104i.xpi


the updates.php from src only changed to 104
===

 *
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This file is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

/* This script handles the automatic propagation of extensions
pertaining to a
   SOGo site. It requires PHP 4.1.0 or later. */
$plugins
= array(
"sogo-connec...@inverse.ca"
 => array( "application" => "thunderbird",
   "version" => "3.104",
   "filename" => "sogo-connector-3.104.xpi" ),
"sogo-integra...@inverse.ca"
 => array( "application" => "thunderbird",
   "version" => "3.104",
   "filename" => "sogo-integrator-3.104.xpi" ),
"{e2fda1a4-762b-4020-b5ad-a41df1933103}"
=> array( "application" => "thunderbird",
   "version" => "1.0b2.104i",
   "filename" => "lightning-1.0b2.104i.xpi" )
);

$applications
= array( "thunderbird" =>
"{3550f703-e582-4d05-9a08-453d09bdfdc6}
3.1.0
3.1.*" );

$pluginname = $_GET["plugin"];
$plugin =& $plugins[$pluginname];
$application =& $applications[$plugin["application"]];

if ( $plugin ) {
  $platform = $_GET["platform"];
  if ( $platform
   && file_exists( $platform . "/" . $plugin["filename"] ) ) {
$plugin["filename"] = $platform . "/" . $plugin["filename"];
  }
  elseif ( !file_exists( $plugin["filename"] ) ) {
$plugin = false;
  }
}

if ( $plugin ) {
  header("Content-type: text/xml; charset=utf-8");
  echo ('' . "\n");
?>

http://www.w3.org/1999/02/22-rdf-syntax-ns#";
  xmlns:em="http://www.mozilla.org/2004/em-rdf#";>
  

  

  


  
http://inverse.ca/downloads/extensions/
  

  

  

  


===

Am 19.11.2010 14:21, schrieb Alessio Fattorini:
> Il 19/11/2010 13:09, Marco Smiatek ha scritto:
>> -BEGIN PGP SIGNED MESSAGE-
>> Hash: SHA1
>>
>> hey..
>>
>> ive just upgraded to 1.3.4 with no problems, but pushing the new addons
>> to Thunderbird failed.
>> The Connector gets updated to 104 but Thunderbird then loops in reboots.
>> Lightning and Intrgrator are not updated.
> 
> Paste your updates.php and hte list of addon filename
> 

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAkzme0UACgkQqyPvPxEbK36G3ACePytDxvnIyLVs0mwKMzEdj8La
FfoAoNJi/zar5C9MNUUgh/v4T+LkKOQL
=s7B7
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] updates.php @ v1.3.4

2010-11-19 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

thx..

missed that one.. (twice) ^^

Am 19.11.2010 14:36, schrieb Alessio Fattorini:
> Il 19/11/2010 14:27, Marco Smiatek ha scritto:
>> http://inverse.ca/downloads/extensions/> $plugin["filename"] ?>
> 
> http://inverse.ca/downloads/extensions/
> 
> This is wrong, it should be something like
> 
> http://servername.domain.ltd/plugins
> 
> Same path that you have on integrator.
> 

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAkzmf0IACgkQqyPvPxEbK351LgCgyOF+W422sjvi80xZgpv9X9IN
/SsAoLvXvAo/RA69T8BAHGYNeFl5tCSB
=M0hF
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] white mail window

2010-12-20 Thread Marco Smiatek
hi..

im running latest SOGo on CentOS.
When i login an switch to mail the right window is complete white, on
the left site i see my complete mailbox with all folders.

And as far as i can tell only my user has this problem, all other
accounts i can test are working.
Tested different PCs, OSs and Browsers


Any ideas ?

-- 
Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 176 453 88 635
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


Re: [SOGo] white mail window

2010-12-20 Thread Marco Smiatek
thx Ludovic

in the white window i dropped the message list and the preview
pane from the top to the middle.

no idea how that happens.. but thx


Am 20.12.2010 14:43, schrieb Ludovic Marcotte:
> On 10-12-20 8:05 AM, Marco Smiatek wrote:
>> im running latest SOGo on CentOS.
>> When i login an switch to mail the right window is complete white, on
>> the left site i see my complete mailbox with all folders.
>>
>> And as far as i can tell only my user has this problem, all other
>> accounts i can test are working.
>> Tested different PCs, OSs and Browsers
>>
>>
>> Any ideas ?
> You dragged the drag handle splitting the message list and the preview
> pane to the very top part - or you resized the browser window to a very
> minimal size when the mail module was open. We fixed that a few weeks
> ago - it was occurring only with Firefox AFAIK.
> 
> Either fiddle around to drag the handle back to a normal position or
> edit (careful!) your c_settings in the sogo_user_profile table by
> deleting (or changing the value of) the "DragHandleVertical" key in the
> "Mail" section.
> 
> Regards,
> 


-- 
Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 151 407 44 602
https://www.internet-sicherheit.de



signature.asc
Description: OpenPGP digital signature


Re: [SOGo] kerberos authentication

2011-02-01 Thread Marco Bencivenni
Dear all,

excuse me but I prevoiulsy posted an incorrect configuration.
The problem is that I tru to use a kerberos authentication but I got a blank
page withe the only word "Unauthorized"
The configuration apache-kerberos is correct, but there is something in SOGo
configuration in order to use kerberos credentials.
I hope that someone has already faced this type of problem.
Thanks in advance,
Marco B


In my SOGo.conf  I uncomment:


  AuthType Kerberos
  AuthName "Kerberos Login"
  KrbMethodNegotiate Off
  KrbMethodK5Passwd On
  KrbAuthRealms .IT
  KrbServiceName HTTP/###.it@.IT
  Krb5KeyTab /etc/httpd/conf/keytab
  require valid-user
  Order allow,deny
  Allow from all


and

  RequestHeader set "x-webobjects-remote-user" "%{REMOTE_USER}e"


My .GNUstepDefaults is

OCSFolderInfoURL
mysql://sogo:sogo@localhost
:3306/sogo/sogo_folder_info
SOGoACLsSendEMailNotifications
YES
SOGoAppointmentSendEMailNotifications
YES
SOGoDraftsFolderName
Drafts
SOGoFoldersSendEMailNotifications
YES
SOGoIMAPServer

imaps://###.it:993/?tls=YES<http://iris.cnaf.infn.it:993/?tls=YES>

SOGoLanguage
Italian
SOGoMailDomain
cnaf.infn.it
SOGoProfileURL
mysql://sogo:sogo@localhost
:3306/sogo/sogo_user_profile
SOGoSentFolderName
Sent
SOGoTimeZone
Europe/Rome
SOGoTrashFolderName
Trash
SOGoTrustProxyAuthentication
YES
SOGoUserSources


CNFieldName
cn
IDFieldName
uid
UIDFieldName
uid
baseDN
ou=people,ou=cnaf,o=infn,c=it
canAuthenticate
YES
displayName
Shared Addresses
hostname
131.154.128.32
id
public
isAddressBook
YES
port
389
type
ldap
    







2011/1/26 

> Hi Marco,
>
> to use external authentication like Kerberos you have to use HTTP Header in
> front of SOGo:
>
> http://www.sogo.nu/english/support/faq/article/how-to-use-webauth-with-sogo-2.html
>
> There are a lot of examples in the Web for doing that. But the exact
> configuration steps depend on your setup. Especially for Apache and
> Kerberos
> there are a lot of how-tos.
>
> esco
> --
> users@sogo.nu
> https://inverse.ca/sogo/lists
>
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] kerberos authentication

2011-02-01 Thread Marco Bencivenni
I don't have any information in sogo log but I have something in apache
error log:

[Tue Feb 01 11:40:43 2011] [debug] src/mod_auth_kerb.c(1432): [client
131.154.7.18] kerb_authenticate_user entered with user (NULL) and auth_type
Kerberos
[Tue Feb 01 11:40:43 2011] [debug] src/mod_auth_kerb.c(915): [client
131.154.7.18] Using HTTP/.it@.IT as server principal for password
verification
[Tue Feb 01 11:40:43 2011] [debug] src/mod_auth_kerb.c(655): [client
131.154.7.18] Trying to get TGT for user mbenci@.IT
[Tue Feb 01 11:40:43 2011] [debug] src/mod_auth_kerb.c(569): [client
131.154.7.18] Trying to verify authenticity of KDC using principal
HTTP/.it@###.IT
[Tue Feb 01 11:40:43 2011] [debug] src/mod_auth_kerb.c(994): [client
131.154.7.18] kerb_authenticate_user_krb5pwd ret=0 user=mbenci@.IT
authtype=Basic
[Tue Feb 01 11:40:43 2011] [debug] mod_proxy_http.c(56): proxy: HTTP:
canonicalising URL //127.0.0.1:2/SOGo/
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(1488): [client 131.154.7.18]
proxy: http: found worker http://127.0.0.1:2/SOGo for
http://127.0.0.1:2/SOGo/
[Tue Feb 01 11:40:43 2011] [debug] mod_proxy.c(966): Running scheme http
handler (attempt 0)
[Tue Feb 01 11:40:43 2011] [debug] mod_proxy_http.c(1976): proxy: HTTP:
serving URL http://127.0.0.1:2/SOGo/
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(2044): proxy: HTTP: has
acquired connection for (127.0.0.1)
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(2102): proxy: connecting
http://127.0.0.1:2/SOGo/ to 127.0.0.1:2
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(2195): proxy: connected
/SOGo/ to 127.0.0.1:2
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(2347): proxy: HTTP: fam 2
socket created to connect to 127.0.0.1
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(2449): proxy: HTTP:
connection complete to 127.0.0.1:2 (127.0.0.1)
[Tue Feb 01 11:40:43 2011] [debug] mod_proxy_http.c(1753): proxy: start body
send
[Tue Feb 01 11:40:43 2011] [debug] mod_proxy_http.c(1842): proxy: end body
send
[Tue Feb 01 11:40:43 2011] [debug] proxy_util.c(2062): proxy: HTTP: has
released connection for (127.0.0.1)


Marco B

2011/2/1 Marco Bencivenni 

> Dear all,
>
> excuse me but I prevoiulsy posted an incorrect configuration.
> The problem is that I tru to use a kerberos authentication but I got a
> blank page withe the only word "Unauthorized"
> The configuration apache-kerberos is correct, but there is something in
> SOGo configuration in order to use kerberos credentials.
> I hope that someone has already faced this type of problem.
> Thanks in advance,
> Marco B
>
>
> In my SOGo.conf  I uncomment:
>
> 
>   AuthType Kerberos
>   AuthName "Kerberos Login"
>   KrbMethodNegotiate Off
>   KrbMethodK5Passwd On
>   KrbAuthRealms .IT
>   KrbServiceName HTTP/###.it@.IT
>   Krb5KeyTab /etc/httpd/conf/keytab
>   require valid-user
>   Order allow,deny
>
>   Allow from all
> 
>
> and
>
>   RequestHeader set "x-webobjects-remote-user" "%{REMOTE_USER}e"
>
>
> My .GNUstepDefaults is
>
>
> OCSFolderInfoURL
> mysql://sogo:sogo@localhost
> :3306/sogo/sogo_folder_info
> SOGoACLsSendEMailNotifications
> YES
> SOGoAppointmentSendEMailNotifications
> YES
> SOGoDraftsFolderName
> Drafts
> SOGoFoldersSendEMailNotifications
> YES
> SOGoIMAPServer
> 
> imaps://###.it:993/?tls=YES<http://iris.cnaf.infn.it:993/?tls=YES>
> 
> SOGoLanguage
> Italian
> SOGoMailDomain
> cnaf.infn.it
> SOGoProfileURL
> mysql://sogo:sogo@localhost
> :3306/sogo/sogo_user_profile
> SOGoSentFolderName
> Sent
> SOGoTimeZone
> Europe/Rome
> SOGoTrashFolderName
> Trash
> SOGoTrustProxyAuthentication
> YES
> SOGoUserSources
> 
> 
> CNFieldName
> cn
> IDFieldName
> uid
> UIDFieldName
> uid
> baseDN
> ou=people,ou=cnaf,o=infn,c=it
> canAuthenticate
> YES
> displayName
> Shared Addresses
> hostname
> 131.154.128.32
> id
> public
> isAddressBook
> YES
> port
> 389
> type
> ldap
> 
> 
> 
> 
> 
>
>
>
> 2011/1/26 
>
> Hi Marco,
>>
>> to use external authentication like Kerberos you have to use HTTP 

[SOGo] Any authenticated User

2011-02-14 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hi..

i dont know when it happend.. but in Calendars i have a "Any
authenticated User" that is set to "public -> see everything" for ALL my
Users..
is there a way to set the default values to "none" ?

And it seems that its only changeable for the personal calendar.

Marco Smiatek

- -- 
Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

Besuchen Sie uns auf der CeBIT 2011! Halle 9 Stand D06

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 151 407 44 602
https://www.internet-sicherheit.de
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk1ZTEYACgkQqyPvPxEbK35S0ACfZpEMRNMYYVyF5p2k1Lwle9Qz
Ff8AoKAGRPBZC3xE5akY9w+Iv8KMrZ3r
=+VG/
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Bug: All day Event shown for two days

2011-02-18 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi..

when i add a "All day Event" in Lightning SOGo's Webinterface shows that
Event on two Days.

Marco Smiatek
- -- 
Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

Besuchen Sie uns auf der CeBIT 2011! Halle 9 Stand D06

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 151 407 44 602
https://www.internet-sicherheit.de
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk1ei4EACgkQqyPvPxEbK377MwCfbRN96W/dw9F42dmbp1AIXwbq
8uYAoMcAgkfCQJP07bFf9yqSwYWd2zsL
=m68s
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] Title in senders name

2011-03-09 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi..

im trying to find out how to configure the senders name when using SOGo
Webmail.
My Boss would like his title befor his name.

Marco
- -- 
Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 151 407 44 602
https://www.internet-sicherheit.de
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk13d1cACgkQqyPvPxEbK35PTACgreYUanmFMVXbg8sYL+ShPFmo
g6kAn3XqnXuhslkOGBqt1stveprGDQSF
=Kvad
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Title in senders name

2011-03-09 Thread Marco Smiatek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I tried that.. but SOGo does not show the title.
I tried Phone and that work so i think i need a mapping from Sogo Fields
to GOSA Fields

Am 09.03.2011 14:30, schrieb Anil Thapa:
> I guess one way of doing this would be add title in LDAP.
> 
> On 03/09/2011 12:49 PM, Marco Smiatek wrote:
> Hi..
> 
> im trying to find out how to configure the senders name when using SOGo
> Webmail.
> My Boss would like his title befor his name.
> 
> Marco
> -- Encrypted eMail welcome!
> GPG / PGP Key : 0x111B2B7E
> Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E
> 
> if(is) - Institute for Internet Security
> University of Applied Sciences Gelsenkirchen
> Tel.: +49 209 9596763
> mobile: +49 151 407 44 602
> https://www.internet-sicherheit.de

- -- 
Encrypted eMail welcome!
GPG / PGP Key : 0x111B2B7E
Fingerprint : F451 E4F7 D1D2 EC8B DAC3 8BE7 AB23 EF3F 111B 2B7E

if(is) - Institute for Internet Security
University of Applied Sciences Gelsenkirchen
Tel.: +49 209 9596763
mobile: +49 151 407 44 602
https://www.internet-sicherheit.de
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk13ir0ACgkQqyPvPxEbK35rsACfa2hNiMX3qHA+47bHKb3NPkVb
9bcAoID1Gp90ygyKb2vEZZNNrLheN3PJ
=+XhV
-END PGP SIGNATURE-
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] ActiveSync on Android suddenly not getting mail

2021-09-12 Thread Marco Coli
I had the same problem. I think there is a problem in newer active-sync
package (i use nightly).

I solved reverting to an older nightly, all returned to function regularly

Il 03/09/21 17:26, "Sean M. Pappalardo" (spappala...@renegadetech.com)
ha scritto:
> Hello.
>
> I'm running SOGo 2.4.x and suddenly yesterday my Android phone stopped
> getting E-mail messages via the ActiveSync connection with SOGo. The
> problem started when I was repeatedly trying to use the search feature
> to find old messages. Suddenly it wasn't finding _any_ messages (even
> though I know for a fact there were some in the last 30 days with the
> search term) and now it's not getting new messages at all, and if I
> try to open a message it previously received, the phone displays
> "Can't open message" then the message disappears from the list as if I
> deleted it!
>
> Checking via the SOGo Web interface shows all of the messages and I
> can open them fine there. I don't see anything amiss in the SOGo logs
> either, other than the occasional "LOG:  could not receive data from
> client: Connection reset by peer" from PostgreSQL.
>
> Where else should I look to see where the problem is? Is there a way
> to reindex SOGo's database of mail ActiveSync sees or something?
>
> Thank you!
>
> Sincerely,
> Sean M. Pappalardo
> Sr. Networks Engineer
> Renegade Technologies
> spappala...@renegadetech.com
> http://www.renegadetech.com
>

-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] ActiveSync on Android suddenly not getting mail

2021-09-13 Thread Marco Coli
Yes, I tried, but there is a ton of messages, I can't identify where to 
investigate.


We have 40 users, and the activesync problem was on two users with inbox 
rather big.


For the time being, I downgraded and the problem was solved.

On 12/09/21 21:00, "Thomas Fuehrer" (t...@aon.at) wrote:

Hi Marco,
do you see any unusual message in sogo.log? With parameter the
SOGoEASDebugEnabled = YES sogo.log will contain more details about the EAS 
communication.

Regards,
Thomas

-Ursprüngliche Nachricht-
Von: users-requ...@sogo.nu  Im Auftrag von Marco Coli
Gesendet: Samstag, 11. September 2021 21:33
An: users@sogo.nu
Betreff: Re: [SOGo] ActiveSync on Android suddenly not getting mail

I had the same problem. I think there is a problem in newer active-sync package 
(i use nightly).

I solved reverting to an older nightly, all returned to function regularly

Il 03/09/21 17:26, "Sean M. Pappalardo" (spappala...@renegadetech.com) ha 
scritto:

Hello.

I'm running SOGo 2.4.x and suddenly yesterday my Android phone stopped
getting E-mail messages via the ActiveSync connection with SOGo. The
problem started when I was repeatedly trying to use the search feature
to find old messages. Suddenly it wasn't finding _any_ messages (even
though I know for a fact there were some in the last 30 days with the
search term) and now it's not getting new messages at all, and if I
try to open a message it previously received, the phone displays
"Can't open message" then the message disappears from the list as if I
deleted it!

Checking via the SOGo Web interface shows all of the messages and I
can open them fine there. I don't see anything amiss in the SOGo logs
either, other than the occasional "LOG:  could not receive data from
client: Connection reset by peer" from PostgreSQL.

Where else should I look to see where the problem is? Is there a way
to reindex SOGo's database of mail ActiveSync sees or something?

Thank you!

Sincerely,
Sean M. Pappalardo
Sr. Networks Engineer
Renegade Technologies
spappala...@renegadetech.com
http://www.renegadetech.com


--
users@sogo.nu
https://inverse.ca/sogo/lists



--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] ActiveSync on Android suddenly not getting mail

2021-09-13 Thread Marco Coli
We only use EAS on mobile, one or two weeks history, never had a problem 
until now.


On 13/09/21 15:52, Ing. Zdeněk Havránek, HAF (havra...@sea.cz) wrote:

Big mailbox = big problem with EAS.
Mobil client is usable with limited history.
Outlook (on PC) we use with IMAP and CalDav Synchronizer (with some 
acceptable problems)


S pozdravem

*Ing. Zdeněk Havránek*
vedoucí střediska automatizace a IT

*SEA - Chomutov, s.r.o.*
Tel.:+420 474 624 048, Mobil: +420 777 717 303
E-mail: havra...@sea.cz, Web: www.sea.cz <http://www.sea.cz/>

Dne 13.09.2021 v 8:37 Marco Coli (marco.coli...@gmail.com) napsal(a):
Yes, I tried, but there is a ton of messages, I can't identify where 
to investigate.


We have 40 users, and the activesync problem was on two users with 
inbox rather big.


For the time being, I downgraded and the problem was solved.

On 12/09/21 21:00, "Thomas Fuehrer" (t...@aon.at) wrote:

Hi Marco,
do you see any unusual message in sogo.log? With parameter the
SOGoEASDebugEnabled = YES sogo.log will contain more details about 
the EAS communication.


Regards,
Thomas

-Ursprüngliche Nachricht-
Von: users-requ...@sogo.nu  Im Auftrag von 
Marco Coli

Gesendet: Samstag, 11. September 2021 21:33
An: users@sogo.nu
Betreff: Re: [SOGo] ActiveSync on Android suddenly not getting mail

I had the same problem. I think there is a problem in newer 
active-sync package (i use nightly).


I solved reverting to an older nightly, all returned to function 
regularly


Il 03/09/21 17:26, "Sean M. Pappalardo" 
(spappala...@renegadetech.com) ha scritto:

Hello.

I'm running SOGo 2.4.x and suddenly yesterday my Android phone stopped
getting E-mail messages via the ActiveSync connection with SOGo. The
problem started when I was repeatedly trying to use the search feature
to find old messages. Suddenly it wasn't finding _any_ messages (even
though I know for a fact there were some in the last 30 days with the
search term) and now it's not getting new messages at all, and if I
try to open a message it previously received, the phone displays
"Can't open message" then the message disappears from the list as if I
deleted it!

Checking via the SOGo Web interface shows all of the messages and I
can open them fine there. I don't see anything amiss in the SOGo logs
either, other than the occasional "LOG:  could not receive data from
client: Connection reset by peer" from PostgreSQL.

Where else should I look to see where the problem is? Is there a way
to reindex SOGo's database of mail ActiveSync sees or something?

Thank you!

Sincerely,
Sean M. Pappalardo
Sr. Networks Engineer
Renegade Technologies
spappala...@renegadetech.com
http://www.renegadetech.com


--
users@sogo.nu
https://inverse.ca/sogo/lists





--
users@sogo.nu
https://inverse.ca/sogo/lists

--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] ActiveSync on Android suddenly not getting mail

2021-09-13 Thread Marco Coli

Well, I only had very old rpms: sogo-5.0.1.20201129-1.el7.x86_64
I downgraded sogo, sogo-activesync. sogo-tools. and all start to work 
again in an instant.


But I have the problem on three different domains, different server, 
same identical issue on eas on mobile with big inboxes, since two or 
three upgrade. Considering we upgrade once/twice a month, I would say 
the problem started in some build in august or late july at most (I did 
not upgrade in august)


I tried yesterday's nightly, but the problem is still there.


On 13/09/21 16:07, Francis Lachapelle (flachape...@inverse.ca) wrote:

Hi Marco


On Sep 11, 2021, at 3:33 PM, Marco Coli  wrote:

I had the same problem. I think there is a problem in newer active-sync
package (i use nightly).

I solved reverting to an older nightly, all returned to function 
regularly


Which nightly is working for you? The development on the v2 branch has 
been pretty quiet for a long time.


Thanks,

Francis
--
users@sogo.nu
https://inverse.ca/sogo/lists

--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] ActiveSync on Android suddenly not getting mail

2021-09-13 Thread Marco Coli

before downgrading, I tried to remove eas profile with sogo-tool, no luck.
Tried different devices, no luck.
Via IMAP all was perfect

The downgrade restored correct eas functionality whithout any change on 
device side.


On 13/09/21 23:04, Marco Coli wrote:

Well, I only had very old rpms: sogo-5.0.1.20201129-1.el7.x86_64
I downgraded sogo, sogo-activesync. sogo-tools. and all start to work 
again in an instant.


But I have the problem on three different domains, different server, 
same identical issue on eas on mobile with big inboxes, since two or 
three upgrade. Considering we upgrade once/twice a month, I would say 
the problem started in some build in august or late july at most (I 
did not upgrade in august)


I tried yesterday's nightly, but the problem is still there.


On 13/09/21 16:07, Francis Lachapelle (flachape...@inverse.ca) wrote:

Hi Marco


On Sep 11, 2021, at 3:33 PM, Marco Coli  wrote:

I had the same problem. I think there is a problem in newer active-sync
package (i use nightly).

I solved reverting to an older nightly, all returned to function 
regularly


Which nightly is working for you? The development on the v2 branch 
has been pretty quiet for a long time.


Thanks,

Francis
--
users@sogo.nu
https://inverse.ca/sogo/lists



--
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] Address book search not working after server migration

2022-03-07 Thread Marco Coli

Hello, I have a strannge problem.

I migrated a sogo environment to a new system.

All data are visibile to the new system, but in web interface, in 
address book,  I see all addresses but all searches results empty... I 
don't know why...


Source system: RHEL 6.X, sogo 5.1, LDAP
Destination system: RHEL 8.0, sogo 5.5, AD

Imap mail correctly moved, users duplicated from LDAP to AD, sogo-tool 
for export/import all users (I see all calendars & contacts entry in all 
users), but no search working in address, so no auto-completion in new 
mail creation


Ideas? Thank you


--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Personal Adress books not working

2022-03-09 Thread Marco Coli


Il 08/03/22 17:08, Коробов Игорь (i.koro...@aster.kz) ha scritto:

Hi!
I have a problem after nightly update (just installed latest build, so 
problem is not resolved yet)
I can see all adressess and adress books in "adress books" tab, but 
autocomlition is not working, and search in personal address books 
results empty. (Global adrress book works with autocomlition and search)


this problem is similar to Marco Coli 
<https://www.mail-archive.com/search?l=users@sogo.nu&q=from:%22Marco+Coli%22> 
Mon, 07 Mar 2022 04:17:04 -0800 
<https://www.mail-archive.com/search?l=users@sogo.nu&q=date:20220307>




Yes, exactly. I did originally think the problem was related to my 
migration, but I see is present even on new sogo installation, using 
nightly packages.


--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Personal Adress books not working

2022-03-10 Thread Marco Coli

In todays build, correct functionality seems to be restored.


Il 09/03/22 14:20, Коробов Игорь (i.koro...@aster.kz) ha scritto:
Can anybody send a new bug, to the bug tracking system? I don't have 
access to it. Problem persists for 2 weeks already, and it's a 
stopping bug.



9 мар. 2022 г. 14:36 пользователь Marco Coli  написал:


Il 08/03/22 17:08, Коробов Игорь (i.koro...@aster.kz) ha scritto:

Hi!
I have a problem after nightly update (just installed latest build, 
so problem is not resolved yet)
I can see all adressess and adress books in "adress books" tab, but 
autocomlition is not working, and search in personal address books 
results empty. (Global adrress book works with autocomlition and search)


this problem is similar to Marco Coli 
<https://www.mail-archive.com/search?l=users@sogo.nu&q=from:%22Marco+Coli%22> 
Mon, 07 Mar 2022 04:17:04 -0800 
<https://www.mail-archive.com/search?l=users@sogo.nu&q=date:20220307>




Yes, exactly. I did originally think the problem was related to my 
migration, but I see is present even on new sogo installation, using 
nightly packages.



--
users@sogo.nu
https://inverse.ca/sogo/lists
--
users@sogo.nu
https://inverse.ca/sogo/lists

--
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] How can I set the signature?

2022-08-05 Thread Marco Moock
Hello,
we run SOGo 5.7.0-1.el8. I haven't found a way to set the signature for
emails in the settings. Where can I do it?
I also haven't found such a setting in the public SOGo demo.
-- 
kind regards
Marco
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] How can I set the signature?

2022-08-05 Thread Marco Moock
Am Fri, 5 Aug 2022 11:55:49 +0200
schrieb "Marco Moock" (marco.mo...@urz.uni-heidelberg.de)
:

> Hello,
> we run SOGo 5.7.0-1.el8. I haven't found a way to set the signature
> for emails in the settings. Where can I do it?
> I also haven't found such a setting in the public SOGo demo.

I now found the solution.
Settings --> E-Mail --> IMAP --> edit (pencil logo) --> select drop
down menu on identity.
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Sogo drive link to a shared folder

2022-09-06 Thread Marco Moock
Am 06. Sep 2022, um 15:29:16 Uhr schrieb Test:

> example: “ I:\data\personal\username ”

Maybe try file:///home/file.txt #here on Linux, Windows paths look a
bit different.


Re: [SOGo] Sogo drive link to a shared folder

2022-09-07 Thread Marco Moock
Am 07. Sep 2022, um 08:52:59 Uhr schrieb International Security
Providers:

> I have the same issue here..
> when I get the email in Outlook I can click the link) (sent from
> sogo), but when I receive it in sogo (when sending it back for
> example) I cannot click it (on Windows in Chrome)

Is the link in the file:///etc/file.conf format?


[SOGo] SOGo 5 webmail does not remove signature

2022-09-13 Thread Marco Moock
Hello,
when I answer to an email containing a signature ("-- "), the
SOGo web mailer does not remove it as other MUAs do, it just quotes it
like the original message text.

Do others also experience that?

-- 
kind regards
Marco


Re: [SOGo] Send mail error

2022-09-16 Thread Marco Moock
Am 16. Sep 2022, um 15:00:23 Uhr schrieb International Security
Providers:

> This is not really related to sogo.. as sogo is not a SMTP-Server but
> needs a working SMTP (most likely postfix) --- Original Message
> --- h...@hrmanagement.it  schrieb am Dienstag, 13.
> September 2022 um 9:37 vorm.:
> 
> > Help.
> > Contact hr@hrmanagement.i  

Do you already have an MTA in your network?
You can just configure a local MTA like sendmail to use this existing
SMTP server for all mails, called null client.
It is rather easy to set up sendmail to do that.


Re: [SOGo] What are these mistakes

2022-10-16 Thread Marco Moock
Am 16.10.2022 um 17:37:28 Uhr schrieb mich:

> [823447]: [ERROR] <0x0x555d19b24110[WOWatchDog]> No child available
> to handle incoming request!

Do you have enough children for the incoming request?
You can change the amount of them in sogo.conf.


  1   2   >