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