Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - satyris

Pages: 1 2 [3] 4 5 ... 7
31
Installation and Upgrades / [SOLVED] Davical and zentyal ?
« on: October 29, 2010, 10:10:52 am »
Has anyone tried davical at zentyal?

http://www.davical.org/


32
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 29, 2010, 09:21:45 am »
Hi Björn,
thanks for your help, but this peace of sh... needs to much of my spare time.
I dont have the time to read a manual completely and i could not find the needed information as you mentioned before.

33
Installation and Upgrades / Re: e-mail backup
« on: October 28, 2010, 09:40:22 am »
Take a look at:

/var/vmail/youremaildomain/useraccounts

34
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 27, 2010, 10:41:37 am »
Hi Björn,
i have managed the problem with .GNUstepDefaults

After that, there were problems with apache2 (a2enmod proxy, a2enmod headers)

a few warnings:

/etc/init.d/apache2 restart

Quote
* Restarting web server apache2                                                                                                                                                   [Wed Oct 27 10:37:39 2010] [warn] The Alias directive in /etc/apache2/conf.d/SOGo.conf at line 3 will probably never match because it overlaps an earlier Alias.
[Wed Oct 27 10:37:39 2010] [warn] The Alias directive in /etc/apache2/conf.d/SOGo.conf at line 5 will probably never match because it overlaps an earlier Alias.
 ... waiting [Wed Oct 27 10:37:40 2010] [warn] The Alias directive in /etc/apache2/conf.d/SOGo.conf at line 3 will probably never match because it overlaps an earlier Alias.
[Wed Oct 27 10:37:40 2010] [warn] The Alias directive in /etc/apache2/conf.d/SOGo.conf at line 5 will probably never match because it overlaps an earlier Alias.

but, how to access sogo now?

http://server:20000/
http://server:20000/SOGo
http://server/SOGo

all not working ???

This is the important Proxypart of my SOGo.conf

Quote
ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0

<Proxy http://127.0.0.1:20000/SOGo>
## adjust the following to your configuration
  RequestHeader set "x-webobjects-server-port" "80"
  RequestHeader set "x-webobjects-server-name" "server"
  RequestHeader set "x-webobjects-server-url" "http://server"


35
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 25, 2010, 06:20:15 pm »
Hi Björn,

my GNUstepDefaults.txt was just for testing.
First i copied your template in that file and then changed the values for my needings.

Last step was cp GNUstepDefaults.txt to .GNUstepDefaults.

As far as i understand it should work. Mhm, so thats not very nice.

Can you do me a big favour?
Can you convert my .GNUstepDefaults to xml format, please?

36
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 25, 2010, 10:58:06 am »
Hi Björn,
sorry for being a little "slow"

Here is what i did:

sogo@xxx:~/GNUstep/Defaults$ cat GNUstepDefaults.txt
Code: [Select]

{
    NSGlobalDomain = {
    };
    sogod = {
        WOApplicationRedirectURL = "https://xxx/SOGo/";
        #OCSFolderInfoURL = "mysql://{$sogouser}:{$sogopassword}@localhost:3306/{$sogodb}/sogo_folder_info";
        SOGoProfileURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile"
        OCSFolderInfoURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_folder_info"
        
      SOGoACLsSendEMailNotifications = YES;
        SOGoAppointmentSendEMailNotifications = YES;
        SOGoAuthenticationMethod = LDAP;
        SOGoDraftsFolderName = Drafts;
        SOGoFirstDayOfWeek = 1;
        SOGoFoldersSendEMailNotifications = YES;
        SOGoForceIMAPLoginWithEmail = YES;
        SOGoForwardEnabled = YES;
        SOGoIMAPServer = localhost;
        SOGoLanguage = German;
        SOGoMailDomain = mail.fritz.box;
        SOGoMailingMechanism = sendmail;
        SOGoOtherUsersFolderName = "Other Users";
        #SOGoProfileURL = "mysql://{$sogouser}:{$sogopassword}@localhost:3306/{$sogodb}/sogo_user_profile";
        SOGoSMTPServer = localhost;
        SOGoSentFolderName = Sent;
        SOGoSharedFolderName = "Shared Folders";
        SOGoSuperUsernames = (sogo      
        );
        SOGoTimeZone = Europe/Berlin;
        SOGoTrashFolderName = Trash;
        SOGoUserSources = (
            {
                CNFieldName = cn;
                IDFieldName = uid;
                UIDFieldName = uid;
                baseDN = "ou=Users,dc=ebox";
                bindDN = "cn=ebox,dc=ebox";
                bindPassword = xxxx;
                canAuthenticate = YES;
                displayName = "Shared Addresses";
                hostname = localhost;
                id = public;
                isAddressBook = YES;
                port = 389;
            }
        );
        SOGoVacationEnabled = YES;
        WOMessageUseUTF8 = YES;
        WOParsersUseUTF8 = YES;
        WOPort = 20000;
        WOSendMail = "/usr/sbin/sendmail";
    };
}

Thats my template. Now i use /etc/init.d/sogo restart
Quote
* Restarting SOGo sogo                                                                                                                                                            2010-10-25 10:53:15.359 sogod[9585] File NSDictionary.m: 628. In -[NSDictionary initWithContentsOfFile:] Contents of file '/home/sogo/GNUstep/Defaults/.GNUstepDefaults' does not contain a dictionary
<0x0x249e790[SOGoStartupLogger]> No configuration found. SOGo will not work properly.

After that, i get a .GNUstepDefaults file with the following content:

sogo@xxx:~/GNUstep/Defaults$ cat .GNUstepDefaults

Code: [Select]
<?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>
    <key>NSGlobalDomain</key>
    <dict>
    </dict>
    <key>sogod</key>
    <dict>
    </dict>
</dict>
</plist>

37
Installation and Upgrades / Re: Fetchmail and Queue
« on: October 25, 2010, 10:21:30 am »
Do you have zentyal-email or the standard email-System?

38
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 23, 2010, 09:14:01 am »
Hello Björn

Quote
defaults write sogod SOGoTimeZone "America/Montreal"

results in:

Quote
2010-10-23 09:00:11.096 defaults[10620] File NSDictionary.m: 628. In -[NSDictionary initWithContentsOfFile:] Contents of file '/home/sogo/GNUstep/Defaults/.GNUstepDefaults' does not contain a dictionary
2010-10-23 09:00:11.180 defaults[10620] File NSDictionary.m: 628. In -[NSDictionary initWithContentsOfFile:] Contents of file '/home/sogo/GNUstep/Defaults/.GNUstepDefaults' does not contain a dictionary

Only the string SOGoTimeZone "America/Montreal" is included now.

When i try it with the bracket-style configuration file:

Code: [Select]
/etc/init.d/sogo restart
 * Restarting SOGo sogo  
2010-10-23 09:08:24.471 sogod[10866] File NSDictionary.m: 628. In -[NSDictionary initWithContentsOfFile:] Contents of file '/home/sogo/GNUstep/Defaults/.GNUstepDefaults' does not contain a dictionary
<0x0x27398b0[SOGoStartupLogger]> No configuration found. SOGo will not work properly.




39
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 21, 2010, 06:57:44 pm »
Hi Björn,

i understand the failure message, but not how you will use your posted template with "defaults write sogod" ?!

My changed template is in GNUstepDefaults.txt, but how to get it in a xml version?


40
How about SOGO integration in zentyal ?

41
Installation and Upgrades / Re: Quick Howto: SOGo
« on: October 21, 2010, 02:05:53 pm »
When i use this command:

Code: [Select]
sogo@xxx:~/GNUstep/Defaults$ defaults write sogod
i only get:

Quote
defaults: no dictionary or key for write!

When i use this command:

Code: [Select]
defaults write sogod GNUstepDefaults.txt
i only get:

Quote
defaults write: domain is not a dictionary!


So how can i use my template???

42
Gave up and installed zarafa.

But still not working with zarafa.

Maybe time to look after a new server solution, for example ClearOS ?

43
Quote
It would be great if anyone could contribute with a HOWTO on integrating zarafa with kontact, it will speed up things a lot

Yes, that would be fantastic, but

so far i know there is only a way with kontact and groupdav and that is NOT provided from Zarafa!

http://vtluug.org/wiki/Zarafa

Quote
Note that the KDE PIM suite requires GroupDAV, which is not provided by Zarafa

 >:(



44
@J. A. Calvo
I understand your opinion, but have you tried to access the calendar/addressbook from zarafa with a kontact client (KDE4 korganizer or kaddressbook)?

I would say, that that is not possible at the moment!

45
Hello,
maybe anyone else has the following constellation:
Zentyal 2.x, with KDE 4.5.x and egroupware 1.6

When i try to connect my kontact addressbook (kaddressbook or kab) with GROUPDAV then i get the following message in /var/log/apache2/error.log

Code: [Select]
PHP Fatal error:  Cannot use object of type groupdav_propfind_iterator as array in /usr/share/egroupware/egw-pear/HTTP/WebDAV/Server.php on line 630
see also:
http://dev.egroupware.org/viewvc/egroupware/trunk/addressbook/inc/?view=log
Revision 28140
http://dev.egroupware.org/viewvc/egroupware?view=rev&revision=28140


Pages: 1 2 [3] 4 5 ... 7