Koozali.org: home of the SME Server

SOGo-Integration

Offline detlevp

  • ****
  • 76
  • +0/-0
SOGo-Integration
« on: October 13, 2012, 11:06:22 PM »
Hello, I want to make this contribution to SOGo integration at dovecot. Can someone help me as I include the information in the .GnustepDefaults and expand by lead. At this point (/ home/sogo/GNUstep/Defaults/.GNUstepDefaults) it can not take place.

========================================================================
SOGo integration

To enable all these features with SOGo, you need to modify it's configuration. Here're the configuration to change (you need to create a custom template) in /home/sogo/GNUstep/Defaults/.GNUstepDefaults:

    SOGoSieveServer = "sieve://localhost:4190";
    SOGoVacationEnabled = YES;
    SOGoForwardEnabled = YES;
    SOGoSieveScriptsEnabled = YES;

Here's the snippet I've added in the template to conditionnally enable all this:

{
    if (($sieve{'status'} || 'disabled') eq 'enabled'){
        my $sieveport = $sieve{'TCPPort'} || '4190';
        $OUT .=<<"HERE";
        SOGoSieveServer = "sieve://localhost:$sieveport";
        SOGoVacationEnabled = YES;
        SOGoForwardEnabled = YES;
        SOGoSieveScriptsEnabled = YES;
HERE
    }
}

Then, just expand /home/sogo/GNUstep/Defaults/.GNUstepDefaults and restart SOGo, now you should have access to all these extra features :-)
========================================================================

Thanks and greeting
Detlev

Offline CharlieBrady

  • *
  • 6,918
  • +3/-0
Re: SOGo-Integration
« Reply #1 on: October 14, 2012, 10:04:39 PM »
Hello, I want to make this contribution to SOGo integration at dovecot.

The URL you posted is invalid. This is what you meant:

https://wikit.firewall-services.com/doku.php?id=smedev:dovecot

I think the best place to seek assistance with development issues is on the 'devinfo' email list.

http://wiki.contribs.org/SME_Server:Documentation:Developers_Manual

http://lists.contribs.org/mailman/listinfo/devinfo

Offline Stefano

  • *
  • 10,894
  • +3/-0
Re: SOGo-Integration
« Reply #2 on: October 14, 2012, 10:38:37 PM »
Moving to Contribs

Offline detlevp

  • ****
  • 76
  • +0/-0
Re: SOGo-Integration
« Reply #3 on: October 15, 2012, 06:16:35 PM »
Hi Charlie,

The URL you posted is invalid. This is what you meant:

https://wikit.firewall-services.com/doku.php?id=smedev:dovecot

Thank you for your help. This is precisely the article. I wanted to install dovecot to test the shared folders feature. I could use SOGo to see the results.

I think the best place to seek assistance with development issues is on the 'devinfo' email list.

http://wiki.contribs.org/SME_Server:Documentation:Developers_Manual

http://lists.contribs.org/mailman/listinfo/devinfo

I'll be looking for a closer look.

Greeting Detlev

Offline CharlieBrady

  • *
  • 6,918
  • +3/-0
Re: SOGo-Integration
« Reply #4 on: October 15, 2012, 09:45:22 PM »
I wanted to install dovecot to test the shared folders feature.

dovecot is already installed. Perhaps you mean you wish to install a later version of dovecot. Or to configure dovecot differently somehow.