Re: [SOGo] Help me

2023-05-05 Thread Odhiambo Washington
On Fri, May 5, 2023 at 5:03 AM Marco Moock  wrote:

> Am 03.05.2023 schrieb "William Bowden" (will...@jmrit.co.uk)
> :
>
> > What mail system have you built and on what platform please
>
> SPF is in DNS - DKIM in your outgoing MTA.
>
> There are free software solutions like sendmail, postfix and Exim.
> Which software do you use?
>

I mostly use Exim and sometimes Postfix for MTA.
I use Dovecot for IMAP4/POP3.


-- 
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254 7 3200 0004/+254 7 2274 3223
"Oh, the cruft.", egrep -v '^$|^.*#' ¯\_(ツ)_/¯ :-)
[How to ask smart questions:
http://www.catb.org/~esr/faqs/smart-questions.html]


Re: [SOGo] Help me

2023-05-04 Thread Marco Moock
Am 03.05.2023 schrieb "William Bowden" (will...@jmrit.co.uk)
:

> What mail system have you built and on what platform please

SPF is in DNS - DKIM in your outgoing MTA.

There are free software solutions like sendmail, postfix and Exim.
Which software do you use?


Re: [SOGo] Help me

2023-05-03 Thread William Bowden
Hello 
What mail system have you built and on what platform please



William

William Bowden 
 
Consultant Engineer | m:07525 645105 | e:will...@jmrit.co.uk




> On 3 May 2023, at 14:47, Marco Moock (marco.mo...@urz.uni-heidelberg.de) 
>  wrote:
> 
> Am 03.05.2023 schrieb "hello@theburst . co" (he...@theburst.co)
> :
> 
>> I just want to figure out how to set up SPF and DKIM configurations,
>> as they did not pass. Write me please step-by-step instructions on
>> how to resolve that issue and where can I find all these parameters
>> in my mail SOgo? 
> 
> This is done in your MTA. sendmail can use DKIM, other should too.
> 
> SPF is only a special DNS record that includes the IPs of your outgoing
> SMTP servers. Read the wikipedia article about it.



Re: [SOGo] Help me

2023-05-03 Thread Marco Moock
Am 03.05.2023 schrieb "hello@theburst . co" (he...@theburst.co)
:

> I just want to figure out how to set up SPF and DKIM configurations,
> as they did not pass. Write me please step-by-step instructions on
> how to resolve that issue and where can I find all these parameters
> in my mail SOgo? 

This is done in your MTA. sendmail can use DKIM, other should too.

SPF is only a special DNS record that includes the IPs of your outgoing
SMTP servers. Read the wikipedia article about it.


RE: [SOGo] Help to setup autoconfig and autodiscover

2022-01-10 Thread Kai-Uwe Rommel - ARS
Hello Philippe,
what I posted here was just my setup except that I replaced my domain/server 
names
with your generic sample name. You will need to debug this now yourself in your 
environment.
Perhaps you overlooked something (such as necessary name change).
I had collected all this from various sources on the Internet a couple of years 
ago,
there was no single source. Therefore I thought I could post that all together 
here.
I can confirm that the setup still works fine for auto configuring Thunderbird 
from my server.

Kai-Uwe Rommel

From: users-requ...@sogo.nu  On Behalf Of HYVERNAT 
Philippe
Sent: Monday, January 10, 2022 10:12 AM
To: Kai-Uwe Rommel - ARS (kai-uwe.rom...@ars.de) 
Subject: Re: [SOGo] Help to setup autoconfig and autodiscover


Hello,

Thanks a lot for your details

so i try only with thunderbird,

i created an host autoconfig.domain.com and put the file 
www/mail/config-v1.1.xml

i can access with my browser to port 80  
http://autoconfig.domain.com/mail/config-v1.1.xml

When i try to create an account to thunderbird. in my firewall i can see the 
access, and everything is ok but Thunderbird say that config is not found ???

i have Apache24 php81.

Shall i activate xml on the server ? and how ?

Thanks a lot

ARS Computer und Consulting GmbH, www.ars.de
ein Unternehmen der TIMETOACT Group
Garmischer Straße 7, 80339 München, Deutschland

ARS - The Art of Software Engineering
Software Engineering, Technologieberatung, IBM Software, IBM Lizenzmanagement 
Services

Handelsregister München, HRB 101829, USt-ID: DE 155 068 909
Geschäftsführer: Joachim Gucker, Stefan Schäffer, Michael Arbesmeier
Datenschutzerklärung: https://web.ars.de/datenschutz/
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Help to setup autoconfig and autodiscover

2022-01-10 Thread HYVERNAT Philippe
enssl smime -sign -in 
/var/www/html/apple/$timestamp -out 
/var/www/html/apple/$timestamp.signed -signer 
/etc/pki/dovecot/dovecot.cer -inkey 
/etc/pki/dovecot/private/dovecot.pem -certfile 
/etc/pki/dovecot/intermediate.cer -nodetach -outform der";


$output = exec($cmdline);

header('Content-type: application/x-apple-aspen-config; charset=utf-8');

header('Content-Disposition: attachment; filename="domain.mobileconfig"');

header('Content-Transfer-Encoding: binary');

ob_clean();

flush();

readfile("/var/www/html/apple/$timestamp.signed");

flush();

unlink("/var/www/html/apple/$timestamp");

unlink("/var/www/html/apple/$timestamp.signed");

?>







domain.com ActiveSync Configuration for Apple iOS












Benutzer-Name:



















And the mailsetup.mobileconfig it references:



http://www.apple.com/DTDs/PropertyList-1.0.dtd>




    

PayloadUUID

8B9C9E2E-53E7-44EC-A361-74EC8136B4CF

 PayloadDisplayName

%EMAIL%

PayloadIdentifier

domain.profile

PayloadDescription

    Configures the device for use with ActiveSync 
for domain.com


PayloadOrganization

DOMAIN

PayloadVersion

1

PayloadType

 Configuration

PayloadContent

    

    

PayloadUUID

837AF5F3-1380-4234-BAD0-8246A644AC2E

PayloadDisplayName

%USERNAME%

PayloadDescription

Configures the device for use with ActiveSync for DOMAIN.

PayloadOrganization

DOMAIN

PayloadVersion

1

PayloadIdentifier

domain.email

PayloadType

com.apple.eas.account

UserName

%USERNAME%

EmailAddress

%EMAIL%

Host

    webmail.domain.com

SSL

        

    

    

    



Adapt for your needs … in the mailsetup.php it also references your 
server’s TLS certificate(s).



Kai-Uwe Rommel


*From:*users-requ...@sogo.nu  *On Behalf Of 
*HYVERNAT Philippe

*Sent:* Thursday, January 6, 2022 8:39 PM
*To:* users@sogo.nu
*Subject:* [SOGo] Help to setup autoconfig and autodiscover

Hello community,

i don't know if it is the right feed but i want to configure 
autoconfig and autodiscover in the same web server of sogo.


I own Postfix / Dovecot Apache 24 and sogo 5.4

My web server is share with sogo and my setup is "webmail.domain.com"

I find scripts examples for both thunderbird and outlook but i don't 
know *where* to place them and how configure th web server apache to 
share files.


i use also redirection /sogo to /

Thanks by advance.

HYVERNAT PHILIPPE

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


*ARS Computer und Consulting GmbH*, www.ars.de <http://www.ars.de>
ein Unternehmen der TIMETOACT Group
Garmischer Straße 7, 80339 München, Deutschland

ARS - The Art of Software Engineering
Software Engineering, Technologieberatung, IBM Software, IBM 
Lizenzmanagement Services


Handelsregister München, HRB 101829, USt-ID: DE 155 068 909
Geschäftsführer: Joachim Gucker, Stefan Schäffer, Michael Arbesmeier
Datenschutzerklärung: https://web.ars.de/datenschutz/
--
users@sogo.nu
https://inverse.ca/sogo/lists

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

Re: [SOGo] Help to setup autoconfig and autodiscover

2022-01-07 Thread Kees van Vloten
guration

PayloadContent

    



PayloadUUID

837AF5F3-1380-4234-BAD0-8246A644AC2E

PayloadDisplayName

%USERNAME%

PayloadDescription

Configures the device for use with ActiveSync for 
DOMAIN.


PayloadOrganization

DOMAIN

PayloadVersion

1

PayloadIdentifier

domain.email

PayloadType

com.apple.eas.account

UserName

%USERNAME%

EmailAddress

%EMAIL%

Host

webmail.domain.com

SSL

   



    

    



Adapt for your needs … in the mailsetup.php it also references your 
server’s TLS certificate(s).



Kai-Uwe Rommel


*From:*users-requ...@sogo.nu  *On Behalf Of 
*HYVERNAT Philippe

*Sent:* Thursday, January 6, 2022 8:39 PM
*To:* users@sogo.nu
*Subject:* [SOGo] Help to setup autoconfig and autodiscover

Hello community,

i don't know if it is the right feed but i want to configure 
autoconfig and autodiscover in the same web server of sogo.


I own Postfix / Dovecot Apache 24 and sogo 5.4

My web server is share with sogo and my setup is "webmail.domain.com"

I find scripts examples for both thunderbird and outlook but i don't 
know *where* to place them and how configure th web server apache to 
share files.


i use also redirection /sogo to /

Thanks by advance.

HYVERNAT PHILIPPE

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


*ARS Computer und Consulting GmbH*, www.ars.de <http://www.ars.de>
ein Unternehmen der TIMETOACT Group
Garmischer Straße 7, 80339 München, Deutschland

ARS - The Art of Software Engineering
Software Engineering, Technologieberatung, IBM Software, IBM 
Lizenzmanagement Services


Handelsregister München, HRB 101829, USt-ID: DE 155 068 909
Geschäftsführer: Joachim Gucker, Stefan Schäffer, Michael Arbesmeier
Datenschutzerklärung: https://web.ars.de/datenschutz/
--
users@sogo.nu
https://inverse.ca/sogo/lists

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



I noticed you do some cert-magic in mailsetup.php for the IOS devices.  
Can you explain what it actually does?


And is there a way to avoid giving php and the webserver access to 
Dovecot's private key?



- Kees


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

Re: [SOGo] Help to setup autoconfig and autodiscover

2022-01-07 Thread HYVERNAT Philippe
ain.mobileconfig"');

header('Content-Transfer-Encoding: binary');

ob_clean();

flush();

readfile("/var/www/html/apple/$timestamp.signed");

flush();

unlink("/var/www/html/apple/$timestamp");

unlink("/var/www/html/apple/$timestamp.signed");

?>







domain.com ActiveSync Configuration for Apple iOS












Benutzer-Name:



















And the mailsetup.mobileconfig it references:



http://www.apple.com/DTDs/PropertyList-1.0.dtd>




    

PayloadUUID

8B9C9E2E-53E7-44EC-A361-74EC8136B4CF

 PayloadDisplayName

%EMAIL%

PayloadIdentifier

domain.profile

PayloadDescription

    Configures the device for use with ActiveSync 
for domain.com


PayloadOrganization

DOMAIN

PayloadVersion

1

PayloadType

 Configuration

PayloadContent

    

    

PayloadUUID

837AF5F3-1380-4234-BAD0-8246A644AC2E

PayloadDisplayName

%USERNAME%

PayloadDescription

Configures the device for use with ActiveSync for DOMAIN.

PayloadOrganization

DOMAIN

PayloadVersion

1

PayloadIdentifier

domain.email

PayloadType

com.apple.eas.account

UserName

%USERNAME%

EmailAddress

%EMAIL%

Host

    webmail.domain.com

SSL

        

    

    

    



Adapt for your needs … in the mailsetup.php it also references your 
server’s TLS certificate(s).



Kai-Uwe Rommel


*From:*users-requ...@sogo.nu  *On Behalf Of 
*HYVERNAT Philippe

*Sent:* Thursday, January 6, 2022 8:39 PM
*To:* users@sogo.nu
*Subject:* [SOGo] Help to setup autoconfig and autodiscover

Hello community,

i don't know if it is the right feed but i want to configure 
autoconfig and autodiscover in the same web server of sogo.


I own Postfix / Dovecot Apache 24 and sogo 5.4

My web server is share with sogo and my setup is "webmail.domain.com"

I find scripts examples for both thunderbird and outlook but i don't 
know *where* to place them and how configure th web server apache to 
share files.


i use also redirection /sogo to /

Thanks by advance.

HYVERNAT PHILIPPE

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


*ARS Computer und Consulting GmbH*, www.ars.de <http://www.ars.de>
ein Unternehmen der TIMETOACT Group
Garmischer Straße 7, 80339 München, Deutschland

ARS - The Art of Software Engineering
Software Engineering, Technologieberatung, IBM Software, IBM 
Lizenzmanagement Services


Handelsregister München, HRB 101829, USt-ID: DE 155 068 909
Geschäftsführer: Joachim Gucker, Stefan Schäffer, Michael Arbesmeier
Datenschutzerklärung: https://web.ars.de/datenschutz/
--
users@sogo.nu
https://inverse.ca/sogo/lists

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

RE: [SOGo] Help to setup autoconfig and autodiscover

2022-01-06 Thread Kai-Uwe Rommel - ARS
S





Benutzer-Name:











And the mailsetup.mobileconfig it references:


http://www.apple.com/DTDs/PropertyList-1.0.dtd>


PayloadUUID
8B9C9E2E-53E7-44EC-A361-74EC8136B4CF
PayloadDisplayName
%EMAIL%
PayloadIdentifier
domain.profile
PayloadDescription
Configures the device for use with ActiveSync for 
domain.com
PayloadOrganization
DOMAIN
PayloadVersion
1
PayloadType
Configuration
PayloadContent


PayloadUUID

837AF5F3-1380-4234-BAD0-8246A644AC2E
PayloadDisplayName
%USERNAME%
PayloadDescription
Configures the device for use with 
ActiveSync for DOMAIN.
PayloadOrganization
DOMAIN
PayloadVersion
1
PayloadIdentifier
domain.email
PayloadType
com.apple.eas.account
UserName
%USERNAME%
EmailAddress
%EMAIL%
Host
webmail.domain.com
SSL

    
    



Adapt for your needs … in the mailsetup.php it also references your server’s 
TLS certificate(s).

Kai-Uwe Rommel


From: users-requ...@sogo.nu  On Behalf Of HYVERNAT 
Philippe
Sent: Thursday, January 6, 2022 8:39 PM
To: users@sogo.nu
Subject: [SOGo] Help to setup autoconfig and autodiscover


Hello community,

i don't know if it is the right feed but i want to configure autoconfig and 
autodiscover in the same web server of sogo.



I own Postfix / Dovecot Apache 24 and sogo 5.4



My web server is share with sogo and my setup is "webmail.domain.com"



I find scripts examples for both thunderbird and outlook but i don't know where 
to place them and how configure th web server apache to share files.



i use also redirection /sogo to /

Thanks by advance.

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

ARS Computer und Consulting GmbH, www.ars.de
ein Unternehmen der TIMETOACT Group
Garmischer Straße 7, 80339 München, Deutschland

ARS - The Art of Software Engineering
Software Engineering, Technologieberatung, IBM Software, IBM Lizenzmanagement 
Services

Handelsregister München, HRB 101829, USt-ID: DE 155 068 909
Geschäftsführer: Joachim Gucker, Stefan Schäffer, Michael Arbesmeier
Datenschutzerklärung: https://web.ars.de/datenschutz/
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Help to setup autoconfig and autodiscover

2022-01-06 Thread slavek.ba...@axis.cz
On Thursday 06 of January 2022 20:38:31 HYVERNAT Philippe wrote:
> Hello community,
>
> i don't know if it is the right feed but i want to configure autoconfig
> and autodiscover in the same web server of sogo.
>
>
> I own Postfix / Dovecot Apache 24 and sogo 5.4
>
>
> My web server is share with sogo and my setup is "webmail.domain.com"
>
>
> I find scripts examples for both thunderbird and outlook but i don't
> know *where* to place them and how configure th web server apache to
> share files.
>
>
> i use also redirection /sogo to /
>
> Thanks by advance.
>
> HYVERNAT PHILIPPE

Hi Philippe,

I recommend to look at automx2:
https://automx.org/en/

Cheers
-- 
Slávek


signature.asc
Description: This is a digitally signed message part.


[SOGo] Help to setup autoconfig and autodiscover

2022-01-06 Thread HYVERNAT Philippe

Hello community,

i don't know if it is the right feed but i want to configure autoconfig 
and autodiscover in the same web server of sogo.



I own Postfix / Dovecot Apache 24 and sogo 5.4


My web server is share with sogo and my setup is "webmail.domain.com"


I find scripts examples for both thunderbird and outlook but i don't 
know *where* to place them and how configure th web server apache to 
share files.



i use also redirection /sogo to /

Thanks by advance.

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

[SOGo] help sogo error

2019-04-24 Thread Rafael Aviles
I need help

I have sogo version 4.0.2 on a zentyal 6.0, I'm failing login sogo. in the
log I have the following error
Apr 24 18:44:03 sogod [10865]: SOGoRootPage Login from '192.168.165.4' for
user 'ebe' might not have worked - password policy: 65535
grace: -1 expire: -1 bound: 0
Apr 24 18:44:03 sogod [10865]: 192.168.165.4 'POST / SOGo / connect HTTP /
1.1' 403 34/67 0.167 - - 0
2019-04-24 18: 44: 12.313 sogod [10865: 10865] ERROR (-
[NGLdapSearchResultEnumerator nextObject]): does not support result
references yet.

I thank their help
Thank you
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Help with SOGO Sieve Support

2018-09-07 Thread Philip Grueter

Hi,

sorry, I couldn't work for long on the mailserver for varoius reasons. 
Now I got back to it and I have another new problem.

I have no idea where to get the credentials for the sieve.creds
Is it saved in any config file, cause I haven't found one. Do you have 
any idea where to find these?


Kind regards,
Philip Grüter
Am 21.08.2018 um 16:08 schrieb Christian Mack 
(christian.m...@uni-konstanz.de):

Hello

That credentials file is needed, when sogo does changes to the sieve
configuration, e.g. for enabling and disabling/deleting vacation 
messages.

You have to put the SIEVE master account and its password seperated by a
colon in there.
E.g.:
dovecotMaster:StrongSecret

If your SIEVE doesn't support the date extension, then you also need to
activate the cron job for enabling and disabling, see
 




Kind regards,
Christian Mack

Am 21.08.2018 um 10:37 schrieb Philip Grueter 
(philip.grue...@braintags.de):

I did activate SIEVE in Dovecot, I didnt't knew about an sieve.creds
that I had to create, I just folloewd this short guide:
https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
What do I have to put in this file?

Best regards
Philip


Am 21.08.2018 um 10:19 schrieb Christian Mack
(christian.m...@uni-konstanz.de):

Am 20.08.2018 um 11:12 schrieb Philip Grueter
(philip.grue...@braintags.de):

Hi guys,

i hope this is how this mailing list works, I just try to describe my
problem ^^

We habe an iredmail Mailserver where I recently deactivated 
roundcube to

use the sieve support from SOGo.
(I just removed the entrys from /etc/httpd/conf.d/ssl.conf and
/etc/httpd/conf.d/roundcube.conf).
I activated SOGo sieve support like this:
https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
Now I get the option to activate Vacation in SOGo, but nothing works.
When I try to save, I get the message "service temporarily 
unavailable",

but when I reload the site, it is in fact saved. But the vacation
response doesn't work.

In the Maildir directory, there is no dovecot.sieve or sogo.sieve 
file

and I get no error entrys in the /var/log/dovecot-sieve.log file.
At this point I have no idea what to do.

Hope someone can give me some advice


Did you activate SIEVE in dovecot?
Did you create /etc/sogo/sieve.creds for admin access to managesieve?


Kind regards,
Christian Mack







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

Re: [SOGo] Help with SOGO Sieve Support

2018-08-21 Thread Christian Mack
Hello

That credentials file is needed, when sogo does changes to the sieve
configuration, e.g. for enabling and disabling/deleting vacation messages.
You have to put the SIEVE master account and its password seperated by a
colon in there.
E.g.:
dovecotMaster:StrongSecret

If your SIEVE doesn't support the date extension, then you also need to
activate the cron job for enabling and disabling, see



Kind regards,
Christian Mack

Am 21.08.2018 um 10:37 schrieb Philip Grueter (philip.grue...@braintags.de):
> I did activate SIEVE in Dovecot, I didnt't knew about an sieve.creds
> that I had to create, I just folloewd this short guide:
> https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
> What do I have to put in this file?
> 
> Best regards
> Philip
> 
> 
> Am 21.08.2018 um 10:19 schrieb Christian Mack
> (christian.m...@uni-konstanz.de):
>> Am 20.08.2018 um 11:12 schrieb Philip Grueter
>> (philip.grue...@braintags.de):
>>> Hi guys,
>>>
>>> i hope this is how this mailing list works, I just try to describe my
>>> problem ^^
>>>
>>> We habe an iredmail Mailserver where I recently deactivated roundcube to
>>> use the sieve support from SOGo.
>>> (I just removed the entrys from /etc/httpd/conf.d/ssl.conf and
>>> /etc/httpd/conf.d/roundcube.conf).
>>> I activated SOGo sieve support like this:
>>> https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
>>> Now I get the option to activate Vacation in SOGo, but nothing works.
>>> When I try to save, I get the message "service temporarily unavailable",
>>> but when I reload the site, it is in fact saved. But the vacation
>>> response doesn't work.
>>>
>>> In the Maildir directory, there is no dovecot.sieve or sogo.sieve file
>>> and I get no error entrys in the /var/log/dovecot-sieve.log file.
>>> At this point I have no idea what to do.
>>>
>>> Hope someone can give me some advice
>>>
>> Did you activate SIEVE in dovecot?
>> Did you create /etc/sogo/sieve.creds for admin access to managesieve?
>>
>>
>> Kind regards,
>> Christian Mack
>>
> 


-- 
Christian Mack
Universität Konstanz
Kommunikations-, Informations-, Medienzentrum (KIM)
Abteilung Basisdienste
78457 Konstanz
+49 7531 88-4416



smime.p7s
Description: S/MIME Cryptographic Signature


Re: [SOGo] Help with SOGO Sieve Support

2018-08-21 Thread Philip Grueter
I did activate SIEVE in Dovecot, I didnt't knew about an sieve.creds 
that I had to create, I just folloewd this short guide:

https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
What do I have to put in this file?

Best regards
Philip


Am 21.08.2018 um 10:19 schrieb Christian Mack 
(christian.m...@uni-konstanz.de):

Am 20.08.2018 um 11:12 schrieb Philip Grueter (philip.grue...@braintags.de):

Hi guys,

i hope this is how this mailing list works, I just try to describe my
problem ^^

We habe an iredmail Mailserver where I recently deactivated roundcube to
use the sieve support from SOGo.
(I just removed the entrys from /etc/httpd/conf.d/ssl.conf and
/etc/httpd/conf.d/roundcube.conf).
I activated SOGo sieve support like this:
https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
Now I get the option to activate Vacation in SOGo, but nothing works.
When I try to save, I get the message "service temporarily unavailable",
but when I reload the site, it is in fact saved. But the vacation
response doesn't work.

In the Maildir directory, there is no dovecot.sieve or sogo.sieve file
and I get no error entrys in the /var/log/dovecot-sieve.log file.
At this point I have no idea what to do.

Hope someone can give me some advice


Did you activate SIEVE in dovecot?
Did you create /etc/sogo/sieve.creds for admin access to managesieve?


Kind regards,
Christian Mack



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


[SOGo] Help with SOGO Sieve Support

2018-08-20 Thread Philip Grueter

Hi guys,

i hope this is how this mailing list works, I just try to describe my 
problem ^^


We habe an iredmail Mailserver where I recently deactivated roundcube to 
use the sieve support from SOGo.
(I just removed the entrys from /etc/httpd/conf.d/ssl.conf and 
/etc/httpd/conf.d/roundcube.conf).
I activated SOGo sieve support like this: 
https://docs.iredmail.org/why.no.sieve.support.in.sogo.html
Now I get the option to activate Vacation in SOGo, but nothing works. 
When I try to save, I get the message "service temporarily unavailable", 
but when I reload the site, it is in fact saved. But the vacation 
response doesn't work.


In the Maildir directory, there is no dovecot.sieve or sogo.sieve file 
and I get no error entrys in the /var/log/dovecot-sieve.log file.

At this point I have no idea what to do.

Hope someone can give me some advice

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


Re: [SOGo] Help with Resources in SOGo

2017-07-24 Thread Christian Mack
Am 24.07.2017 um 16:16 schrieb Tobias Brunner (tob...@tobru.ch):
> Hi,
> 
> I'm trying to configure resource booking in SOGo like described here:
> http://wiki.sogo.nu/ResourceConfiguration. I've managed to add the
> calendarResource schema to 389DS and the example resource as entry to
> the LDAP directory.
> 
> In sogo.conf I added the location where the resources are stored in LDAP
> to SOGoUserSources:
> 
>   SOGoUserSources = (
> {
>   type = ldap;
>   CNFieldName = cn;
>   UIDFieldName = uid;
>   IDFieldName = uid;
>   MailFieldNames = (mail, alias);
>   bindFields = (uid, mail);
>   baseDN = "ou=SOGo,ou=Service Access,ou=Views,dc=example,dc=com";
>   bindDN = "uid=sogo-service,ou=Special Users,dc=example,dc=com";
>   bindPassword = HIDDEN;
>   canAuthenticate = YES;
>   displayName = "Users";
>   hostname = ldaps://ldap.example.com:636;
>   id = public;
>   isAddressBook = YES;
>   listRequiresDot = NO;
> {
>   type = ldap;
>   CNFieldName = cn;
>   UIDFieldName = cn;
>   IDFieldName = cn;
>   MultipleBookingsFieldName = Multiplebookings;
>   KindFieldName = Kind;
>   baseDN = "ou=Resources,dc=example,dc=com";
>   bindDN = "uid=sogo-service,ou=Special Users,dc=example,dc=com";
>   bindPassword = HIDDEN;
>   canAuthenticate = NO;
>   displayName = "Resources";
>   hostname = ldaps://ldap.example.com:636;
>   id = vshn_resources;
>   isAddressBook = YES;
>   listRequiresDot = NO;
> }
>   );
> 
> At least I can see the defined resource in the address book. But in the
> new event view it doesn't appear as resource. I can add it in the
> "Invite Attendees" field, but it shows as regular user. Shouldn't it be
> displayed as resource?
> 

No, there is no visible difference between normal accounts and resource
accounts.
This is by design, and some users depend on that, as they use normal
user accounts with resource attributes, in order to automatically accept
invitations when free.


> In the documentation I read "Be sure that the resource has set at
> MINIMUM "View Time and Date" for "All Authenticated Users" is set in
> ACL". How can I do that? The resource is not able to login to SOGo as
> there is no password set.
> 

You could do that as Super User (see SOGoSuperUsernames) in the web
frontend, or using sogo-tool manage-acl on the command line.

If you have set your default privileges in your sogo.conf (see
SOGoCalendarDefaultRoles), then perhaps you do not have to do anything.
Those default roles are inherited when creating a calendar.


> Does the resource need a mailbox? Or is this handled internally in SOGo?
> If the resource needs a mailbox, does SOGo query the Inbox regularly? If
> yes, how do I set this up? (password, schedule).
> 

Yes, it needs a mailbox for invitation emails.

This mailbox is not processed by SOGo in any way.
And it can not, as SOGo does not know your IMAP passwords.

If you receive invitations from within the same SOGo instance, those
emails are not needed, it will autoaccept those invitations internally.

But when you receive invitations from outside, SOGo will not see them.
They have to be added manually from someone logging in as resource user.


> Thanks for any help as I can't find more documentation than the above
> linked Wiki page. Or maybe I miss something. Any links are appreciated.
> 

Some of those questions where handeled in this mailing list, but it is
not easy to search and find things here.


Kind regards,
Christian Mack

-- 
Christian Mack
Universität Konstanz
Kommunikations-, Informations-, Medienzentrum (KIM)
Abteilung Basisdienste
78457 Konstanz
+49 7531 88-4416



smime.p7s
Description: S/MIME Cryptographic Signature


[SOGo] Help with Resources in SOGo

2017-07-24 Thread Tobias Brunner
Hi,

I'm trying to configure resource booking in SOGo like described here:
http://wiki.sogo.nu/ResourceConfiguration. I've managed to add the
calendarResource schema to 389DS and the example resource as entry to
the LDAP directory.

In sogo.conf I added the location where the resources are stored in LDAP
to SOGoUserSources:

  SOGoUserSources = (
{
  type = ldap;
  CNFieldName = cn;
  UIDFieldName = uid;
  IDFieldName = uid;
  MailFieldNames = (mail, alias);
  bindFields = (uid, mail);
  baseDN = "ou=SOGo,ou=Service Access,ou=Views,dc=example,dc=com";
  bindDN = "uid=sogo-service,ou=Special Users,dc=example,dc=com";
  bindPassword = HIDDEN;
  canAuthenticate = YES;
  displayName = "Users";
  hostname = ldaps://ldap.example.com:636;
  id = public;
  isAddressBook = YES;
  listRequiresDot = NO;
{
  type = ldap;
  CNFieldName = cn;
  UIDFieldName = cn;
  IDFieldName = cn;
  MultipleBookingsFieldName = Multiplebookings;
  KindFieldName = Kind;
  baseDN = "ou=Resources,dc=example,dc=com";
  bindDN = "uid=sogo-service,ou=Special Users,dc=example,dc=com";
  bindPassword = HIDDEN;
  canAuthenticate = NO;
  displayName = "Resources";
  hostname = ldaps://ldap.example.com:636;
  id = vshn_resources;
  isAddressBook = YES;
  listRequiresDot = NO;
}
  );

At least I can see the defined resource in the address book. But in the
new event view it doesn't appear as resource. I can add it in the
"Invite Attendees" field, but it shows as regular user. Shouldn't it be
displayed as resource?

In the documentation I read "Be sure that the resource has set at
MINIMUM "View Time and Date" for "All Authenticated Users" is set in
ACL". How can I do that? The resource is not able to login to SOGo as
there is no password set.

Does the resource need a mailbox? Or is this handled internally in SOGo?
If the resource needs a mailbox, does SOGo query the Inbox regularly? If
yes, how do I set this up? (password, schedule).

Thanks for any help as I can't find more documentation than the above
linked Wiki page. Or maybe I miss something. Any links are appreciated.

Best,
Tobias



signature.asc
Description: OpenPGP digital signature


[SOGo] [Help] Sogo and External SMTP

2017-01-09 Thread Andrea Cuccuru

  
  
Hi,
I'm trying to configure sogo to send email notifications using an external SMTP server.
The problem is that, in some users, the password of the mail server is different to the ldap one. This causes sogo not send the e-mail to the attendees when a new event is created.

  /* Mail */
  SOGoDraftsFolderName = Drafts;
  SOGoSentFolderName = Sent;
  SOGoTrashFolderName = Trash;
  SOGoMailingMechanism = smtp;
  SOGoMailDomain = mydomain.com;
  SOGoSMTPServer = mail.mydomain.com;
  SOGoIMAPServer = imaps://mail.mydomain.com;
  SOGoSMTPAuthenticationType = PLAIN;
  SOGoForceExternalLoginWithEmail = YES;
  SOGoMailSpoolPath = /var/spool/mail/sogo;
  NGImap4ConnectionStringSeparator = "/";
//  SOGoMailCustomFromEnabled = YES;
//  SOGoMailCustomEmail = s...@mydomain.com;

  /* Notifications */
  SOGoAppointmentSendEMailNotifications = YES;
  SOGoACLsSendEMailNotifications = YES;
  SOGoFoldersSendEMailNotifications = YES;
  SOGoNotifyOnPersonalModifications = YES;
 
This is part of the sogo.conf file. /etc/cron.d/sogo is already configured with the -p /credfile.
What should I change again?

Best Regards,
Andrea Cuccuru
  

-- users@sogo.nuhttps://inverse.ca/sogo/lists


Re: [SOGo] Help: Can't login anymore with one particular user

2016-06-22 Thread Christian Mack
Hello

Am 22.06.2016 um 22:11 schrieb Peter Lohmann (em...@peter-lohmann.ch):
> Hi!
> 
> I've had a server maintenance window with downtime today, and after the
> reboot that I cannot login with my normal user anymore.
> 
> I get a
> 
> object not found: SOGo => em...@peter-lohmann.ch
> 
> message back.
> 
> Jun 22 22:06:50 sogod [4028]: SOGoRootPage successful login from
> '91.190.31.135' for user 'em...@peter-lohmann.ch' - expire = -1  grace = -1
> Jun 22 22:06:50 sogod [4028]: 91.190.31.135 "POST /SOGo/connect
> HTTP/1.1" 200 27/85 0.164 - - 0
> 2016-06-22 22:06:50.894 sogod[4028] ERROR(-[NSNull(misc)
> forwardInvocation:]): called selector objectForKey: on NSNull !
> 2016-06-22 22:06:50.894 sogod[4028] ERROR(-[NSNull(misc)
> forwardInvocation:]): called selector objectForKey: on NSNull !
> 2016-06-22 22:06:50.898 sogod[4028] ERROR(-[NSNull(misc)
> forwardInvocation:]): called selector setObject:forKey: on NSNull !
> 2016-06-22 22:06:50.898 sogod[4028]   didn't set return value for type 'v'
> Jun 22 22:06:50 sogod [4028]: 91.190.31.135 "GET
> /SOGo/so/em...@peter-lohmann.ch HTTP/1.1" 404 40/0 0.052 - - 0
> 
> 
> 
> For other users it seems to work fine though.
> 
> What can I do?
> 

Did you try cleaning your browser cache?
Sometimes there is old cruft from the last version.


Kind regards,
Christian Mack
-- 
Christian Mack
Universität Konstanz
Kommunikations-, Informations-, Medienzentrum (KIM)
Abteilung Basisdienste
78457 Konstanz
+49 7531 88-4416



smime.p7s
Description: S/MIME Cryptographic Signature


[SOGo] Help: Can't login anymore with one particular user

2016-06-22 Thread Peter Lohmann
Hi!

I've had a server maintenance window with downtime today, and after the
reboot that I cannot login with my normal user anymore.

I get a

object not found: SOGo => em...@peter-lohmann.ch

message back.

Jun 22 22:06:50 sogod [4028]: SOGoRootPage successful login from
'91.190.31.135' for user 'em...@peter-lohmann.ch' - expire = -1  grace = -1
Jun 22 22:06:50 sogod [4028]: 91.190.31.135 "POST /SOGo/connect
HTTP/1.1" 200 27/85 0.164 - - 0
2016-06-22 22:06:50.894 sogod[4028] ERROR(-[NSNull(misc)
forwardInvocation:]): called selector objectForKey: on NSNull !
2016-06-22 22:06:50.894 sogod[4028] ERROR(-[NSNull(misc)
forwardInvocation:]): called selector objectForKey: on NSNull !
2016-06-22 22:06:50.898 sogod[4028] ERROR(-[NSNull(misc)
forwardInvocation:]): called selector setObject:forKey: on NSNull !
2016-06-22 22:06:50.898 sogod[4028]   didn't set return value for type 'v'
Jun 22 22:06:50 sogod [4028]: 91.190.31.135 "GET
/SOGo/so/em...@peter-lohmann.ch HTTP/1.1" 404 40/0 0.052 - - 0



For other users it seems to work fine though.

What can I do?

Thank you and kind regards,

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


Re: [SOGo] Help: SOGo login page doesn't work

2016-04-16 Thread Zhang Huangbin

> On Apr 16, 2016, at 11:31 PM, Zhang Huangbin  wrote:
> 
>// This is the equivalent of an AJAX call to 
> /SOGo/so/_UserLogin_/date

if i access URL "https:///SOGo/so//date directly, SOGo shows 
error message:


Proxy Error

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /SOGo/so//date.

Reason: Error reading from remote server


And one error message in SOGo log file:

---
EXCEPTION:  NAME:NSInvalidArgumentException 
REASON:Tried to add nil to array INFO:(null)
<0x0x7fec55c49ab0[WOWatchDogChild]> child 18044 exited
<0x0x7fec55c49ab0[WOWatchDogChild]>  (terminated due to signal 6)
<0x0x7fec559a3a20[WOWatchDog]> child spawned with pid 18569--
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] Help: SOGo login page doesn't work

2016-04-16 Thread Zhang Huangbin
Dear all,

I got some web page errors while loading SOGo login page (nightly build, 
201604160213), and it just shows a blank page. Need some help to figure out 
what the problem is. (note: same issue happened with SOGo 2.3.10 and 3.0.2.)

*) first error: "Uncaught SyntaxError: Unexpected token (", index page, line 
268.

The HTML code is:

---
// This is the equivalent of an AJAX call to 
/SOGo/so/_UserLogin_/date
var currentDay = {(null): (null), (null): (null), (null): 23683, 
(null): {(null): (null), (null): (null)}, (null): (null), (null): (null)};
var clabels = {(null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null)};
var labels = {(null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null), (null): (null), (null): (null), (null): (null), 
(null): (null), (null): (null)};
  
-

*) second error:

---
angular.js:38 Uncaught Error: [$injector:modulerr] 
http://errors.angularjs.org/1.4.10/$injector/modulerr?p0=SOGo.MainUI=Err…%2FSOGo.woa%2FWebServerResources%2Fjs%2Fvendor%2Fangular.min.js%3A19%3A463)(anonymous
 function) @ angular.js:38(anonymous function) @ angular.js:4484p @ 
angular.js:341g @ angular.js:4439db @ angular.js:4587c @ angular.js:1677yc @ 
angular.js:1698de @ angular.js:1592(anonymous function) @ angular.js:29657b @ 
angular.js:3156Pf @ angular.js:3369Of.d @ angular.js:3365


While accesing SOGo, there's one error message:

--
sogod[18044] GSFromUnicode() No iconv for encoding x9c000100
--

Any idea?

Thanks for your time.
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] help: sending not possible after latest sope updates

2016-03-06 Thread Ludovic Marcotte

On 2016-03-06 09:52, ruud.van.l...@zonnet.nl wrote:

Never mind, my bad:(
I copied the email address in the to field, normally this would be converted
to an actual email, in the 3 version it doesn't and you need to press enter or
tab after the copy, clicking with the mouse on the subject field does not
change the copied (or typed in email) into a recognized email.

See: http://sogo.nu/bugs/view.php?id=3470

--
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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


Re: [SOGo] help: sending not possible after latest sope updates

2016-03-06 Thread ruud.van.lent
Never mind, my bad :(
I copied the email address in the to field, normally this would be converted
to an actual email, in the 3 version it doesn't and you need to press enter or
tab after the copy, clicking with the mouse on the subject field does not
change the copied (or typed in email) into a recognized email.

still room for improvement I guess :)
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] help: sending not possible after latest sope updates

2016-03-06 Thread ruud.van.lent
hi, just did an apt-get update and apt-get upgrade.
I was served 9 sope packages on my ubuntu server.

After running these update sogo is still on version 3.0.2 but what is worst, I
am not able to sent any mail from any attached mail account any more: the sent
button is greyed out. I am able to save the message as a draft.

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


[SOGo] Help! inbox does not sync anymore after upgrade to nightly 2.3.6.20160121!

2016-01-21 Thread Andreas Blaha
Anyone got the same symptoms? Subfolders mainly work (as far as I can see .)

Please help!

 

This is what I see in sogo.log:

 



2016-01-21 20:36:44.999 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path = '/android1426226542656'

2016-01-21 20:36:44.1000 sogod[1032] PG0x0x7f82618a6d68 SQL: UPDATE
sogo_cache_folder_ablaha  SET c_lastmodified = 1453405004, c_deleted = 0,
c_version = 602, c_content = '3wMAAAJTeW5j

S2V5AAwxMDE3MS0zMjgwOAADRGF0ZUNhY2hlADACAAARMTAxODEAGgAA

ADIwMTYtMDEtMjEgMjA6MzY6NDMgKzAxMDAAETEwMTgyABoyMDE2LTAxLTIxIDIwOjM2

OjQ0ICswMTAwABExMDE4MwAaMjAxNi0wMS0yMSAyMDozNjo0NCArMDEwMAARMTAxODQA

GgAAADIwMTYtMDEtMjEgMjA6MzY6NDQgKzAxMDAAETEwMTg1ABoyMDE2LTAxLTIxIDIw

OjM2OjQ0ICswMTAwABExMDE4NgAaMjAxNi0wMS0yMSAyMDozNjo0NCArMDEwMAARMTAx

ODcAGgAAADIwMTYtMDEtMjEgMjA6MzY6NDQgKzAxMDAAETEwMTcxABoyMDE2LTAxLTIx

IDIwOjM2OjQzICswMTAwABExMDE4OAAaMjAxNi0wMS0yMSAyMDozNjo0NCArMDEwMAAR

MTAxODkAGgAAADIwMTYtMDEtMjEgMjA6MzY6NDQgKzAxMDAAETEwMTc0ABoyMDE2LTAx

LTIxIDIwOjM2OjQzICswMTAwABExMDE3NQAaMjAxNi0wMS0yMSAyMDozNjo0MyArMDEw

MAARMTAxNzYAGgAAADIwMTYtMDEtMjEgMjA6MzY6NDMgKzAxMDAAETEwMTc3ABoyMDE2

LTAxLTIxIDIwOjM2OjQzICswMTAwABExMDE4MAAaMjAxNi0wMS0yMSAyMDozNjo0MyAr

MDEwM0ZvbGRlck9wdGlvbnMAMgJCb2R5UHJlZmVyZW5jZVR5cGUAAgAAADIAAk1J

TUVTdXBwb3J0AAIwAAACSW5pdGlhbExvYWRTZXF1ZW5jZQAGMzI4MDgAAmRpc3Bs

YXlOYW1lAAYAAABJTkJPWAADU3luY0NhY2hlAAQBAAACMTAxODEABgAAADMyNzk5AAIxMDE4

MgAGMzI4MDAAAjEwMTgzAAYzMjgwOAACMTAxODQABgAAADMyODAyAAIxMDE4NQAG

MzI4MDQAAjEwMTg2AAYzMjgwNQACMTAxODcABgAAADMyODA2AAIxMDE3MQAG

MzI3NzQAAjEwMTg4AAYzMjgwNwACMTAxODkABgAAADMyODA3AAIxMDE3NAAGMzI3

ODUAAjEwMTc1AAYzMjc4OAACMTAxNzYABgAAADMyNzkwAAIxMDE3NwAGMzI3OTEA

AjEwMTgwAAYzMjc5Ng==' WHERE c_path =
'/android1426226542656+folder270243073647115540670f5b5cd8'

2016-01-21 20:36:45.001 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path =
'/android1426226542656+folder270243073647115540670f5b5cd8' AND c_versio

n > 602

2016-01-21 20:36:45.001 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path = '/android1426226542656'

Jan 21 20:36:45 sogod [1032]: <0x0x7f8260d39868[SOGoActiveSyncDispatcher]>
Change detected during Sync, we push the content.

Jan 21 20:36:45 sogod [1032]: [ERROR] <0x0x7f82610a0638[NSDataMalloc]>
xml2wbxmlFromContent: failed: Parsing of XML Document Failed

 

Jan 21 20:36:45 sogod [1032]: |SOGo| request took 2.559123 seconds to
execute

Jan 21 20:36:45 sogod [1032]: 62.218.75.43 "POST
/SOGo/Microsoft-Server-ActiveSync?Cmd=Sync=ablaha=android14262
26542656=Android HTTP/1.1" 200 0/97 2.561 - - 4K

Jan 21 20:36:45 sogod [1032]: |SOGo| starting method 'POST' on uri
'/SOGo/Microsoft-Server-ActiveSync?Cmd=Sync=ablaha=android1426
226542656=Android'

2016-01-21 20:36:45.447 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT count(*)
FROM sogo_cache_folder_ablaha

2016-01-21 20:36:45.448 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path = '/android1426226542656'

2016-01-21 20:36:45.449 sogod[1032] PG0x0x7f82618a6d68 SQL: UPDATE
sogo_cache_folder_ablaha  SET c_lastmodified = 1453405005, c_deleted = 0,
c_version = 664, c_content = 'eQIAABBTeW5jU

mVxdWVzdCttYWlsLzcwOWU0NDAwZDUwNjEzNTU5NjQyMDAwMDBmNWI1Y2Q4

AAwEAAAQU3luY1JlcXVlc3QrbWFpbC9lMzVkNmEwNjM2NzYxMjU1MjIzYzAwMDAwZjViNWNk

OACICAAAEFN5bmNSZXF1ZXN0K21haWwvYzE5MGYxMmIzYTA4MTM1NTBiNDUwMDAwMGY1YjVj

ZDgAmEkAABBTeW5jUmVxdWVzdCt2ZXZlbnQvcGVyc29uYWwAEgQAABBTeW5jUmVxdWVzdCtt

YWlsL2U5Mzc2NzAwYzc3NTEyNTU4ODNiMDAwMDBmNWI1Y2Q4ABIEAAAQU3luY1JlcXVlc3Qr

bWFpbC8yNzAyNDMwNzM2NDcxMTU1NDA2NzAwMDAwZjViNWNkOAAIBAAAEFN5bmNSZXF1ZXN0

K21haWwvOTY3ZDcxMzQ3MjA3MTM1NTdmNDMwMDAwMGY1YjVjZDgAhjoAABBTeW5jUmVxdWVz

dCt2Y2FyZC9wZXJzb25hbAASBAAAEFN5bmNSZXF1ZXN0AE0zoVYQU3luY1JlcXVlc3QrbWFp

bC9hZmU4ODMyYmYzNWVmODU1NDAwYjAwMDAwZjViNWNkOAC5CAAAEFN5bmNSZXF1ZXN0K21h

aWwvMDI5MGNlMTk4NTA3MTM1NTk3NDMwMDAwMGY1YjVjZDgAFQQAABBTeW5jUmVxdWVzdCtt

YWlsLzAyYjQ0MjAxNjgwNzEzNTU2ZjQzMDAwMDBmNWI1Y2Q4ABUEAAACRm9sZGVyU3luY0tl

eQAgbHZwczE3Ni0yOC0xNy0zNl80MTJfMWM1MTY4MzdfMgAA' WHERE c_path =
'/android1426226542656'

2016-01-21 20:36:45.759 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path =
'/android1426226542656+folder270243073647115540670f5b5cd8'

2016-01-21 20:36:45.760 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path =
'/android1426226542656+folder270243073647115540670f5b5cd8' AND c_version
> 602

Jan 21 20:36:46 sogod [1032]: <0x0x7f826094f8c8[NGImap4Client]> Note: no key
found for sorting, using 'DATE': (null)

2016-01-21 20:36:47.991 sogod[1032] PG0x0x7f82618a6d68 SQL: SELECT * FROM
sogo_cache_folder_ablaha WHERE c_path = '/android1426226542656'

2016-01-21 20:36:47.993 sogod[1032] PG0x0x7f82618a6d68 SQL: UPDATE
sogo_cache_folder_ablaha  SET c_lastmodified = 1453405007, c_deleted = 0,
c_version 

Re: [SOGo] Help! inbox does not sync anymore after upgrade to nightly 2.3.6.20160121!

2016-01-21 Thread tfu
Hi Andreas!

Set SOGoEASDebugEnabled = YES in sogo.conf and check for files in /tmp when
the parsing erros is reported in sogo.log

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


Re: Re: [SOGo] Help! inbox does not sync anymore after upgrade to nightly 2.3.6.20160121!

2016-01-21 Thread tfu
Hi!
Compare the emails on the device with the emails in your inbox (webui).
One of the mails not showing up on the client causes the issue.
If you send me (privately)  one of the files in /tmp I can have a look.

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


Re: [SOGo] Help! inbox does not sync anymore after upgrade to nightly 2.3.6.20160121!

2016-01-21 Thread Andreas Blaha

Am Donnerstag, 21. Januar 2016 21:29 CET,  schrieb:

> Hi Andreas!
>
> Set SOGoEASDebugEnabled = YES in sogo.conf and check for files in /tmp when
> the parsing erros is reported in sogo.log
>
> Regards,
> Thomas
> --
> users@sogo.nu
> https://inverse.ca/sogo/lists




Hi Thomas,
many thanks for helping out again and again!
I actually DO get loads of data files in /tmp with file structure like this:  
lvps176-28-17-36_425_1c51818b_4b.data, Content are actually emails I should get 
into my inbox. strangely this seems to affect only my own mailbox, no one else 
has reported issues with this (my mailbox is rather large in comparison)
any idea what might cause this? the effect has only started after upgrading to 
the latest nightly, an hour before all was fine

best
Andy

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

Re: [SOGo] Help on SOGo

2014-04-06 Thread Götz Reinicke - IT Koordinator
Am 06.04.14 15:27, schrieb Dawit Ayele:
 Hi All,
 
 I configured sogo with OpenLDAP for Authentication. but when i try to
 login it is showing me: object not found. Please help. thx

Hi,

what dose your config looks like?

/Götz

-- 
Götz Reinicke
IT-Koordinator

Tel. +49 7141 969 82 420
Fax  +49 7141 969 55 420
E-Mail goetz.reini...@filmakademie.de

Filmakademie Baden-Württemberg GmbH
Akademiehof 10
71638 Ludwigsburg
www.filmakademie.de

Eintragung Amtsgericht Stuttgart HRB 205016

Vorsitzender des Aufsichtsrats:
Jürgen Walter MdL
Staatssekretär im Ministerium für Wissenschaft,
Forschung und Kunst Baden-Württemberg

Geschäftsführer:
Prof. Thomas Schadt
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] HELP - Microsft Outlook

2014-02-16 Thread Julien Kerihuel
Hi,

If your workstation running Microsoft Outlook is not joined to the
domain, then the following documentation will be useful to you.

Scroll down until you reach the Outlook configuration part (more
settings etc.)

Br,
Julien.

On Sat, 2014-02-15 at 18:20 +0300, Dawit Ayele wrote:
 
 Hi,
 
 
 I am trying to configured SOGo with outlook but i am getting this
 error when i configure outlook
 
 
 Inline image 1
 
 
 
 -- 
 Best Regard
 
 Dawit Ayele
 
 

-- 
Julien Kerihuel - CTO
Twitter: http://twitter.com/jkerihuel
Key fingerprint = 08BA 50B1 9EFF 8E1E FB4A  24FA B2A9 D5F3 9624 1CC2

Easy IT for small business
www.zentyal.com


signature.asc
Description: This is a digitally signed message part


Re: [SOGo] HELP - Microsft Outlook

2014-02-16 Thread Julien Kerihuel
Better with the URL ...

http://doc.zentyal.org/3.3/en/openchange.html

Br,
Julien.

On Sat, 2014-02-15 at 18:20 +0300, Dawit Ayele wrote:
 
 Hi,
 
 
 I am trying to configured SOGo with outlook but i am getting this
 error when i configure outlook
 
 
 Inline image 1
 
 
 
 -- 
 Best Regard
 
 Dawit Ayele
 
 

-- 
Julien Kerihuel - CTO
Twitter: http://twitter.com/jkerihuel
Key fingerprint = 08BA 50B1 9EFF 8E1E FB4A  24FA B2A9 D5F3 9624 1CC2

Easy IT for small business
www.zentyal.com


signature.asc
Description: This is a digitally signed message part


Re: [SOGo] Help

2013-11-01 Thread Dawit Ayele
Thank You Richard,

I want to use PostgreSQL to authenticate users. can you please help me.

Thank you


On Wed, Oct 30, 2013 at 4:12 AM, Richard Ferrara sicr...@bigpond.net.auwrote:

 This would be a good place to start looking.

 http://www.sogo.nu/files/docs/SOGo%20Installation%20Guide.pdf
 http://wiki.sogo.nu

 On 30/10/2013, at 12:52 AM, davo...@gmail.com wrote:

  i am totally new for SOGo and i need help how to configure sogo with
 existing
  active directory 2012 on CentOS server.
 
  Thank you
  --
  users@sogo.nu
  https://inverse.ca/sogo/lists

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




-- 
Best Regard

Dawit Ayele
System Engineer
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Help

2013-11-01 Thread Pablo Carranza
This is a really good tutorial (albeit, for Ubuntu):
http://iabsis.com/EN/article/35/Installation-de-Samba4-et-Openchange-sur-un-serveur-Debian-ou-Ubuntu

​Regards,​

-Pablo

vDevices.com http://vdevices.com/ | Providing Hosted IT Solutions for
Lawyers  Other Mobile Professionals


On Tue, Oct 29, 2013 at 8:52 AM, davo...@gmail.com wrote:

 i am totally new for SOGo and i need help how to configure sogo with
 existing
 active directory 2012 on CentOS server.

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

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

[SOGo] Help

2013-10-29 Thread davoict
i am totally new for SOGo and i need help how to configure sogo with existing
active directory 2012 on CentOS server.

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


Re: [SOGo] Help

2013-10-29 Thread Richard Ferrara
This would be a good place to start looking.

http://www.sogo.nu/files/docs/SOGo%20Installation%20Guide.pdf
http://wiki.sogo.nu

On 30/10/2013, at 12:52 AM, davo...@gmail.com wrote:

 i am totally new for SOGo and i need help how to configure sogo with existing
 active directory 2012 on CentOS server.
 
 Thank you
 -- 
 users@sogo.nu
 https://inverse.ca/sogo/lists

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

Re: [SOGo] help ...

2013-08-06 Thread Szládovics Péter

2013-08-05 21:11 keltezéssel, husam.shabeeb írta:

BTS activities for Friday, August 02 2013

Dear Szládovics,

Many thanks for your help .

please  Can you send me step by step installation and configuration I 
will flow it with you ..


am using centos 6 and I have 389 directory server installed in another 
machine its ip 192.168.1.109 and dns install their too ,, ready to 
configure  with sogo ,




Dear Husam,

I not use CentOS, so I can't  give you step-by-step help.

At the first step, you need to set up Apache. Please enable the 
following modules on it:

proxy
proxy_http
headers
rewrite
ssl - if you want to use https
wsgi - if you want to use Outlook Anywhere

/etc/apache2/conf.d/SOGo.conf need to edit (I think the CentOS apache 
config directory may be is in the /etc/httpd or similar folder):


After the ## adjust the following to your configuration line:
- 'yourhostname' string change to your real hostname in DNS or your 
host's IP address

- comment out the server-port if you not use HTTPS
- edit the correct server-url line with the correct URL (http/https and 
host's dns or ip address)


Then restart the apache.

If you modify everything as well, your SOGo page will be load and 
working fine.


Which SQL backend do you plan to use?
Which LDAP listening in the port 389 on other host? OpenLDAP or MS AD? 
Will you need to bind to LDAP, or it ask-able by anonymousily? What is 
your base DN? What is your bind user? These are the most important 
things to set up SOGo for sql and ldap backends correctly.

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

Re: [SOGo] help ...

2013-08-06 Thread Szládovics Péter

Dear Husam,

I no have step-by-step help for distributed systems (some backends are 
in other hosts e.g. SQL, LDAP, etc.).
I only have a downloadable install package and a short documentation for 
it on http://www.onlinedemo.hu/71-zeg-install-script site.


This is *only* works with normal install of Ubuntu 12.04 LTS and every 
backends on that host.


If you realy need step-by-step howto, you need to read SOGo's install docs.

Cheers,
Peter

2013-08-06 23:51 keltezéssel, husam.shabeeb írta:

BTS activities for Friday, August 02 2013

Dear keltezéssel ,

Thanks , for the help ..

Well there is not much different between centos and Ubuntu or Debian  
I can work in both easily ..


For apache config file its located in .

/etc/httpd/conf.d

Any way if you have .. step by step for another Os  I can flow it with 
you to understand the way ..


For me no problem any database the important thing is how can I add 
user to the data base and login with it by the weblogin


For creation of the database its ok ,, also how to check the 
connection between the database and the sogo  .


*From:*Szládovics Péter [mailto:p...@szladovics.hu]
*Sent:* Tuesday, August 06, 2013 2:59 PM
*To:* users@sogo.nu
*Subject:* Re: [SOGo] help ...

2013-08-05 21:11 keltezéssel, husam.shabeeb írta:

Dear Szládovics,

Many thanks for your help .

please  Can you send me step by step installation and
configuration I will flow it with you ..

am using centos 6 and I have 389 directory server installed in
another machine its ip 192.168.1.109 and dns install their too ,,
ready to configure  with sogo ,


Dear Husam,

I not use CentOS, so I can't  give you step-by-step help.

At the first step, you need to set up Apache. Please enable the 
following modules on it:

proxy
proxy_http
headers
rewrite
ssl - if you want to use https
wsgi - if you want to use Outlook Anywhere

/etc/apache2/conf.d/SOGo.conf need to edit (I think the CentOS apache 
config directory may be is in the /etc/httpd or similar folder):


After the ## adjust the following to your configuration line:
- 'yourhostname' string change to your real hostname in DNS or your 
host's IP address

- comment out the server-port if you not use HTTPS
- edit the correct server-url line with the correct URL (http/https 
and host's dns or ip address)


Then restart the apache.

If you modify everything as well, your SOGo page will be load and 
working fine.


Which SQL backend do you plan to use?
Which LDAP listening in the port 389 on other host? OpenLDAP or MS AD? 
Will you need to bind to LDAP, or it ask-able by anonymousily? What is 
your base DN? What is your bind user? These are the most important 
things to set up SOGo for sql and ldap backends correctly.




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

[SOGo] help ...

2013-08-05 Thread husam.shabeeb
Dear Friend ,

I have send many emails here trying to get help now one answer me ..

am trying to configure sogo with 389 directory ..

And login user ,

 

attachment: sogo login error.png

Re: [SOGo] help ...

2013-08-05 Thread Lennart Barfod
Hi,

… just look at the logfile! 

We need more information to help you (OS, Version and error log Output …)



Am 04.08.2013 um 02:06 schrieb husam.shabeeb hus.shab...@gmail.com:

 Dear Friend ,
 I have send many emails here trying to get help now one answer me ..
 am trying to configure sogo with 389 directory ..
 And login user ,
  
 sogo login error.png

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

Re: [**SPAM**] [SOGo] help ...

2013-08-05 Thread André Schild

Am 04.08.2013 02:06, schrieb husam.shabeeb:

BTS activities for Friday, August 02 2013

Dear Friend ,

I have send many emails here trying to get help now one answer me ..

am trying to configure sogo with 389 directory ..

And login user ,


What do you see in the sogo log file on the server side ?

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

Re: [SOGo] help ...

2013-08-05 Thread Szládovics Péter

2013-08-04 02:06 keltezéssel, husam.shabeeb írta:

BTS activities for Friday, August 02 2013

Dear Friend ,

I have send many emails here trying to get help now one answer me ..

am trying to configure sogo with 389 directory ..

And login user ,



Dear Husam,

Your SOGo.conf for apache is not correct, and the CSS is unavailable for 
this reason.

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

Re: [SOGo] help ...

2013-08-05 Thread Louis-Philippe Gauthier
Dear Husam

and... You access SOGO via :2 in the URL. Normally, you must access via
http(:80) or https (:443)...


2013/8/5 Szládovics Péter p...@szladovics.hu

  2013-08-04 02:06 keltezéssel, husam.shabeeb írta:

  Dear Friend ,

 I have send many emails here trying to get help now one answer me ..

 am trying to configure sogo with 389 directory ..

 And login user ,

 ** **


 Dear Husam,

 Your SOGo.conf for apache is not correct, and the CSS is unavailable for
 this reason.




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

RE: [SOGo] help ...

2013-08-05 Thread husam.shabeeb
Dear Louis ,

 

Many thanks for your help .

please  Can you send me step by step installation and configuration I will
flow it with you ..

am using centos 6 and I have 389 directory server installed in another
machine its ip 192.168.1.109 and dns install their too ,, ready to configure
with sogo ,

 

here is the log .. 

[root@mailserver1 ~]# cat /var/log/sogo/sogo.log

Aug 04 07:17:57 sogod [1672]: version 2.0.7 (build root@shiva.inverse
201307220922) -- starting

Aug 04 07:17:57 sogod [1672]: vmem size check enabled: shutting down app
when vmem  384 MB

Aug 04 07:17:57 sogod [1672]: 0x0x29bf89c[SOGoProductLoader] SOGo products
loaded from '/usr/lib/GNUstep/SOGo':

Aug 04 07:17:57 sogod [1672]: 0x0x29bf89c[SOGoProductLoader]
SchedulerUI.SOGo, MainUI.SOGo, Appointments.SOGo, ContactsUI.SOGo,
Mailer.SOGo, PreferencesUI.SOGo, CommonUI.SOGo, Contacts.SOGo,
AdministrationUI.SOGo, MailPartViewers.SOGo, MailerUI.SOGo

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] listening on *:2

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] watchdog process
pid: 1672

Aug 04 07:18:03 sogod [1672]: 0x0x479940[WOWatchDogChild] watchdog request
timeout set to 10 minutes

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] preparing 3 children

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] child spawned with
pid 1748

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] child spawned with
pid 1749

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] child spawned with
pid 1751

2013-08-04 07:18:03.992 sogod[1749] could not open channel to sogo@localhost

Aug 04 07:18:03 sogod [1749]: [ERROR] 0x0x29ed084[GCSChannelManager] could
not open channel 0x0x2a51b4c[PostgreSQL72Channel]: not-connected for URL:
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile

Aug 04 07:18:03 sogod [1749]: [WARN] 0x0x29ed084[GCSChannelManager]   will
prevent opening of this channel 5 seconds after 2013-08-04 07:18:03 -0700

2013-08-04 07:18:03.999 sogod[1748] could not open channel to sogo@localhost

Aug 04 07:18:03 sogod [1748]: [ERROR] 0x0x29ed084[GCSChannelManager] could
not open channel 0x0x2a51b4c[PostgreSQL72Channel]: not-connected for URL:
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile

Aug 04 07:18:03 sogod [1748]: [WARN] 0x0x29ed084[GCSChannelManager]   will
prevent opening of this channel 5 seconds after 2013-08-04 07:18:03 -0700

2013-08-04 07:18:04.006 sogod[1751] could not open channel to sogo@localhost

Aug 04 07:18:04 sogod [1751]: [ERROR] 0x0x29ed084[GCSChannelManager] could
not open channel 0x0x2a51b4c[PostgreSQL72Channel]: not-connected for URL:
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile

Aug 04 07:18:04 sogod [1751]: [WARN] 0x0x29ed084[GCSChannelManager]   will
prevent opening of this channel 5 seconds after 2013-08-04 07:18:03 -0700

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with
SIGINT or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ad2514[WOWatchDogChild] sending
terminate signal to pid 1751

Aug 04 07:24:47 sogod [1672]: 0x0x2ac9b24[WOWatchDogChild] sending
terminate signal to pid 1749

Aug 04 07:24:47 sogod [1672]: 0x0x2a68d74[WOWatchDogChild] sending
terminate signal to pid 1748

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with
SIGINT or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with
SIGINT or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with
SIGINT or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ac9b24[WOWatchDogChild] child 1749
exited

Aug 04 07:24:47 sogod [1672]: 0x0x2ad2514[WOWatchDogChild] child 1751
exited

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with
SIGINT or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2a68d74[WOWatchDogChild] child 1748
exited

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] all children exited.
We now terminate.

From: Louis-Philippe Gauthier [mailto:lpgauth...@gmail.com] 
Sent: Monday, August 05, 2013 4:33 PM
To: users
Subject: Re: [SOGo] help ...

 

Dear Husam 

and... You access SOGO via :2 in the URL. Normally, you must access via
http(:80) or https (:443)... 

 

2013/8/5 Szládovics Péter p...@szladovics.hu

2013-08-04 02:06 keltezéssel, husam.shabeeb írta:

Dear Friend ,

I have send many emails here trying to get help now one answer me ..

am trying to configure sogo with 389 directory ..

And login user ,

 

 

Dear Husam,

Your SOGo.conf for apache is not correct, and the CSS is unavailable for
this reason.




-- 
Louis-Philippe Gauthier

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

RE: [SOGo] help ...

2013-08-05 Thread husam.shabeeb
Dear Szládovics ,

 

Many thanks for your help .

please  Can you send me step by step installation and configuration I will flow 
it with you ..

am using centos 6 and I have 389 directory server installed in another machine 
its ip 192.168.1.109 and dns install their too ,, ready to configure  with sogo 
,

My server installation :

Contain .. 

apache 2,Mysql , postgresql,sogo SMTP server Postfix

IMAP server Dovecot

nano /var/lib/pgsql/data/pg_hba.conf

 

here is the log .. 

[root@mailserver1 ~]# cat /var/log/sogo/sogo.log

Aug 04 07:17:57 sogod [1672]: version 2.0.7 (build root@shiva.inverse 
201307220922) -- starting

Aug 04 07:17:57 sogod [1672]: vmem size check enabled: shutting down app when 
vmem  384 MB

Aug 04 07:17:57 sogod [1672]: 0x0x29bf89c[SOGoProductLoader] SOGo products 
loaded from '/usr/lib/GNUstep/SOGo':

Aug 04 07:17:57 sogod [1672]: 0x0x29bf89c[SOGoProductLoader]   
SchedulerUI.SOGo, MainUI.SOGo, Appointments.SOGo, ContactsUI.SOGo, Mailer.SOGo, 
PreferencesUI.SOGo, CommonUI.SOGo, Contacts.SOGo, AdministrationUI.SOGo, 
MailPartViewers.SOGo, MailerUI.SOGo

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] listening on *:2

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] watchdog process pid: 
1672

Aug 04 07:18:03 sogod [1672]: 0x0x479940[WOWatchDogChild] watchdog request 
timeout set to 10 minutes

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] preparing 3 children

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] child spawned with pid 
1748

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] child spawned with pid 
1749

Aug 04 07:18:03 sogod [1672]: 0x0x2ac2614[WOWatchDog] child spawned with pid 
1751

2013-08-04 07:18:03.992 sogod[1749] could not open channel to sogo@localhost

Aug 04 07:18:03 sogod [1749]: [ERROR] 0x0x29ed084[GCSChannelManager] could 
not open channel 0x0x2a51b4c[PostgreSQL72Channel]: not-connected for URL: 
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile

Aug 04 07:18:03 sogod [1749]: [WARN] 0x0x29ed084[GCSChannelManager]   will 
prevent opening of this channel 5 seconds after 2013-08-04 07:18:03 -0700

2013-08-04 07:18:03.999 sogod[1748] could not open channel to sogo@localhost

Aug 04 07:18:03 sogod [1748]: [ERROR] 0x0x29ed084[GCSChannelManager] could 
not open channel 0x0x2a51b4c[PostgreSQL72Channel]: not-connected for URL: 
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile

Aug 04 07:18:03 sogod [1748]: [WARN] 0x0x29ed084[GCSChannelManager]   will 
prevent opening of this channel 5 seconds after 2013-08-04 07:18:03 -0700

2013-08-04 07:18:04.006 sogod[1751] could not open channel to sogo@localhost

Aug 04 07:18:04 sogod [1751]: [ERROR] 0x0x29ed084[GCSChannelManager] could 
not open channel 0x0x2a51b4c[PostgreSQL72Channel]: not-connected for URL: 
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile

Aug 04 07:18:04 sogod [1751]: [WARN] 0x0x29ed084[GCSChannelManager]   will 
prevent opening of this channel 5 seconds after 2013-08-04 07:18:03 -0700

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with SIGINT 
or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ad2514[WOWatchDogChild] sending terminate 
signal to pid 1751

Aug 04 07:24:47 sogod [1672]: 0x0x2ac9b24[WOWatchDogChild] sending terminate 
signal to pid 1749

Aug 04 07:24:47 sogod [1672]: 0x0x2a68d74[WOWatchDogChild] sending terminate 
signal to pid 1748

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with SIGINT 
or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with SIGINT 
or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with SIGINT 
or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2ac9b24[WOWatchDogChild] child 1749 exited

Aug 04 07:24:47 sogod [1672]: 0x0x2ad2514[WOWatchDogChild] child 1751 exited

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] Terminating with SIGINT 
or SIGTERM

Aug 04 07:24:47 sogod [1672]: 0x0x2a68d74[WOWatchDogChild] child 1748 exited

Aug 04 07:24:47 sogod [1672]: 0x0x2ac2614[WOWatchDog] all children exited. We 
now terminate.

 

 

 

 

From: Szládovics Péter [mailto:p...@szladovics.hu] 
Sent: Monday, August 05, 2013 4:27 PM
To: users@sogo.nu
Subject: Re: [SOGo] help ...

 

2013-08-04 02:06 keltezéssel, husam.shabeeb írta:

Dear Friend ,

I have send many emails here trying to get help now one answer me ..

am trying to configure sogo with 389 directory ..

And login user ,

 


Dear Husam,

Your SOGo.conf for apache is not correct, and the CSS is unavailable for this 
reason.

attachment: sogo login error.png

sogo.conf
Description: Binary data
SOGo requires the following :

Update Server 
Epel
Database server PostgreSQL 
LDAP server 389 Directory
SMTP server Postfix
IMAP server Dovecot
Webmin
Apache httpd 
Sogo
ntp
update  Epel ..
# yum update ...
# sudo rpm -Uhv 
http://mirror.bytemark.co.uk/fedora/epel/6/i386/epel-release-6-8.noarch.rpm

Database server PostgreSQL :
yum install postgresql
chkconfig

Re: [SOGo] help ...

2013-08-05 Thread Ludovic Marcotte

On 2013-08-05 3:11 PM, husam.shabeeb wrote:


Many thanks for your help .

please  Can you send me step by step installation and configuration I 
will flow it with you ..


am using centos 6 and I have 389 directory server installed in another 
machine its ip 192.168.1.109 and dns install their too ,, ready to 
configure  with sogo ,




It's not by copy/pasting the same stuff over and over to folks on the 
mailing list that you'll get help any faster. Worse, it might just drive 
people away from helping you.


Be patient and try hitting yourself a couple of times with a cluebat - 
by actually *reading* the documentation available out there.


--
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)

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

RE: [SOGo] help ...

2013-08-05 Thread husam.shabeeb
Dear friend ,

 

Ok ,  thanks for this note any way I have wait very long time and I didn’t get 
any replay from you , so please  accept my apologize .

 

Best regards ,

Husam .

 

From: Ludovic Marcotte [mailto:lmarco...@inverse.ca] 
Sent: Monday, August 05, 2013 10:52 PM
To: users@sogo.nu
Subject: Re: [SOGo] help ...

 

On 2013-08-05 3:11 PM, husam.shabeeb wrote:

Many thanks for your help .

please  Can you send me step by step installation and configuration I will flow 
it with you ..

am using centos 6 and I have 389 directory server installed in another machine 
its ip 192.168.1.109 and dns install their too ,, ready to configure  with sogo 
,


It's not by copy/pasting the same stuff over and over to folks on the mailing 
list that you'll get help any faster. Worse, it might just drive people away 
from helping you.

Be patient and try hitting yourself a couple of times with a cluebat - by 
actually reading the documentation available out there.



-- 
Ludovic Marcotte
lmarco...@inverse.ca  ::  +1.514.755.3630  ::  http://inverse.ca
Inverse inc. :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] help ...

2013-08-05 Thread Pablo Carranza
On Mon, Aug 5, 2013 at 2:08 PM, husam.shabeeb hus.shab...@gmail.com wrote:

 please  Can you send me step by step installation and configuration I will
 flow it


​The Sogo - Installation  Configuration guide is available at: ​
http://www.sogo.nu/english/support/documentation.html

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

[SOGo] help

2013-07-31 Thread husam.shabeeb
Dear friends  ,

 

I need help ,

 

I have install the sogo .  by yum ..

But I can't access the web site .. for it 

I can't use command s

 

Su - sogo .

Not working ..

 

Also I want to integrate it with 389 directory ..  and its installed in
another server .

 

Best regards ,

And thanks in advanced ..

 

 

 

 

 

 

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

Re: [SOGo] help

2013-07-31 Thread Christian Mack
Hello husam.shabeeb

Am 2013-07-31 01:07, schrieb husam.shabeeb:
 
 I need help ,
 
 I have install the sogo .  by yum ..
 But I can't access the web site .. for it
 I can't use command s
 
 Su – sogo .
 
 Not working ..
 

Sure, sogo is a service user now.
So you can not login as that user, as he has no shell (see /etc/passwd).

If I remember correctly this has changed in 2.0.5b.

In order to get what you want, you have to use:
sudo -u sogo bash


 Also I want to integrate it with 389 directory ..  and its installed in
 another server .
 

There is no problem with that, as long as you don't use Outlook with
OpenChange.

Just configure SOGo to use this server.
See hostname, bindDN, bindPassword, bindFields and bindAsCurrentUser in
SOGoUserSources.


Kind regards,
Christian Mack

-- 
Christian Mack
Gruppe Informationsdienste
Rechenzentrum Universität Konstanz
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


RE: [SOGo] help

2013-07-31 Thread husam.shabeeb
Dear Christian ,

Now I can access it , throw port :2000
But I can't login ,, I try sogo : sogo  its not working ,
Its because of authentication need to be configured ?
Can you help on that please ?


Best regards ,
Husam ,


-Original Message-
From: Christian Mack [mailto:christian.m...@uni-konstanz.de] 
Sent: Wednesday, July 31, 2013 4:03 PM
To: users@sogo.nu
Subject: Re: [SOGo] help

Hello husam.shabeeb

Am 2013-07-31 01:07, schrieb husam.shabeeb:
 
 I need help ,
 
 I have install the sogo .  by yum ..
 But I can't access the web site .. for it I can't use command s
 
 Su – sogo .
 
 Not working ..
 

Sure, sogo is a service user now.
So you can not login as that user, as he has no shell (see /etc/passwd).

If I remember correctly this has changed in 2.0.5b.

In order to get what you want, you have to use:
sudo -u sogo bash


 Also I want to integrate it with 389 directory ..  and its installed 
 in another server .
 

There is no problem with that, as long as you don't use Outlook with OpenChange.

Just configure SOGo to use this server.
See hostname, bindDN, bindPassword, bindFields and bindAsCurrentUser in 
SOGoUserSources.


Kind regards,
Christian Mack

--
Christian Mack
Gruppe Informationsdienste
Rechenzentrum Universität Konstanz
--
users@sogo.nu
https://inverse.ca/sogo/lists

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

RE: [SOGo] help

2013-07-31 Thread husam.shabeeb
 or SIGTERM
Jul 31 16:07:28 sogod [6266]: 0x0xb57e927c[WOWatchDogChild] sending terminate 
signal to pid 6275
Jul 31 16:07:28 sogod [6266]: 0x0xb57d9364[WOWatchDog] Terminating with 
SIGINT or SIGTERM
Jul 31 16:07:28 sogod [6266]: 0x0xb57d9364[WOWatchDog] Terminating with 
SIGINT or SIGTERM
Jul 31 16:07:28 sogod [6266]: 0x0xb57e927c[WOWatchDogChild] child 6275 exited
Jul 31 16:07:28 sogod [6266]: 0x0xb57d9364[WOWatchDog] all children exited. 
We now terminate.
Jul 31 16:07:29 sogod [7398]: version 2.0.7 (build root@shiva.inverse 
201307220922) -- starting
Jul 31 16:07:29 sogod [7398]: vmem size check enabled: shutting down app when 
vmem  384 MB
Jul 31 16:07:29 sogod [7398]: 0x0xb64a32b4[SOGoProductLoader] SOGo products 
loaded from '/usr/lib/GNUstep/SOGo':
Jul 31 16:07:29 sogod [7398]: 0x0xb64a32b4[SOGoProductLoader]   
SchedulerUI.SOGo, MainUI.SOGo, Appointments.SOGo, ContactsUI.SOGo, Mailer.SOGo, 
PreferencesUI.SOGo, CommonUI.SOGo, Contacts.SOGo, AdministrationUI.SOGo, 
MailPartViewers.SOGo, MailerUI.SOGo
Jul 31 16:07:29 sogod [7398]: 0x0xb63e63ec[WOWatchDog] listening on *:2
Jul 31 16:07:29 sogod [7398]: 0x0xb63e63ec[WOWatchDog] watchdog process pid: 
7398
Jul 31 16:07:29 sogod [7398]: 0x0x5ff940[WOWatchDogChild] watchdog request 
timeout set to 10 minutes
Jul 31 16:07:29 sogod [7398]: 0x0xb63e63ec[WOWatchDog] preparing 1 children
Jul 31 16:07:29 sogod [7398]: 0x0xb63e63ec[WOWatchDog] child spawned with pid 
7407
2013-07-31 16:07:30.034 sogod[7407] could not open channel to sogo@localhost
Jul 31 16:07:30 sogod [7407]: [ERROR] 0x0xb6549054[GCSChannelManager] could 
not open channel 0x0xb67e8e44[PostgreSQL72Channel]: not-connected for URL: 
postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile
Jul 31 16:07:30 sogod [7407]: [WARN] 0x0xb6549054[GCSChannelManager]   will 
prevent opening of this channel 5 seconds after 2013-07-31 16:07:29 -0400

-Original Message-
From: Christian Mack [mailto:christian.m...@uni-konstanz.de] 
Sent: Wednesday, July 31, 2013 4:03 PM
To: users@sogo.nu
Subject: Re: [SOGo] help

Hello husam.shabeeb

Am 2013-07-31 01:07, schrieb husam.shabeeb:
 
 I need help ,
 
 I have install the sogo .  by yum ..
 But I can't access the web site .. for it I can't use command s
 
 Su – sogo .
 
 Not working ..
 

Sure, sogo is a service user now.
So you can not login as that user, as he has no shell (see /etc/passwd).

If I remember correctly this has changed in 2.0.5b.

In order to get what you want, you have to use:
sudo -u sogo bash


 Also I want to integrate it with 389 directory ..  and its installed 
 in another server .
 

There is no problem with that, as long as you don't use Outlook with OpenChange.

Just configure SOGo to use this server.
See hostname, bindDN, bindPassword, bindFields and bindAsCurrentUser in 
SOGoUserSources.


Kind regards,
Christian Mack

--
Christian Mack
Gruppe Informationsdienste
Rechenzentrum Universität Konstanz
--
users@sogo.nu
https://inverse.ca/sogo/lists

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

[SOGo] possible working free CardDAV Client for Outlook and SOGo - help needed

2013-06-03 Thread Der PCFreak

Hi,

I found this nice Outlook Add-In for CardDAV Support.

http://support.atmail.com/display/A7DOCS/Atmail+DavSync+Plugin+for+Microsoft+Outlook
http://download.atmail.com/getsync.php

It is from the atmail project and free.

It seems it would support connecting to SOGo as well but I cannot get it 
to work.


I have a working setup that can sync with iOS. Maybe only some small 
rewrite rule is necessary to get this client to work.


I think this would help many others.

Maybe someone with more SOGo knowledge than me can try to connect with 
the plugin and show it's working config?


Thanks in advance

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


Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-22 Thread CF Studelec
Le 22/02/2013 08:04, André Schild a écrit :
 Am 22.02.2013 07:05, schrieb Szládovics Péter:
 2013-02-21 23:52 keltezéssel, CF Studelec írta:
 On my side, this is mainly through an LDAP client.
 2) Basically i need a tool for managing LDAP. I use the one provided
 with Webmin *OR* Jxplorer, a java tool able to do this.
 Don't forget Apache Directory Studio,
 we used JXplorer too, but since finding the Apache Directory Studio we
 are using this one.

 André
Thanks for the tip, i'll have a look at it !
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-22 Thread mourik jan heupink

Hi,


2) Basically i need a tool for managing LDAP. I use the one provided
with Webmin *OR* Jxplorer, a java tool able to do this.

We're very happy with LAM:
https://www.ldap-account-manager.org/lamcms/

It does exactly what we need, has a very active and responsive 
developer, and also has a pro version, where (for example) users can 
change their own password, update their details, etc, etc.


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


Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-22 Thread Wayland Sothcott

On 21/02/2013 21:48, administrator wrote:

Me personally, it's a personal quest to abolish all things not open source from my 
workplace (I'm the IT admin/programmer/database/mail guy). I've got spiceworks 
taking care of watching my network and inventory, and exchange deciding not to 
send mail on random days at around 11am without reason or any real help in the 
logs. I've already moved from SCO OpenServer 5 - Ubuntu 8.04 and had great 
success, this is the next logical step.

I knew what it was from the start, it's basically just a webmail type website 
that works with a bunch of common mail servers and other projects allowing for 
outlook connections. In my case my only benefit would be sleep, and I like 
sleeping. I was kind of hoping it would just work like webmin, but I see your 
point about people wanting to roll out their own solutions.

At this point I'm just wondering if I can just do cyrus + postfix + OpenChange. 
I only need IMAP,MAPI,SMTP,DNS (to make it independent), backups and built in 
authentication. To be honest, the less the better.

Please correct me if I'm mistaken and cannot do the 3 things above without sogo 
gluing them together. I realize some people need a web interface, we got 
outlook and phones so we don't need that.

Drop the MAPI and you can use Zentyal Community edition or ClearOS 
community edition.



--

Mobile: 07925 431381
Office: 01787 388165

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


Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-22 Thread Wayland Sothcott

On 22/02/2013 00:59, Mark Madere wrote:

Are you using Active directory to mange your exchange users?  If so you can 
point SOGo at your AD server and manage your users the same way you always have.

I think rolling cyrus + postfix + OpenChange is an uphill battle.  And it won't 
provide you with an admin tool.  Also, are you sure your users don't want/use 
calendars and contacts?

I like sleep too,
Mark
Crikey, I thought the whole point of this SOGo experience was to do 
contacts and diaries. Drop those and it's a basic IMAP server which will 
do everything. If someone extended IMAP to do contacts and calendars 
then we would be set.



--

Mobile: 07925 431381
Office: 01787 388165

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


RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-22 Thread Mark Madere
M,

I am not sure what you mean by public folders.  But if you are referring to a 
shared address book then SOGo can do that.  My team shares several books which 
are owned by one user.  The users who are sharing the books can add and edit 
cards.

I understand that you could survive with a non AD source for users.  But I 
still don't know of a one that comes with an admin tool except for the one that 
I built myself.  But my tool is not suited for your purposes.

Mark 

 Original Message  
Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands. 
Date: Thursday, February 21, 2013 07:37 PM CST 
From: administrator administra...@flmiami.com 
Reply-To: users@sogo.nu
To: 'users@sogo.nu' users@sogo.nu 
References: 
A23FCDBC17D7284EA99F3944077D04B8B11E4A04@EXG-2010-2.Madison.local2eb4-5126c300-15-4e9ff080@101738412
 
 
 
 I see what you mean, we only really need 1 set of contacts (Not the active 
 directory ones).
 It's a contact list, created in a public folder. That is then configured to 
 be the main contact list on all machines with outlook.
 Forgot to ask if public folders are supported, that's the only single item 
 that would be useful to create. We don't need to store emails or notes etc...
 
 We have hundreds of AD users that we don't care to see for other types of 
 access, we just have 10 mailbox users. I don't want this machine to have 
 anything to do with any windows machine. I'm eliminating dependencies so even 
 if the entire domain goes down, outlook and it's mail authentication will 
 keep rolling happily along. I know all too well that when anything goes wrong 
 at the active directory/exchange level, it's not just a little problem, it's 
 catastrophic and time consuming. This is my new strategy so that rebooting 
 servers won't affect other servers for stuff that doesn't need that much 
 integration.
 
 -M
 
 -Original Message-
 From: Mark Madere [mailto:s...@expandingcommunication.com] 
 Sent: Thursday, February 21, 2013 7:59 PM
 To: users@sogo.nu
 Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
 commands.
 
 Are you using Active directory to mange your exchange users?  If so you can 
 point SOGo at your AD server and manage your users the same way you always 
 have.
 
 I think rolling cyrus + postfix + OpenChange is an uphill battle.  And it 
 won't provide you with an admin tool.  Also, are you sure your users don't 
 want/use calendars and contacts?
 
 I like sleep too,
 Mark
 
  Original Message  
 Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
 commands. 
 Date: Thursday, February 21, 2013 03:48 PM CST 
 From: administrator administra...@flmiami.com 
  
  
  Me personally, it's a personal quest to abolish all things not open source 
  from my workplace (I'm the IT admin/programmer/database/mail guy). I've got 
  spiceworks taking care of watching my network and inventory, and exchange 
  deciding not to send mail on random days at around 11am without reason or 
  any real help in the logs. I've already moved from SCO OpenServer 5 - 
  Ubuntu 8.04 and had great success, this is the next logical step.
  
  I knew what it was from the start, it's basically just a webmail type 
  website that works with a bunch of common mail servers and other projects 
  allowing for outlook connections. In my case my only benefit would be 
  sleep, and I like sleeping. I was kind of hoping it would just work like 
  webmin, but I see your point about people wanting to roll out their own 
  solutions.
  
  At this point I'm just wondering if I can just do cyrus + postfix + 
  OpenChange. I only need IMAP,MAPI,SMTP,DNS (to make it independent), 
  backups and built in authentication. To be honest, the less the better. 
  
  Please correct me if I'm mistaken and cannot do the 3 things above without 
  sogo gluing them together. I realize some people need a web interface, we 
  got outlook and phones so we don't need that.
  
  
  -Original Message-
  From: Wayland Sothcott [mailto:wayl...@sothcott.co.uk] 
  Sent: Thursday, February 21, 2013 1:50 PM
  To: users@sogo.nu
  Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
  commands.
  
  On 21/02/2013 18:39, Mark Madere wrote:
   Greetings,
  
   I have looked through all the posts on this topic and I would like to add 
   my two cents (, as we say in the US).  I think many people commenting on 
   this thread misunderstand SOGo and ZEG.
  
From the ZEG download page:
  
   The ZEG (Zero Effort Groupware) edition of SOGo is intended to provide a 
   complete out-of-the-box testing environment of SOGo, the Open Source 
   messaging and calendaring software.
  
From the SOGo home page:
  
   SOGo is fully supported and trusted groupware server with a focus on 
   scalability and open standards. ... SOGo is the missing component of your 
   infrastructure; it sits in the middle of your servers

RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-22 Thread administrator
I'll play around. Like I said as long as I can manage from the command line I 
can make a nice seto of open source tools for us.

Mark Madere s...@expandingcommunication.com wrote:


M,

I am not sure what you mean by public folders.  But if you are referring to a 
shared address book then SOGo can do that.  My team shares several books which 
are owned by one user.  The users who are sharing the books can add and edit 
cards.

I understand that you could survive with a non AD source for users.  But I 
still don't know of a one that comes with an admin tool except for the one that 
I built myself.  But my tool is not suited for your purposes.

Mark

 Original Message 
Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands.
Date: Thursday, February 21, 2013 07:37 PM CST
From: administrator administra...@flmiami.com
Reply-To: users@sogo.nu
To: 'users@sogo.nu' users@sogo.nu
References: 
A23FCDBC17D7284EA99F3944077D04B8B11E4A04@EXG-2010-2.Madison.local2eb4-5126c300-15-4e9ff080@101738412



 I see what you mean, we only really need 1 set of contacts (Not the active 
 directory ones).
 It's a contact list, created in a public folder. That is then configured to 
 be the main contact list on all machines with outlook.
 Forgot to ask if public folders are supported, that's the only single item 
 that would be useful to create. We don't need to store emails or notes etc...

 We have hundreds of AD users that we don't care to see for other types of 
 access, we just have 10 mailbox users. I don't want this machine to have 
 anything to do with any windows machine. I'm eliminating dependencies so even 
 if the entire domain goes down, outlook and it's mail authentication will 
 keep rolling happily along. I know all too well that when anything goes wrong 
 at the active directory/exchange level, it's not just a little problem, it's 
 catastrophic and time consuming. This is my new strategy so that rebooting 
 servers won't affect other servers for stuff that doesn't need that much 
 integration.

 -M

 -Original Message-
 From: Mark Madere [mailto:s...@expandingcommunication.com]
 Sent: Thursday, February 21, 2013 7:59 PM
 To: users@sogo.nu
 Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
 commands.

 Are you using Active directory to mange your exchange users?  If so you can 
 point SOGo at your AD server and manage your users the same way you always 
 have.

 I think rolling cyrus + postfix + OpenChange is an uphill battle.  And it 
 won't provide you with an admin tool.  Also, are you sure your users don't 
 want/use calendars and contacts?

 I like sleep too,
 Mark

  Original Message 
 Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
 commands.
 Date: Thursday, February 21, 2013 03:48 PM CST
 From: administrator administra...@flmiami.com


  Me personally, it's a personal quest to abolish all things not open source 
  from my workplace (I'm the IT admin/programmer/database/mail guy). I've got 
  spiceworks taking care of watching my network and inventory, and exchange 
  deciding not to send mail on random days at around 11am without reason or 
  any real help in the logs. I've already moved from SCO OpenServer 5 - 
  Ubuntu 8.04 and had great success, this is the next logical step.
 
  I knew what it was from the start, it's basically just a webmail type 
  website that works with a bunch of common mail servers and other projects 
  allowing for outlook connections. In my case my only benefit would be 
  sleep, and I like sleeping. I was kind of hoping it would just work like 
  webmin, but I see your point about people wanting to roll out their own 
  solutions.
 
  At this point I'm just wondering if I can just do cyrus + postfix + 
  OpenChange. I only need IMAP,MAPI,SMTP,DNS (to make it independent), 
  backups and built in authentication. To be honest, the less the better.
 
  Please correct me if I'm mistaken and cannot do the 3 things above without 
  sogo gluing them together. I realize some people need a web interface, we 
  got outlook and phones so we don't need that.
 
 
  -Original Message-
  From: Wayland Sothcott [mailto:wayl...@sothcott.co.uk]
  Sent: Thursday, February 21, 2013 1:50 PM
  To: users@sogo.nu
  Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
  commands.
 
  On 21/02/2013 18:39, Mark Madere wrote:
   Greetings,
  
   I have looked through all the posts on this topic and I would like to add 
   my two cents (, as we say in the US).  I think many people commenting on 
   this thread misunderstand SOGo and ZEG.
  
From the ZEG download page:
  
   The ZEG (Zero Effort Groupware) edition of SOGo is intended to provide a 
   complete out-of-the-box testing environment of SOGo, the Open Source 
   messaging and calendaring software.
  
From the SOGo home page:
  
   SOGo is fully supported and trusted groupware server

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread Mark Madere
Greetings,

I have looked through all the posts on this topic and I would like to add my 
two cents (, as we say in the US).  I think many people commenting on this 
thread misunderstand SOGo and ZEG. 

From the ZEG download page:

The ZEG (Zero Effort Groupware) edition of SOGo is intended to provide a 
complete out-of-the-box testing environment of SOGo, the Open Source messaging 
and calendaring software.

From the SOGo home page:

SOGo is fully supported and trusted groupware server with a focus on 
scalability and open standards. ... SOGo is the missing component of your 
infrastructure; it sits in the middle of your servers to offer your users an 
uniform and complete interface to access their information.

So what does that mean?  It means ZEG is a virtual appliance to help you 
understand how SOGo works so you can setup your own servers.   It means that 
SOGo is not a mail server.  It is not a directory server.  It is not a database 
server.  It means that it has no users to manage.

If you are looking to use a testing environment like ZEG as a production server 
I think you will be disappointed that it lacks the features required for 
production.  If you are looking to build your own production server, then SOGo 
can be a great component along side other components.  The beauty of SOGo is 
that it can be configured to work with many systems.  And because of that there 
is no way that SOGo can manage users from every directory/database/posix/etc. 
server.  It is up to each administrator to setup and manage their mail servers, 
users accounts, databases, etc.. the way they want.  

I hope this helps clarify what ZEG and SOGo are, and what they are not.

Mark

ps: If you are looking for turn-key solutions that includes SOGo, there are 
companies that can help you with that.  If you want to roll your own solution 
and need help Inverse can provide you commercial support.


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


RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread administrator
Me personally, it's a personal quest to abolish all things not open source from 
my workplace (I'm the IT admin/programmer/database/mail guy). I've got 
spiceworks taking care of watching my network and inventory, and exchange 
deciding not to send mail on random days at around 11am without reason or any 
real help in the logs. I've already moved from SCO OpenServer 5 - Ubuntu 8.04 
and had great success, this is the next logical step.

I knew what it was from the start, it's basically just a webmail type website 
that works with a bunch of common mail servers and other projects allowing for 
outlook connections. In my case my only benefit would be sleep, and I like 
sleeping. I was kind of hoping it would just work like webmin, but I see your 
point about people wanting to roll out their own solutions.

At this point I'm just wondering if I can just do cyrus + postfix + OpenChange. 
I only need IMAP,MAPI,SMTP,DNS (to make it independent), backups and built in 
authentication. To be honest, the less the better. 

Please correct me if I'm mistaken and cannot do the 3 things above without sogo 
gluing them together. I realize some people need a web interface, we got 
outlook and phones so we don't need that.


-Original Message-
From: Wayland Sothcott [mailto:wayl...@sothcott.co.uk] 
Sent: Thursday, February 21, 2013 1:50 PM
To: users@sogo.nu
Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands.

On 21/02/2013 18:39, Mark Madere wrote:
 Greetings,

 I have looked through all the posts on this topic and I would like to add my 
 two cents (, as we say in the US).  I think many people commenting on this 
 thread misunderstand SOGo and ZEG.

  From the ZEG download page:

 The ZEG (Zero Effort Groupware) edition of SOGo is intended to provide a 
 complete out-of-the-box testing environment of SOGo, the Open Source 
 messaging and calendaring software.

  From the SOGo home page:

 SOGo is fully supported and trusted groupware server with a focus on 
 scalability and open standards. ... SOGo is the missing component of your 
 infrastructure; it sits in the middle of your servers to offer your users an 
 uniform and complete interface to access their information.

 So what does that mean?  It means ZEG is a virtual appliance to help you 
 understand how SOGo works so you can setup your own servers.   It means that 
 SOGo is not a mail server.  It is not a directory server.  It is not a 
 database server.  It means that it has no users to manage.

 If you are looking to use a testing environment like ZEG as a production 
 server I think you will be disappointed that it lacks the features required 
 for production.  If you are looking to build your own production server, then 
 SOGo can be a great component along side other components.  The beauty of 
 SOGo is that it can be configured to work with many systems.  And because of 
 that there is no way that SOGo can manage users from every 
 directory/database/posix/etc. server.  It is up to each administrator to 
 setup and manage their mail servers, users accounts, databases, etc.. the way 
 they want.

 I hope this helps clarify what ZEG and SOGo are, and what they are not.

 Mark

 ps: If you are looking for turn-key solutions that includes SOGo, there are 
 companies that can help you with that.  If you want to roll your own solution 
 and need help Inverse can provide you commercial support.


   
I think you have explained what we all know very well and it is the problem we 
are trying to solve. We want to roll our own turn key solution.

I don't know where open source software comes from or why. However I think it's 
significant that the components are free but putting it together into something 
someone can use costs money.

I want to build servers for my customers and charge them money. However I don't 
mind freely helping people with what I have learned so they can build servers 
for their customers.

If someone is making money from charging us server builders money so we can 
build servers, they are not going to be very happy if we figure out how to help 
each other for free. Hence why ZEG is not a full turn key solution. If it was 
an ISO it would be closer, hence it's a VM.

I think I probably need to change my entire world view.


-- 

Mobile: 07925 431381
Office: 01787 388165

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

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread CF Studelec
On my side, this is mainly through an LDAP client.

1) SOGo is installed on behalf of DOVECOT/POSTFIX. They auth all on LDAP
database. SASL also rely on LDAP. Salt with Amavis, Postgrey  ClamAv,
and it's a classic mail server.

2) Basically i need a tool for managing LDAP. I use the one provided
with Webmin *OR* Jxplorer, a java tool able to do this.


Le 20/02/2013 23:08, administrator a écrit :

 How are people managing this from day to day right now? From reading
 the instructions it probably goes something like this:

  

 a)  Someone needs a new box

 b)  Admin guy takes about a good 10 -- 15 mins trying to remember
 the commands, probably stumbles around a bit

 c)   Admin guy tries to iron out the problems because of missed
 steps or misspellings

  

  

 I was thinking of programming it all in asp.net running (in apache
 since I'm guessing most linux distros can install that without an x
 desktop. I can somewhat easily convert vb.net - c# and use the stuff
 I'm used to. I've written console apps before as well in windows that
 run in linux using mono.

  

 You guys can help start making a list of all the commands you guys use
 on a regular basis, or to change settings etc...

 After that, anyone can write a front end without having to know what's
 in the back end like postfix/cyrus. I can make android and windows app
 ones, I hate writing web apps though so I'll leave that to someone
 else. The android one interests me because I get most of my annoying
 support calls in the mornings and I don't really want to get out of
 bed for some email problem when I can go right back to sleep.

  

 -K

  

 *From:*Wayland Sothcott [mailto:wayl...@sothcott.co.uk]
 *Sent:* Wednesday, February 20, 2013 4:47 PM
 *To:* users@sogo.nu
 *Subject:* Re: [SOGo] Help needed, making a real admin tool for SOGO,
 needs commands.

  

 On 20/02/2013 21:38, administrator wrote:

 SOGo looks promising, but the sheer amount of bad user interfaces
 to manage it and stuff like that is staggering.

  

 What was I expecting?

 1)  Install the ZEG appliance, at first login tell me the
 management url: http://192.x.x.x/SOGo

 2)  I should have been able to log in as sogo to begin with in
 the web interface

 3)  From there, I should be able to just type in a list of
 domains to accept mail for and their settings

 4)  Also from there I should be able to easily create users
 for each mail domain (sorta like the windows user manager, at
 least M$ got that part right)

 5)  Other misc configs. And scripts to do the same stuff
 easily from the commandline without having to remember what back
 ends you were using

  

 What I'm proposing:

 Since I only do vb.net I'm kinda screwed in a way because linux
 mainly supports c#, perl, php, that kind of stuff. Except for the
 gambas IDE, and bash shell scripts and tools. But even with that,
 I'd be willing to give it a shot to make a simple user interface
 to make managing this thing as simple as IIS6 and the local users
 and groups is on windows. I mean ideally someone would just finish
 their webmin module but I've got what I've got.

  

 What I need from you guys:

 All the command line stuff you know to manage things.

 -Add/Delete New user

 -Add/Delete New mailbox

 Etc...

  

 It's practically faster for me to make the program than figure
 this stuff out.

  

 -K

 I am trying to solve this also. Not from the position of writing the
 interface but of finding one that someone has done. As well as looking
 at SOGo I am also looking at z-push. This can be integrated with a
 server running Debian and ISPConfig. However z-push only works with
 mobile devices and not Outlook.

 It is a bit of a nightmare making a good solution. Zentyal comes with
 Zarafa which has z-push but you don't get native Outlook compatibility
 and need a licensed connector to install into Outlook.


 -- 
  
 Mobile: 07925 431381
 Office: 01787 388165

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

RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread Mark Madere
Are you using Active directory to mange your exchange users?  If so you can 
point SOGo at your AD server and manage your users the same way you always have.

I think rolling cyrus + postfix + OpenChange is an uphill battle.  And it won't 
provide you with an admin tool.  Also, are you sure your users don't want/use 
calendars and contacts?

I like sleep too,
Mark

 Original Message  
Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands. 
Date: Thursday, February 21, 2013 03:48 PM CST 
From: administrator administra...@flmiami.com 
 
 
 Me personally, it's a personal quest to abolish all things not open source 
 from my workplace (I'm the IT admin/programmer/database/mail guy). I've got 
 spiceworks taking care of watching my network and inventory, and exchange 
 deciding not to send mail on random days at around 11am without reason or any 
 real help in the logs. I've already moved from SCO OpenServer 5 - Ubuntu 
 8.04 and had great success, this is the next logical step.
 
 I knew what it was from the start, it's basically just a webmail type website 
 that works with a bunch of common mail servers and other projects allowing 
 for outlook connections. In my case my only benefit would be sleep, and I 
 like sleeping. I was kind of hoping it would just work like webmin, but I see 
 your point about people wanting to roll out their own solutions.
 
 At this point I'm just wondering if I can just do cyrus + postfix + 
 OpenChange. I only need IMAP,MAPI,SMTP,DNS (to make it independent), backups 
 and built in authentication. To be honest, the less the better. 
 
 Please correct me if I'm mistaken and cannot do the 3 things above without 
 sogo gluing them together. I realize some people need a web interface, we got 
 outlook and phones so we don't need that.
 
 
 -Original Message-
 From: Wayland Sothcott [mailto:wayl...@sothcott.co.uk] 
 Sent: Thursday, February 21, 2013 1:50 PM
 To: users@sogo.nu
 Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
 commands.
 
 On 21/02/2013 18:39, Mark Madere wrote:
  Greetings,
 
  I have looked through all the posts on this topic and I would like to add 
  my two cents (, as we say in the US).  I think many people commenting on 
  this thread misunderstand SOGo and ZEG.
 
   From the ZEG download page:
 
  The ZEG (Zero Effort Groupware) edition of SOGo is intended to provide a 
  complete out-of-the-box testing environment of SOGo, the Open Source 
  messaging and calendaring software.
 
   From the SOGo home page:
 
  SOGo is fully supported and trusted groupware server with a focus on 
  scalability and open standards. ... SOGo is the missing component of your 
  infrastructure; it sits in the middle of your servers to offer your users 
  an uniform and complete interface to access their information.
 
  So what does that mean?  It means ZEG is a virtual appliance to help you 
  understand how SOGo works so you can setup your own servers.   It means 
  that SOGo is not a mail server.  It is not a directory server.  It is not a 
  database server.  It means that it has no users to manage.
 
  If you are looking to use a testing environment like ZEG as a production 
  server I think you will be disappointed that it lacks the features required 
  for production.  If you are looking to build your own production server, 
  then SOGo can be a great component along side other components.  The beauty 
  of SOGo is that it can be configured to work with many systems.  And 
  because of that there is no way that SOGo can manage users from every 
  directory/database/posix/etc. server.  It is up to each administrator to 
  setup and manage their mail servers, users accounts, databases, etc.. the 
  way they want.
 
  I hope this helps clarify what ZEG and SOGo are, and what they are not.
 
  Mark
 
  ps: If you are looking for turn-key solutions that includes SOGo, there are 
  companies that can help you with that.  If you want to roll your own 
  solution and need help Inverse can provide you commercial support.
 
 

 I think you have explained what we all know very well and it is the problem 
 we are trying to solve. We want to roll our own turn key solution.
 
 I don't know where open source software comes from or why. However I think 
 it's significant that the components are free but putting it together into 
 something someone can use costs money.
 
 I want to build servers for my customers and charge them money. However I 
 don't mind freely helping people with what I have learned so they can build 
 servers for their customers.
 
 If someone is making money from charging us server builders money so we can 
 build servers, they are not going to be very happy if we figure out how to 
 help each other for free. Hence why ZEG is not a full turn key solution. If 
 it was an ISO it would be closer, hence it's a VM.
 
 I think I probably need to change my entire world view.
 
 
 -- 
 
 Mobile

RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread administrator
I see what you mean, we only really need 1 set of contacts (Not the active 
directory ones).
It's a contact list, created in a public folder. That is then configured to be 
the main contact list on all machines with outlook.
Forgot to ask if public folders are supported, that's the only single item that 
would be useful to create. We don't need to store emails or notes etc...

We have hundreds of AD users that we don't care to see for other types of 
access, we just have 10 mailbox users. I don't want this machine to have 
anything to do with any windows machine. I'm eliminating dependencies so even 
if the entire domain goes down, outlook and it's mail authentication will keep 
rolling happily along. I know all too well that when anything goes wrong at the 
active directory/exchange level, it's not just a little problem, it's 
catastrophic and time consuming. This is my new strategy so that rebooting 
servers won't affect other servers for stuff that doesn't need that much 
integration.

-M

-Original Message-
From: Mark Madere [mailto:s...@expandingcommunication.com] 
Sent: Thursday, February 21, 2013 7:59 PM
To: users@sogo.nu
Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands.

Are you using Active directory to mange your exchange users?  If so you can 
point SOGo at your AD server and manage your users the same way you always have.

I think rolling cyrus + postfix + OpenChange is an uphill battle.  And it won't 
provide you with an admin tool.  Also, are you sure your users don't want/use 
calendars and contacts?

I like sleep too,
Mark

 Original Message  
Subject: RE: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands. 
Date: Thursday, February 21, 2013 03:48 PM CST 
From: administrator administra...@flmiami.com 
 
 
 Me personally, it's a personal quest to abolish all things not open source 
 from my workplace (I'm the IT admin/programmer/database/mail guy). I've got 
 spiceworks taking care of watching my network and inventory, and exchange 
 deciding not to send mail on random days at around 11am without reason or any 
 real help in the logs. I've already moved from SCO OpenServer 5 - Ubuntu 
 8.04 and had great success, this is the next logical step.
 
 I knew what it was from the start, it's basically just a webmail type website 
 that works with a bunch of common mail servers and other projects allowing 
 for outlook connections. In my case my only benefit would be sleep, and I 
 like sleeping. I was kind of hoping it would just work like webmin, but I see 
 your point about people wanting to roll out their own solutions.
 
 At this point I'm just wondering if I can just do cyrus + postfix + 
 OpenChange. I only need IMAP,MAPI,SMTP,DNS (to make it independent), backups 
 and built in authentication. To be honest, the less the better. 
 
 Please correct me if I'm mistaken and cannot do the 3 things above without 
 sogo gluing them together. I realize some people need a web interface, we got 
 outlook and phones so we don't need that.
 
 
 -Original Message-
 From: Wayland Sothcott [mailto:wayl...@sothcott.co.uk] 
 Sent: Thursday, February 21, 2013 1:50 PM
 To: users@sogo.nu
 Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
 commands.
 
 On 21/02/2013 18:39, Mark Madere wrote:
  Greetings,
 
  I have looked through all the posts on this topic and I would like to add 
  my two cents (, as we say in the US).  I think many people commenting on 
  this thread misunderstand SOGo and ZEG.
 
   From the ZEG download page:
 
  The ZEG (Zero Effort Groupware) edition of SOGo is intended to provide a 
  complete out-of-the-box testing environment of SOGo, the Open Source 
  messaging and calendaring software.
 
   From the SOGo home page:
 
  SOGo is fully supported and trusted groupware server with a focus on 
  scalability and open standards. ... SOGo is the missing component of your 
  infrastructure; it sits in the middle of your servers to offer your users 
  an uniform and complete interface to access their information.
 
  So what does that mean?  It means ZEG is a virtual appliance to help you 
  understand how SOGo works so you can setup your own servers.   It means 
  that SOGo is not a mail server.  It is not a directory server.  It is not a 
  database server.  It means that it has no users to manage.
 
  If you are looking to use a testing environment like ZEG as a production 
  server I think you will be disappointed that it lacks the features required 
  for production.  If you are looking to build your own production server, 
  then SOGo can be a great component along side other components.  The beauty 
  of SOGo is that it can be configured to work with many systems.  And 
  because of that there is no way that SOGo can manage users from every 
  directory/database/posix/etc. server.  It is up to each administrator to 
  setup and manage their mail servers, users accounts

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread Szládovics Péter
2013-02-21 23:52 keltezéssel, CF Studelec írta:
 On my side, this is mainly through an LDAP client.

 2) Basically i need a tool for managing LDAP. I use the one provided
 with Webmin *OR* Jxplorer, a java tool able to do this.

http://phpldapadmin.sourceforge.net/wiki/index.php/Main_Page
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-21 Thread André Schild

Am 22.02.2013 07:05, schrieb Szládovics Péter:

2013-02-21 23:52 keltezéssel, CF Studelec írta:

On my side, this is mainly through an LDAP client.
2) Basically i need a tool for managing LDAP. I use the one provided
with Webmin *OR* Jxplorer, a java tool able to do this.

Don't forget Apache Directory Studio,
we used JXplorer too, but since finding the Apache Directory Studio we 
are using this one.


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


[SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread administrator
SOGo looks promising, but the sheer amount of bad user interfaces to manage it 
and stuff like that is staggering.

What was I expecting?

1)  Install the ZEG appliance, at first login tell me the management url: 
http://192.x.x.x/SOGo

2)  I should have been able to log in as sogo to begin with in the web 
interface

3)  From there, I should be able to just type in a list of domains to 
accept mail for and their settings

4)  Also from there I should be able to easily create users for each mail 
domain (sorta like the windows user manager, at least M$ got that part right)

5)  Other misc configs. And scripts to do the same stuff easily from the 
commandline without having to remember what back ends you were using

What I'm proposing:
Since I only do vb.net I'm kinda screwed in a way because linux mainly supports 
c#, perl, php, that kind of stuff. Except for the gambas IDE, and bash shell 
scripts and tools. But even with that, I'd be willing to give it a shot to make 
a simple user interface to make managing this thing as simple as IIS6 and the 
local users and groups is on windows. I mean ideally someone would just finish 
their webmin module but I've got what I've got.

What I need from you guys:
All the command line stuff you know to manage things.
-Add/Delete New user
-Add/Delete New mailbox
Etc...

It's practically faster for me to make the program than figure this stuff out.

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

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread Wayland Sothcott

On 20/02/2013 21:38, administrator wrote:


SOGo looks promising, but the sheer amount of bad user interfaces to 
manage it and stuff like that is staggering.


What was I expecting?

1)Install the ZEG appliance, at first login tell me the management 
url: http://192.x.x.x/SOGo


2)I should have been able to log in as sogo to begin with in the web 
interface


3)From there, I should be able to just type in a list of domains to 
accept mail for and their settings


4)Also from there I should be able to easily create users for each 
mail domain (sorta like the windows user manager, at least M$ got that 
part right)


5)Other misc configs. And scripts to do the same stuff easily from the 
commandline without having to remember what back ends you were using


What I'm proposing:

Since I only do vb.net I'm kinda screwed in a way because linux mainly 
supports c#, perl, php, that kind of stuff. Except for the gambas IDE, 
and bash shell scripts and tools. But even with that, I'd be willing 
to give it a shot to make a simple user interface to make managing 
this thing as simple as IIS6 and the local users and groups is on 
windows. I mean ideally someone would just finish their webmin module 
but I've got what I've got.


What I need from you guys:

All the command line stuff you know to manage things.

-Add/Delete New user

-Add/Delete New mailbox

Etc...

It's practically faster for me to make the program than figure this 
stuff out.


-K

I am trying to solve this also. Not from the position of writing the 
interface but of finding one that someone has done. As well as looking 
at SOGo I am also looking at z-push. This can be integrated with a 
server running Debian and ISPConfig. However z-push only works with 
mobile devices and not Outlook.


It is a bit of a nightmare making a good solution. Zentyal comes with 
Zarafa which has z-push but you don't get native Outlook compatibility 
and need a licensed connector to install into Outlook.


--

Mobile: 07925 431381
Office: 01787 388165

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

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread Romain LE DISEZ

Hello,

I wrote this few months ago:
https://inverse.ca/sogo/lists/arc/users/2012-10/msg00218.html

Accounts management works fine. Other modules are not implemented for 
now. I'm interested to keep this project alive, but if nobody uses it 
it will surely die.


It clearly lacks of documentation. If you want to test it, just tell me 
and I'll write it.


Tell me if you're interested to test/contribute/...

Source code is still here:
https://github.com/rledisez/SOGoAccountsManager

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


RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread administrator
How are people managing this from day to day right now? From reading the 
instructions it probably goes something like this:


a)  Someone needs a new box

b)  Admin guy takes about a good 10 - 15 mins trying to remember the 
commands, probably stumbles around a bit

c)   Admin guy tries to iron out the problems because of missed steps or 
misspellings




I was thinking of programming it all in asp.net running (in apache since I'm 
guessing most linux distros can install that without an x desktop. I can 
somewhat easily convert vb.net - c# and use the stuff I'm used to. I've 
written console apps before as well in windows that run in linux using mono.

You guys can help start making a list of all the commands you guys use on a 
regular basis, or to change settings etc...
After that, anyone can write a front end without having to know what's in the 
back end like postfix/cyrus. I can make android and windows app ones, I hate 
writing web apps though so I'll leave that to someone else. The android one 
interests me because I get most of my annoying support calls in the mornings 
and I don't really want to get out of bed for some email problem when I can go 
right back to sleep.

-K

From: Wayland Sothcott [mailto:wayl...@sothcott.co.uk]
Sent: Wednesday, February 20, 2013 4:47 PM
To: users@sogo.nu
Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands.

On 20/02/2013 21:38, administrator wrote:
SOGo looks promising, but the sheer amount of bad user interfaces to manage it 
and stuff like that is staggering.

What was I expecting?

1)  Install the ZEG appliance, at first login tell me the management url: 
http://192.x.x.x/SOGo

2)  I should have been able to log in as sogo to begin with in the web 
interface

3)  From there, I should be able to just type in a list of domains to 
accept mail for and their settings

4)  Also from there I should be able to easily create users for each mail 
domain (sorta like the windows user manager, at least M$ got that part right)

5)  Other misc configs. And scripts to do the same stuff easily from the 
commandline without having to remember what back ends you were using

What I'm proposing:
Since I only do vb.net I'm kinda screwed in a way because linux mainly supports 
c#, perl, php, that kind of stuff. Except for the gambas IDE, and bash shell 
scripts and tools. But even with that, I'd be willing to give it a shot to make 
a simple user interface to make managing this thing as simple as IIS6 and the 
local users and groups is on windows. I mean ideally someone would just finish 
their webmin module but I've got what I've got.

What I need from you guys:
All the command line stuff you know to manage things.
-Add/Delete New user
-Add/Delete New mailbox
Etc...

It's practically faster for me to make the program than figure this stuff out.

-K
I am trying to solve this also. Not from the position of writing the interface 
but of finding one that someone has done. As well as looking at SOGo I am also 
looking at z-push. This can be integrated with a server running Debian and 
ISPConfig. However z-push only works with mobile devices and not Outlook.

It is a bit of a nightmare making a good solution. Zentyal comes with Zarafa 
which has z-push but you don't get native Outlook compatibility and need a 
licensed connector to install into Outlook.



--



Mobile: 07925 431381

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

RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread administrator
Looks very nice from the screen shots, simple and familiar looking. Pretty 
efficient approach too. I'll check it out later tonight.

I haven't created any user who can log into sogo yet though, it looked 
ludicrous. I wrote a script as I was reading because it was complicated to 
follow. Maybe someone will find it useful. I haven't tested it yet, I was gonna 
create my first user with it but haven't had a minute.

I called it add_ldap_user.sh

# SYNTAX:
# create_user_ldap jdoe John Doe j...@example.com

# VARIABLES THAT ARE MUCH EASIER TO READ
USERID=$1
FIRSTNAME=$2
LASTNAME=$3
FULLNAME=$2 $3
EMAIL=$4

# EMAIL DOMAIN SETTINGS
OU=users
DC1=example
DC2=com

# FILE AND FOLDER SETTINGS
USERFOLDER=~\users
USERFILE=$USERFOLDER\$1.ldif

# CREATE A USER FOLDER TO STORE THE LDIF FILES
mkdir $USERFOLDER

# CREATE THE LDIF FILE
echo dn: uid=$USERID,ou=$OU,dc=$DC1,dc=$DC2 \n  $USERFILE
echo objectClass: top \n  $USERFILE
echo objectClass: inetOrgPerson \n  $USERFILE
echo objectClass: person \n  $USERFILE
echo objectclass: organizationalPerson \n  $USERFILE
echo uid: $USERID \n  $USERPROFILE
echo cn: $FULLNAME \n  $USERPROFILE
echo mail: $EMAIL \n  $USERPROFILE
echo sn: $LASTNAME \n  $USERPROFILE
echo givenName: $FIRSTNAME  $USERPROFILE

# LOAD THE LDIF INTO LDAP
ldapadd -f $USERFILE -x -w qwerty -D cn=Manager,dc=$DC1,dc=$DC2
ldappasswd -h localhost -x -w qwerty -D cn=Manager,dc=$DC1,dc=$DC2 
cn=Manager,dc=$DC1,dc=$DC2 uid=$USERID,ou=$OU,dc=$DC1,dc=$DC2 -s




-Original Message-
From: Romain LE DISEZ [mailto:rom...@ledisez.net] 
Sent: Wednesday, February 20, 2013 5:01 PM
To: users@sogo.nu
Cc: Wayland Sothcott
Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands.

Hello,

I wrote this few months ago:
https://inverse.ca/sogo/lists/arc/users/2012-10/msg00218.html

Accounts management works fine. Other modules are not implemented for now. I'm 
interested to keep this project alive, but if nobody uses it it will surely die.

It clearly lacks of documentation. If you want to test it, just tell me and 
I'll write it.

Tell me if you're interested to test/contribute/...

Source code is still here:
https://github.com/rledisez/SOGoAccountsManager

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

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread Steve Ankeny

Forgive my ignorance, but I think you're making it too difficult!

I am not familiar with changing the domain (had that done by Inverse)

However, creating new users was a cinch with 'webmin'  You simply cloned 
the existing 'sogo' user and changed all the particulars necessary.  
Then you created the mailbox in 'cyrus,' and it was done.


Works wonderfully!  And, doesn't take all the work discussed here.

After that, it was simply a matter of installing the lightning, 
connector and integrator extensions in TB  And, if you run Outlook, you 
simply point to the right ip_address, and Outlook takes care of the rest.


Again, sorry for my ignorance.  I think it would be great to create an 
administrative module for 'webmin' that changed the domain (integrated 
with 'Samba') and created users, but it shouldn't be hard.


The work submitted by Romain looks very good to me!  If anything, that 
work should be supported.


On 02/20/2013 05:24 PM, administrator wrote:

Looks very nice from the screen shots, simple and familiar looking. Pretty 
efficient approach too. I'll check it out later tonight.

I haven't created any user who can log into sogo yet though, it looked 
ludicrous. I wrote a script as I was reading because it was complicated to 
follow. Maybe someone will find it useful. I haven't tested it yet, I was gonna 
create my first user with it but haven't had a minute.


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


Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread Wayland Sothcott

On 20/02/2013 22:00, Romain LE DISEZ wrote:

Hello,

I wrote this few months ago:
https://inverse.ca/sogo/lists/arc/users/2012-10/msg00218.html

Accounts management works fine. Other modules are not implemented for 
now. I'm interested to keep this project alive, but if nobody uses it 
it will surely die.


It clearly lacks of documentation. If you want to test it, just tell 
me and I'll write it.


Tell me if you're interested to test/contribute/...

Source code is still here:
https://github.com/rledisez/SOGoAccountsManager

--
Romain LE DISEZ


It looks to me as if the components are available.
I think we need to turn the ZEG into an ISO that people can use as a 
production server.
If we can't do that then we need a procedure like the Perfect Debian 
Server guides where anyone can plod through the instructions from the 
beginning and end up with a Groupware server at the end.


The hard part of actually creating SOGo and the other components has 
been done. But putting it all together is still to hard for me and most 
people.


I think this is going to need to be Android compatible too.

--

Mobile: 07925 431381
Office: 01787 388165

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


RE: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread administrator
This is where my confusion is, since I couldn't log into the sogo web page as 
sogo as I expected:

a) If I'm making a user with a mailbox, is it a linux/Ubuntu user? Or Is it an 
ldap user? Both?
b) What component actually stores the mailboxes and creates them? (cyrus I'm 
guessing?)

sogo is my admin user, and that's cool. But it didn't appear to come with a 
mailbox. I use active directory ldap tools all the time, but webmin is just a 
bunch of textboxes for managing LDAP. This is why when I saw the account 
manager my eyes sparkled.

All I'm trying to do is change my mail receiving domain - flmiami.com
Create a new mailbox called 'administra...@flmiami.com'
I see install guides, but not really admin guides for actually doing day to day 
stuff.

It's the ZEG version. I believe Ubuntu + Cyrus + LDAP Server + PostgreSQL + SOGo


-Original Message-
From: Steve Ankeny [mailto:stev...@cinergymetro.net] 
Sent: Wednesday, February 20, 2013 6:06 PM
To: users@sogo.nu
Subject: Re: [SOGo] Help needed, making a real admin tool for SOGO, needs 
commands.

Forgive my ignorance, but I think you're making it too difficult!

I am not familiar with changing the domain (had that done by Inverse)

However, creating new users was a cinch with 'webmin'  You simply cloned the 
existing 'sogo' user and changed all the particulars necessary.  
Then you created the mailbox in 'cyrus,' and it was done.

Works wonderfully!  And, doesn't take all the work discussed here.

After that, it was simply a matter of installing the lightning, connector and 
integrator extensions in TB  And, if you run Outlook, you simply point to the 
right ip_address, and Outlook takes care of the rest.

Again, sorry for my ignorance.  I think it would be great to create an 
administrative module for 'webmin' that changed the domain (integrated with 
'Samba') and created users, but it shouldn't be hard.

The work submitted by Romain looks very good to me!  If anything, that work 
should be supported.

On 02/20/2013 05:24 PM, administrator wrote:
 Looks very nice from the screen shots, simple and familiar looking. Pretty 
 efficient approach too. I'll check it out later tonight.

 I haven't created any user who can log into sogo yet though, it looked 
 ludicrous. I wrote a script as I was reading because it was complicated to 
 follow. Maybe someone will find it useful. I haven't tested it yet, I was 
 gonna create my first user with it but haven't had a minute.

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

Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread Steve Ankeny
As I said, I do not know how to change the domain from 'example.com' 
(Inverse did that)


Can you login to 'webmin?'

Once there, go to LDAP Server | Browse Database | 
ou=people,dc=example,dc=com


Edit the 'sogo1' user if you're having problems logging in.

Then choose 'Clone this object' at the bottom and create each new user.  
Edit the details as needed.


To create the mailbox, login to 'cyrus' as admin:

cyradm --user cyrus localhost

localhost cm user/username

e.g. localhost cm user/michael

And, that's it!  Simply edit the preferences in 'webmin' and you have it.

Again, I am not opposed to having an accounts management module that 
does this for you.


On 02/20/2013 06:19 PM, administrator wrote:

This is where my confusion is, since I couldn't log into the sogo web page as 
sogo as I expected:

a) If I'm making a user with a mailbox, is it a linux/Ubuntu user? Or Is it an 
ldap user? Both?
b) What component actually stores the mailboxes and creates them? (cyrus I'm 
guessing?)

sogo is my admin user, and that's cool. But it didn't appear to come with a 
mailbox. I use active directory ldap tools all the time, but webmin is just a 
bunch of textboxes for managing LDAP. This is why when I saw the account 
manager my eyes sparkled.

All I'm trying to do is change my mail receiving domain - flmiami.com
Create a new mailbox called 'administra...@flmiami.com'
I see install guides, but not really admin guides for actually doing day to day 
stuff.

It's the ZEG version. I believe Ubuntu + Cyrus + LDAP Server + PostgreSQL + SOGo


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


Re: [SOGo] Help needed, making a real admin tool for SOGO, needs commands.

2013-02-20 Thread Jean-Michel OLTRA

Bonjour,


Le mercredi 20 février 2013, administrator a écrit...


 How are people managing this from day to day right now? From reading
 the instructions it probably goes something like this:

Look at iRedMail (iRedAdmin) + Apache Directory Studio


-- 
jm

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


Re: [SOGo] Help installing from source

2013-01-25 Thread Rowland Penny

On 25/01/13 03:38, Steven Swarts wrote:


G'day guys,

I'm following this tutorial:

Major steps

1)http://www.openchange.org/developers/initializing.html

2)http://www.openchange.org/developers/downloading.html

3)http://www.openchange.org/developers/building.html

4)http://www.openchange.org/developers/configuring.html

5)http://www.openchange.org/developers/backends/sogo/index.html

Now I'm trying to compile and run openchange, sogo, sope as an 
exchange replacement on the Debian 6 Squeeze server.


So far everything is working as expected.

However part of the SOGo tutorial assumes that I have a user 
openchange which I've created (I'm guessing from the beginning) but I 
didn't.


All I have is root user access, and so far that didn't cause any issues.

Does this mean that I have duped my whole system? Need to re-install 
everything using sudoers and a username openchange?? Does he have to 
be part of root group?


I couldn't find any information on the tutorial about that.

Thanks in advance,

Steve


--
This message has been scanned for viruses and
dangerous content by *MailScanner* http://www.mailscanner.info/, and is
believed to be clean. 

Hi, I pointed this out some time ago, just create the user:

useradd -d /home/openchange -m -N -r -s /bin/false openchange

then become the user:

su - -s /bin/bash openchange

then continue where you left off, just type 'exit' after you have done 
the SOGo commands, you will need to become the openchange user again to 
run SOGo later.


Rowland


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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

Re: [SOGo] Help installing from source

2013-01-25 Thread Julien Kerihuel
Hi,

On Fri, 2013-01-25 at 11:38 +0800, Steven Swarts wrote:


 All I have is root user access, and so far that didn’t cause any
 issues.


And it won't cause any issues unless you run sogod process because it
requires to be run with a different account that root.



 
 Does this mean that I have duped my whole system? Need to re-install
 everything using sudoers and a username openchange?? 


You haven't duped your system at all and you don't need to reinstall
anything. Just add a user at this stage of the setup and process from
now.


 Does he have to be part of root group?


No it doesn't.



 I couldn’t find any information on the tutorial about that.


Your post-installation impressions, notes, updates are welcome to help
OpenChange improving its documentation stack.

Kind Regards,
Julien.


-- 

Julien Kerihuel
j.kerih...@openchange.org
OpenChange Project Founder

GPG Fingerprint: 0B55 783D A781 6329 108A  B609 7EF6 FE11 A35F 1F79
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

RE: [SOGo] Help installing from source

2013-01-25 Thread Steven Swarts
Thank you for the heads up, I have now completed everything up until the run
command.

As openchange user I run the command

 

$ sogod 

 

This is what it comes back with:

 

-su: sogod: command not found

 

Any ideas?

 

Regards,

Steven Swarts

 

From: Rowland Penny [mailto:rpe...@f2s.com] 
Sent: Friday, 25 January 2013 7:15 PM
To: users@sogo.nu
Subject: Re: [SOGo] Help installing from source

 

On 25/01/13 03:38, Steven Swarts wrote:

G'day guys,

 

I'm following this tutorial: 

 

Major steps 

 

1)  http://www.openchange.org/developers/initializing.html 

2)  http://www.openchange.org/developers/downloading.html 

3)  http://www.openchange.org/developers/building.html

4)  http://www.openchange.org/developers/configuring.html

5)  http://www.openchange.org/developers/backends/sogo/index.html

 

Now I'm trying to compile and run openchange, sogo, sope as an exchange
replacement on the Debian 6 Squeeze server.

 

So far everything is working as expected.

 

However part of the SOGo tutorial assumes that I have a user openchange
which I've created (I'm guessing from the beginning) but I didn't.

 

All I have is root user access, and so far that didn't cause any issues.

 

Does this mean that I have duped my whole system? Need to re-install
everything using sudoers and a username openchange?? Does he have to be part
of root group?

 

I couldn't find any information on the tutorial about that.

 

Thanks in advance,

Steve


-- 
This message has been scanned for viruses and 
dangerous content by  http://www.mailscanner.info/ MailScanner, and is 
believed to be clean. 

Hi, I pointed this out some time ago, just create the user:

useradd -d /home/openchange -m -N -r -s /bin/false openchange

then become the user:

su - -s /bin/bash openchange

then continue where you left off, just type 'exit' after you have done the
SOGo commands, you will need to become the openchange user again to run SOGo
later.

Rowland


-- 
This message has been scanned for viruses and 
dangerous content by  http://www.mailscanner.info/ MailScanner, and is 
believed to be clean. 

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

Re: [SOGo] Help installing from source

2013-01-25 Thread Rowland Penny

On 25/01/13 17:12, Steven Swarts wrote:


Thank you for the heads up, I have now completed everything up until 
the run command.


As openchange user I run the command

$ sogod

This is what it comes back with:

-su: sogod: command not found

Any ideas?

*/Regards,/*

*/Steven Swarts/*

*From:*Rowland Penny [mailto:rpe...@f2s.com]
*Sent:* Friday, 25 January 2013 7:15 PM
*To:* users@sogo.nu
*Subject:* Re: [SOGo] Help installing from source

On 25/01/13 03:38, Steven Swarts wrote:

G'day guys,

I'm following this tutorial:

Major steps

1)http://www.openchange.org/developers/initializing.html

2)http://www.openchange.org/developers/downloading.html

3)http://www.openchange.org/developers/building.html

4)http://www.openchange.org/developers/configuring.html

5)http://www.openchange.org/developers/backends/sogo/index.html

Now I'm trying to compile and run openchange, sogo, sope as an
exchange replacement on the Debian 6 Squeeze server.

So far everything is working as expected.

However part of the SOGo tutorial assumes that I have a user
openchange which I've created (I'm guessing from the beginning)
but I didn't.

All I have is root user access, and so far that didn't cause any
issues.

Does this mean that I have duped my whole system? Need to
re-install everything using sudoers and a username openchange??
Does he have to be part of root group?

I couldn't find any information on the tutorial about that.

Thanks in advance,

Steve


-- 
This message has been scanned for viruses and

dangerous content by *MailScanner* http://www.mailscanner.info/,
and is
believed to be clean.

Hi, I pointed this out some time ago, just create the user:

useradd -d /home/openchange -m -N -r -s /bin/false openchange

then become the user:

su - -s /bin/bash openchange

then continue where you left off, just type 'exit' after you have done 
the SOGo commands, you will need to become the openchange user again 
to run SOGo later.


Rowland


--
This message has been scanned for viruses and
dangerous content by *MailScanner* http://www.mailscanner.info/, and is
believed to be clean.


--
This message has been scanned for viruses and
dangerous content by *MailScanner* http://www.mailscanner.info/, and is
believed to be clean. 

Hi again, just use the full path: /usr/local/sbin/sogod

Rowland

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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

RE: [SOGo] Help installing from source

2013-01-25 Thread Steven Swarts
Thanks Rowland,

 

Now however my Debian system fails to install slapd.

$ apt-get install slapd

 

Output:

 

root@server2:/etc/apache2/conf.d# apt-get install slapd

Reading package lists... Done

Building dependency tree

Reading state information... Done

Suggested packages:

  ldap-utils

The following NEW packages will be installed:

  slapd

0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.

Need to get 0 B/1,589 kB of archives.

After this operation, 4,018 kB of additional disk space will be used.

Preconfiguring packages ...

Selecting previously deselected package slapd.

(Reading database ... 64390 files and directories currently installed.)

Unpacking slapd (from .../slapd_2.4.23-7.2_amd64.deb) ...

Processing triggers for man-db ...

Setting up slapd (2.4.23-7.2) ...

  Moving old database directory to /var/backups:

  - directory unknown... done.

  Creating initial configuration... done.

  Creating LDAP directory... done.

Starting OpenLDAP: slapd failed!

invoke-rc.d: initscript slapd, action start failed.

dpkg: error processing slapd (--configure):

subprocess installed post-installation script returned error exit status 1

configured to not write apport reports

  Errors were encountered while
processing:

slapd

E: Sub-process /usr/bin/dpkg returned an error code (1)

 

I've tried googling, some say it's a broken package. Is this true? Do I need
to compile from source as well?

 

Another question why does SOGo require slapd? Can't it use Samba4 to
authenticate? Doesn't Samba4 have its own slapd? Is that possibly what is
causing the issue?

 

Thanks in advance

 

Regards,

Steven Swarts

 

From: Rowland Penny [mailto:rpe...@f2s.com] 
Sent: Saturday, 26 January 2013 1:39 AM
To: users@sogo.nu
Subject: Re: [SOGo] Help installing from source

 

On 25/01/13 17:12, Steven Swarts wrote:

Thank you for the heads up, I have now completed everything up until the run
command.

As openchange user I run the command

 

$ sogod 

 

This is what it comes back with:

 

-su: sogod: command not found

 

Any ideas?

 

Regards,

Steven Swarts

 

From: Rowland Penny [mailto:rpe...@f2s.com] 
Sent: Friday, 25 January 2013 7:15 PM
To: users@sogo.nu
Subject: Re: [SOGo] Help installing from source

 

On 25/01/13 03:38, Steven Swarts wrote:

G'day guys,

 

I'm following this tutorial: 

 

Major steps 

 

1)  http://www.openchange.org/developers/initializing.html 

2)  http://www.openchange.org/developers/downloading.html 

3)  http://www.openchange.org/developers/building.html

4)  http://www.openchange.org/developers/configuring.html

5)  http://www.openchange.org/developers/backends/sogo/index.html

 

Now I'm trying to compile and run openchange, sogo, sope as an exchange
replacement on the Debian 6 Squeeze server.

 

So far everything is working as expected.

 

However part of the SOGo tutorial assumes that I have a user openchange
which I've created (I'm guessing from the beginning) but I didn't.

 

All I have is root user access, and so far that didn't cause any issues.

 

Does this mean that I have duped my whole system? Need to re-install
everything using sudoers and a username openchange?? Does he have to be part
of root group?

 

I couldn't find any information on the tutorial about that.

 

Thanks in advance,

Steve


-- 
This message has been scanned for viruses and 
dangerous content by  http://www.mailscanner.info/ MailScanner, and is 
believed to be clean. 

Hi, I pointed this out some time ago, just create the user:

useradd -d /home/openchange -m -N -r -s /bin/false openchange

then become the user:

su - -s /bin/bash openchange

then continue where you left off, just type 'exit' after you have done the
SOGo commands, you will need to become the openchange user again to run SOGo
later.

Rowland


-- 
This message has been scanned for viruses and 
dangerous content by  http://www.mailscanner.info/ MailScanner, and is 
believed to be clean. 


-- 
This message has been scanned for viruses and 
dangerous content by  http://www.mailscanner.info/ MailScanner, and is 
believed to be clean. 

Hi again, just use the full path: /usr/local/sbin/sogod

Rowland

-- 
This message has been scanned for viruses and 
dangerous content by  http://www.mailscanner.info/ MailScanner, and is 
believed to be clean. 

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

[SOGo] Help installing from source

2013-01-24 Thread Steven Swarts
G'day guys,

 

I'm following this tutorial: 

 

Major steps 

 

1)  http://www.openchange.org/developers/initializing.html 

2)  http://www.openchange.org/developers/downloading.html 

3)  http://www.openchange.org/developers/building.html

4)  http://www.openchange.org/developers/configuring.html

5)  http://www.openchange.org/developers/backends/sogo/index.html

 

Now I'm trying to compile and run openchange, sogo, sope as an exchange
replacement on the Debian 6 Squeeze server.

 

So far everything is working as expected.

 

However part of the SOGo tutorial assumes that I have a user openchange
which I've created (I'm guessing from the beginning) but I didn't.

 

All I have is root user access, and so far that didn't cause any issues.

 

Does this mean that I have duped my whole system? Need to re-install
everything using sudoers and a username openchange?? Does he have to be part
of root group?

 

I couldn't find any information on the tutorial about that.

 

Thanks in advance,

Steve

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

Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-08 Thread greg
OK I find solution for my CentOs 5 x64

If we use yum update sogo , it disnt update some files as sope49-content, gdl1
etc  I think it an very old bug :(

So you need to remove them before update sogo

see this thread : http://thread.gmane.org/gmane.comp.groupware.sogo.user/7096

No my problem: Sogo start , I change permission on gnustep directory,
var/log/sogo  before sogo id was 601 now it's 610

I reload httpd service because I have a new sogo.conf with new path for gnustep
 before it was :  Alias /SOGo.woa/WebServerResources/ \
  /usr/GNUstep/System/Library/SOGo/WebServerResources/
Alias /SOGo/WebServerResources/ \
  /usr/GNUstep/System/Library/SOGo/WebServerResources/
AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \
   /usr/GNUstep/System/Library/SOGo/$1.SOGo/Resources/$2

now it's Alias /SOGo.woa/WebServerResources/ \
  /usr/lib64/GNUstep/SOGo/WebServerResources/
Alias /SOGo/WebServerResources/ \
  /usr/lib64/GNUstep/SOGo/WebServerResources/
AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \
   /usr/lib64/GNUstep/SOGo/$1.SOGo/Resources/$2

So I can see login for Sogo but when I'm trying to login I have An unhandled
error occurred.  I check log and ther is on error just after logging
succefully

Jun 08 13:11:19 sogod [26474]: SOGoRootPage successful login for user
'g...@orthobourg.com' - expire = -1  grace = -1
EXCEPTION: NSException: 0x18048b78 NAME:NSInvalidArgumentException
REASON:NGLdapEntry(instance) does not recognize asDictionary INFO:(null)
Jun 08 13:11:20 sogod [16757]: 0x0x17c4c658[WOWatchDogChild] child 26474
exited
Jun 08 13:11:20 sogod [16757]: 0x0x17c4c658[WOWatchDogChild]  (terminated due
to signal 6)
Jun 08 13:11:20 sogod [16757]: 0x0x17c4c658[WOWatchDogChild] avoiding to
respawn child before 2012-06-08 13:11:24 -0400
Jun 08 13:11:24 sogod [16757]: 0x0x17bb2568[WOWatchDog] child spawned with
pid 29757
Jun 08 13:11:28 sogod [29757]: 0x0x17cf4ac8[SOGoCache] Cache cleanup interval
set every 120.00 seconds
Jun 08 13:11:28 sogod [29757]: 0x0x17cf4ac8[SOGoCache] Using host(s)
'localhost' as server(s)
2012-06-08 13:11:28.751 sogod[29757] Note(SoObject): SoDebugKeyLookup is
enabled!
2012-06-08 13:11:28.751 sogod[29757] Note(SoObject): SoDebugBaseURL is enabled!
2012-06-08 13:11:28.751 sogod[29757] Note(SoObject): relative base URLs are
enabled.
2012-06-08 13:11:29.061 sogod[29757] WOCompoundElement: pool embedding is on.
2012-06-08 13:11:29.061 sogod[29757] WOCompoundElement: id logging is on.

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


Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-08 Thread greg
May be there is something to update in the mySQL database  ?
Before it was sogo ver 1.3 now it's 1.3.16 

Here my GNUstepDefaults

?xml version=1.0 encoding=UTF-8?
!DOCTYPE plist PUBLIC -//GNUstep//DTD plist 0.9//EN
http://www.gnustep.org/plist-0_9.xml;
plist version=0.9
dict
keyNSGlobalDomain/key
dict
/dict
keysogod/key
dict
keyOCSEMailAlarmsFolderURL/key
   
stringmysql://sogo:x@localhost:3306/sogo/sogo_alarms_folder/string
keyOCSFolderInfoURL/key
   
stringmysql://sogo:x@localhost:3306/sogo/sogo_folder_info/string
keyOCSSessionsFolderURL/key
   
stringmysql://sogo:x@localhost:3306/sogo/sogo_sessions_folder/string
keySOGOEnableEMailAlarms/key
stringYES/string
keySOGoACLsSendEMailNotifications/key
stringYES/string
keySOGoAppointmentSendEMailNotifications/key
stringYES/string
keySOGoCacheCleanupInterval/key
string120/string
keySOGoCalendarDefaultRoles/key
array 
stringPublicViewer/string
stringConfidentialDAndTViewer/string
/array
keySOGoEnablePublicAccess/key
stringYES/string
keySOGoFirstDayOfWeek/key
string1/string
keySOGoFoldersSendEMailNotifications/key
stringYES/string
keySOGoForceIMAPLoginWithEmail/key
stringYES/string
keySOGoForwardEnabled/key
stringYES/string
keySOGoFowardEnabled/key
stringYES/string
keySOGoIMAPServer/key
stringlocalhost/string
keySOGoLanguage/key
stringFrench/string
keySOGoLoginModule/key
stringCalendar/string
keySOGoMailDomain/key
stringorthobourg.com/string
keySOGoMailMessageCheck/key
stringevery_minute/string
keySOGoMailPollingIntervals/key
string2/string
keySOGoMailShowSubscribedFoldersOnly/key
stringNO/string
keySOGoMailUseOutlookStyleReplies/key
stringYES/string
keySOGoMailingMechanism/key
stringsmtp/string
keySOGoMemcachedHost/key
stringlocalhost/string
keySOGoPageTitle/key
stringAgenda OrthoBourg/string
keySOGoProfileURL/key
   
stringmysql://sogo:x@localhost:3306/sogo/sogo_user_profile/string
keySOGoSMTPServer/key
stringlocalhost/string
keySOGoSharedFolderName/key
stringRépertoires partagés/string
keySOGoTimeZone/key
stringAmerica/Montreal/string
keySOGoUserSources/key
array
dict
keyCNFieldName/key
stringcn/string
keyIDFieldName/key
stringuid/string
keyUIDFieldName/key
stringuid/string
keybaseDN/key
stringou=users,dc=orthobourg,dc=com/string
keybindDN/key
stringuid=sogo,ou=users,dc=orthobourg,dc=com/string
keybindPassword/key
stringx/string
keycanAuthenticate/key
stringYES/string
keydisplayName/key
stringAddresses partagées/string
keyhostname/key
stringlocalhost/string
keyid/key
stringpublic/string
keyisAddressBook/key
stringYES/string
keyport/key
string389/string
keytype/key
stringldap/string
/dict
/array
keySOGoVacationEnabled/key
stringYES/string
keyWOWorkersCount/key
string3/string
/dict
/dict
/plist
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg
Hi to all

I update my Centos x64 one week ago with yum update 

Sogod was very slow and I try to restart I but when I try to restart I have
these message:

Restarting SOGo:
/usr/GNUstep/System/Tools/Admin/sogod: error while loading shared libraries:
libgnustep-base.so.1.20: cannot open shared object file: No such file or
directory

Before message was : /etc/init.d/sogod: line 73:
/usr/GNUstep/System/Library/Makefiles/GNUstep.sh: Aucun fichier ou répertoire
de ce type

and I remember to have exactyl same problem here 
https://inverse.ca/sogo/lists/arc/users/2011-10/msg00377.html

So I correct etc/init.d/sogod file ligne 73 with this instruction :   .
/usr/share/GNUstep/Makefiles/GNUstep.sh It's correct first error but not the
second one -- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread Ludovic Marcotte

On 07/06/12 11:28, g...@orthobourg.com wrote:

Sogod was very slow and I try to restart I but when I try to restart I have
these message:

Restarting SOGo:
/usr/GNUstep/System/Tools/Admin/sogod: error while loading shared libraries:
libgnustep-base.so.1.20: cannot open shared object file: No such file or
directory

Before message was : /etc/init.d/sogod: line 73:
/usr/GNUstep/System/Library/Makefiles/GNUstep.sh: Aucun fichier ou répertoire
de ce type

Show the complete list of installed SOGo/SOPE packages.

--
Ludovic Marcotte
+1.514.755.3630  ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (www.sogo.nu) and PacketFence 
(www.packetfence.org)

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


Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg


[root@serv1 ~]# rpm -q sogo
sogo-1.3_20110907-1.el5

[root@serv1 ~]# rpm -q GNUstep
le paquetage GNUstep n'est pas installé-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread Ludovic Marcotte

On 07/06/12 11:44, g...@orthobourg.com wrote:

[root@serv1 ~]# rpm -q sogo
sogo-1.3_20110907-1.el5

[root@serv1 ~]# rpm -q GNUstep
le paquetage GNUstep n'est pas installé--

You updated GNUstep but not SOGo (and likely not all SOPE packages).

Force the installation of SOGo v1.3.15a and the required SOPE packages.

See http://inverse.ca/downloads/SOGo/RHEL6/x86_64/RPMS/ for the packages 
list.


--
Ludovic Marcotte
+1.514.755.3630  ::  www.inverse.ca
Inverse inc. :: Leaders behind SOGo (www.sogo.nu) and PacketFence 
(www.packetfence.org)

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


Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg
OK , I need to be sure about the command to type

my old sogo is under MySql with ldap server, I want to be sure if I install
Sogo or GNU I dont' loose the data ...
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg
I check log just after restart Mysqld :

2012-06-07 10:56:46.105 sogod[24076] EOAdaptor: cannot find adaptor bundle:
'MySQL'
Jun 07 10:56:46 sogod [24076]: [ERROR] 0x0x1bcb510[WOWatchDog] an exception
occured in runloop NSException: 0x23648a0 NAME:NSInvalidArgumentException
REASON:Tried to add nil value for key 'localhost:3306:sogo:sogo' to dictionary
INFO:{}
Jun 07 10:56:46 sogod [6271]: 0x0x1cf8c50[WOWatchDogChild] child 24076 exited
Jun 07 10:56:46 sogod [6271]: 0x0x1cf8c50[WOWatchDogChild] avoiding to
respawn child before 2012-06-07 10:56:51 -0400
Jun 07 10:56:51 sogod [6271]: 0x0x1bcb510[WOWatchDog] child spawned with pid
28064

So please I need information to correct the installation
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg
[root@serv1 ~]# rpm -q sope49-gdl1-mysql
sope49-gdl1-mysql-4.9-20120511_1664.el5.1

So I juist need to reinstall sogo ?  I'm under Centos 5.5 x64 
is this command could help me ?

rpm -Uvh
http://inverse.ca/downloads/SOGo/RHEL5/x86_64/RPMS/sogo-1.3.15a-1.el5.x86_64.rpm
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


Re: Re: Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg
OK I remove it and install new version but I have same message :(

[root@serv1 ~]# yum remove sogo
Loaded plugins: fastestmirror, priorities
Setting up Remove Process
Resolving Dependencies
There are unfinished transactions remaining. You might consider running
yum-complete-transaction first to finish them.
The program yum-complete-transaction is found in the yum-utils package.
-- Running transaction check
--- Package sogo.x86_64 0:1.3_20110907-1.el5 set to be erased
-- Finished Dependency Resolution

Dependencies Resolved

===
 Package   ArchVersion 
  Repository  Size
===
Removing:
 sogo  x86_64 
1.3_20110907-1.el5 installed   
   14 M

Transaction Summary
===
Remove1 Package(s)
Reinstall 0 Package(s)
Downgrade 0 Package(s)

Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Erasing: sogo
   1/1
attention: /etc/httpd/conf.d/SOGo.conf sauvé en tant que
/etc/httpd/conf.d/SOGo.conf.rpmsave

Removed:
  sogo.x86_64 0:1.3_20110907-1.el5

Complete!
[root@serv1 ~]# rpm -Uvh sogo-1.3.15a-1.el5.x86_64.rpm
Préparation...###
[100%]
   1:sogo   ### [100%]
[root@serv1 ~]# service sogod start
Starting SOGo:
/usr/sbin/sogod: error while loading shared libraries: libgnustep-base.so.1.20:
cannot open shared object file: No such file or directory
  sogo [ÉCHOUÉ]
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: Re: [SOGo] HELP ! Error message after CentOs upgrade

2012-06-07 Thread greg
I double check and SOPE49 are installed at last version :(
-- 
users@sogo.nu
https://inverse.ca/sogo/lists


[SOGo] help zeg virtual appliance 2.0 rc2

2012-05-31 Thread jditto
Thank-you in advance

Help

While searching for a “free” alternative to Microsoft Exchange (which I
have no experience with!) I found Sogo.  I wanted to try out the virtual
machine “ZEG” .  I imported into virtual box and it starts and I get a
valid IP address which I can ping externaly.  I created another virtual box
running windows XP and installed Microsoft office 2003.  I can ping the Zeg
appliance from the xp machine.  I can even connect to the sogo server through
http and I can access the webmin console through the XP machine.  I modified
the hosts file on the XP machine but outlook will not connect.  I go to control
panel to mail setup and follow the guide on the sogo.nu site.  For the user
name I use sogo1, 2, or 3 with the password sogo.  I’ve tried
so...@example.com, sogo1, sogo\sogo1 as user names I get nothing.  The only
thing I get is either “your Microsoft exchange server is unavailable” or
“the action could not be completed.  The connection to the Microsoft exchange
server is unavailable.  Outlook must be online or connected to complete this
action.”  i also disabled any firewalls.

Can you help?

Please… with sugar on top?!!!

Thank-you,

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

[SOGo] help zeg virtual appliance 2.0 rc2

2012-05-31 Thread joe ditto
Thank-you in advance

 

Help

 

While searching for a free alternative to Microsoft Exchange (which I have
no experience with!) I found Sogo.  I wanted to try out he virtual machine
ZEG .  I imported into virtual box and it starts and I get a valid IP
address which I can ping externaly.  I created another virtual box running
windows XP and installed Microsoft office 2003.  I can ping the Zeg
appliance from the xp machine.  I can even connect to the sogo server and I
can access the webmin console through the XP machine.  I modified the hosts
file on the XP machine but outlook will not connect.  I go to control panel
to mail setup and follow the guide on the sogo.nu site.  For the user name I
use sogo1, 2, or 3 with the password sogo.  I've tried so...@example.com,
sogo1, sogo\sogo1 as user names I get nothing.  The only thing I get is
either your Microsoft exchange server is unavailable or the action could
not be completed.  The connection to the Microsoft exchange server is
unavailable.  Outlook must be online or connected to complete this action.

 

Can you help?

 

Please. with sugar on top?!!!

 

Thank-you,

 

Joe

 

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

[SOGo] Help two Sogo Server

2012-05-15 Thread Fernando Moreni
Title: Assinatura

  
  
Hello,

Sogo is Possible to run two server on the same server completely
independent.
One on port 2 and another on port 3
With two settings in apache SOgo.conf
example

SOgo_internal.conf
SOgo_external.conf

/ home / sogo_internal
/ home / sogo_external

/ etc / init.d / sogo_external
/ etc / init.d / sogo_internal


I managed to run both on different ports but I can not do the apache
correctly point to the Sogo


SOgo_internal.conf
SOgo_external.conf

This error presenting

15/May/2012:11:38:22 GMT] "GET /SOGo_external/index HTTP/1.1" 404
43/0 0.062 - - 2M

object
  not found: SOGo_external = index
-- 
  
  
  

  


  
  
Fernando Moreni
  
  
Tecnologia da Informao
  
  
Tel.: (11) 2199-0701
  
  
Cel.: (11) 7729-7624
  
  
E-mail: fmor...@simtrack.com.br
  

  

  



Re: [SOGo] HELP GOD! - apt-get install samba4 - dependency hell

2012-05-14 Thread Wolfgang Sourdeau

Le 12-05-11 04:06, Netwo Dist a écrit :
Ok. I have these packages which came from nightly builds ubuntu 
inverse sogo repo which I cant get rid of. Please not that this repo 
is not in my sources anymore, system was synced and updated. Only 
normal sogo repo is in my sources and it doesnt store these packages:


root@server:~# dpkg -l | grep inverse
ii  libasn1-8-heimdal   
 1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - ASN.1 library
ii  libgssapi3-heimdal   
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - GSSAPI support 
library
ii  libhcrypto4-heimdal 
 1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - crypto library
ii  libheimbase1-heimdal 
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - Base library
ii  libheimntlm0-heimdal 
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - NTLM support 
library
ii  libhx509-5-heimdal   
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - X509 support 
library
ii  libkrb5-26-heimdal   
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - libraries
ii  libroken18-heimdal   
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - roken support 
library
ii  libwind0-heimdal 
1.6~git20120311.dfsg.1-3~inverse1.0 Heimdal Kerberos - stringprep 
implementation

root@server:~# apt-get remove libasn1-8-heimdal


Go with dpkg directly instead:
dpkg --force-depends -r libasn1-8-heimdal libgssapi3-heimdal 
libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal 
libhx509-5-heimdal libkrb5-26-heimdal libkrb5-26-heimdal  
libroken18-heimdal  libwind0-heimdal


and then reinstall them with apt:
apt-get install libasn1-8-heimdal libgssapi3-heimdal libhcrypto4-heimdal 
libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal 
libkrb5-26-heimdal libkrb5-26-heimdal  libroken18-heimdal  libwind0-heimdal


This should work properly
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] HELP GOD! - apt-get install samba4 - dependency hell

2012-05-12 Thread Jürgen Echter

Am 11.05.2012 10:06, schrieb Netwo Dist:
Ok. I have these packages which came from nightly builds ubuntu 
inverse sogo repo which I cant get rid of. Please not that this repo 
is not in my sources anymore, system was synced and updated. Only 
normal sogo repo is in my sources and it doesnt store these packages:

Hi,

you could try

http://blogs.plexibus.com/2010/03/16/downgrade-a-package-in-ubuntu/

cheers.

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


Re: [SOGo] HELP GOD! - apt-get install samba4 - dependency hell

2012-05-11 Thread Jim
On 10-5-2012 23:23, Netwo Dist wrote:
 Also, I have chosen sogo primarilly because of exchange capabilities. So
 I cant use openchange on ubuntu 12.04 lts? There is no way? When there
 would be one? That is important bit.
It's in beta. When it is out of beta depends on development and testing
progress, which AFAIU cannot be predicted accurately in advance.

In other words, if you depend on getting this functionality working on a
production environment, I'd suggest you look at alternatives.

You could also try to run a virtual machine with the ZEG edition. While
that is also beta (and therefore not meant for production use), all the
parts have been integrated, tuned and to some extent tested already.

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


  1   2   >