[SOGo] SOGo - Commercial Support South Africa

2013-04-18 Thread Wesley Sangster
Good day

Does anyone know of companies or individuals that support SOGo from the
ground up, our company is looking to replace our Exchange server and we are
looking for someone to build install and configure all the components,
SMTP, IMAP/POP3, SAMBA Active Directory, SOGo, Openchange, Outlook
connector. Remote or on-site work can be done, hope to have it done by end
of next week.

Regards

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

[SOGo] not sure how to add values to /etc/sogo/sogo.conf

2013-04-15 Thread Wesley Sangster
Hi Guys

I am busy with a fresh installation of SOGo 2.0.5-1, I am struggling with
the new conf file, the old versions used GNUStep, now you can't even log
into the sogo user. I have tried adding the values manually but I get the
following error restarting the sogo service;

0x0x7f38e4572070[SOGoStartupLogger] Cannot read configuration from
'/etc/sogo/sogo.conf'. Aborting

My config is below;

{
SOGoTimeZone = Africa/Johannesburg;
SOGoMailDomain = macrobert.co.za;
SOGoLanguage = English;
SOGoAppointmentSendEMailNotifications = YES;
SOGoFoldersSendEMailNotifications = YES;
SOGoACLsSendEMailNotifications = YES;
SOGoLoginModule = mail;
SOGoSieveScriptsEnabled = YES;
SOGoSieveServer = sieve://127.0.0.1:4190;
SOGoVactionEnabled = YES;
SOGoMailMessageCheck = every_1_minutes;
SOGoFirstDayOfWeek = 1;
SOGoSuperUsernames = (administrator);
OCSFolderInfoURL = mysql://
sogo:password@127.0.0.1:3306/sogo/sogo_folder_info;
SOGoProfileURL = mysql://
sogo:password@127.0.0.1:3306/sogo/sogo_user_profile;
OCSSessionsFolderURL = mysql://
sogo:password@127.0.0.1:3306/sogo/sogo_sessions_folder;
SOGoUserSources = (
{
canAuthenticate = YES;
isAddressBook = YES;
type = sql;
id = users
displayName = SOGo Users;
userPasswordAlgorithm = md5;
viewURL = mysql://sogo:password@127.0.0.1:3306/sogo/sogo_users;

}
);
SOGoMailingMechanism = smtp;
SOGoSMTPServer = 127.0.0.1;
SOGoDraftsFolderName = Drafts;
SOGoSentFolderName = Sent;
SOGoTrashFolderName = Trash;
SOGoIMAPServer = 127.0.0.1;
}

Is there a command for sogo-tool to insert the values into the conf file
like the defaults write used to? If so can someone provide an example with
the SOGoDraftsFolderName key.

Any help would be greatly appreciated!

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

Re: [SOGo] not sure how to add values to /etc/sogo/sogo.conf

2013-04-15 Thread Wesley Sangster
Thanks very much Jean, added the ';' and I was good to go. Feel embarrassed.


On Mon, Apr 15, 2013 at 2:56 PM, Jean Raby jr...@inverse.ca wrote:

 On 13-04-15 4:42 AM, Wesley Sangster wrote:

 Hi Guys

 I am busy with a fresh installation of SOGo 2.0.5-1, I am struggling with
 the
 new conf file, the old versions used GNUStep, now you can't even log into
 the
 sogo user. I have tried adding the values manually but I get the
 following error
 restarting the sogo service;

 the sogo user is now a 'system' user, with 'nologin' as a shell, so this
 is expected.


 0x0x7f38e4572070[**SOGoStartupLogger] Cannot read configuration from
 '/etc/sogo/sogo.conf'. Aborting

 My config is below;

 {
 SOGoTimeZone = Africa/Johannesburg;
 SOGoMailDomain = macrobert.co.za;
 SOGoLanguage = English;
 SOGoAppointmentSendEMailNotifi**cations = YES;
 SOGoFoldersSendEMailNotificati**ons = YES;
 SOGoACLsSendEMailNotifications = YES;
 SOGoLoginModule = mail;
 SOGoSieveScriptsEnabled = YES;
 SOGoSieveServer = sieve://127.0.0.1:4190;
 SOGoVactionEnabled = YES;
 SOGoMailMessageCheck = every_1_minutes;
 SOGoFirstDayOfWeek = 1;
 SOGoSuperUsernames = (administrator);
 OCSFolderInfoURL = mysql://sogo:password@127.0.**
 0.1:3306/sogo/sogo_folder_infohttp://sogo:password@127.0.0.1:3306/sogo/sogo_folder_info
 http://sogo:password@127.0.0.**1:3306/sogo/sogo_folder_infohttp://sogo:password@127.0.0.1:3306/sogo/sogo_folder_info
 **;

 SOGoProfileURL = mysql://sogo:password@127.0.**0.1:3306/sogo/sogo_user_*
 *profile http://sogo:password@127.0.0.1:3306/sogo/sogo_user_profile
 http://sogo:password@127.0.0.**1:3306/sogo/sogo_user_profilehttp://sogo:password@127.0.0.1:3306/sogo/sogo_user_profile
 **;

 OCSSessionsFolderURL =
 mysql://sogo:password@127.0.**0.1:3306/sogo/sogo_sessions_**folderhttp://sogo:password@127.0.0.1:3306/sogo/sogo_sessions_folder
 http://sogo:password@127.0.0.**1:3306/sogo/sogo_sessions_**folderhttp://sogo:password@127.0.0.1:3306/sogo/sogo_sessions_folder
 ;

 SOGoUserSources = (
  {
 canAuthenticate = YES;
 isAddressBook = YES;
 type = sql;
 id = users

 There's a ';' missing here.

 displayName = SOGo Users;
 userPasswordAlgorithm = md5;
 viewURL = 
 mysql://sogo:password@127.0.**0.1:3306/sogo/sogo_usershttp://sogo:password@127.0.0.1:3306/sogo/sogo_users
 http://sogo:password@127.0.0.**1:3306/sogo/sogo_usershttp://sogo:password@127.0.0.1:3306/sogo/sogo_users
 ;


  }
 );
 SOGoMailingMechanism = smtp;
 SOGoSMTPServer = 127.0.0.1;
 SOGoDraftsFolderName = Drafts;
 SOGoSentFolderName = Sent;
 SOGoTrashFolderName = Trash;
 SOGoIMAPServer = 127.0.0.1;
 }

 Is there a command for sogo-tool to insert the values into the conf file
 like
 the defaults write used to? If so can someone provide an example with the
 SOGoDraftsFolderName key.

 No, sogo-tool is not designed for that. If you really want to keep the old
 behavior, leave your defaults  into ~sogo/GNUstep/Defaults/.**GNUstepDefaults
 and continue to use 'defaults' to mangle^Wmanage your config. It will work
 as it used to.

 As for the SOGoDraftFolderName key, the syntax in the config file above is
 just fine, so it should work once you add a semi-colon at the end of the
 'id' line.


 Any help would be greatly appreciated!

 Wesley



 --
 Jean Raby
 jr...@inverse.ca  ::  +1.514.447.4918 (x120) ::  www.inverse.ca
 Inverse inc. :: Leaders behind SOGo (www.sogo.nu) and PacketFence (
 www.packetfence.org)
 --
 users@sogo.nu
 https://inverse.ca/sogo/lists




-- 
Wesley Sangster
Cell: +2783 412 2248
Email: big.mac.wes...@gmail.com
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] not sure how to add values to /etc/sogo/sogo.conf

2013-04-15 Thread Wesley Sangster
Thanks, Marcio, I will try that tomorrow and give you feedback, great bunch
of guys here

Wesley Sangster
Email: big.mac.wes...@gmail.com
Mobile: +2783 412 2248
On 15 Apr 2013 4:54 PM, Marcio Merlone marcio.merl...@a1.ind.br wrote:

  Em 15-04-2013 09:56, Jean Raby escreveu:

 On 13-04-15 4:42 AM, Wesley Sangster wrote:

 Hi Guys

 I am busy with a fresh installation of SOGo 2.0.5-1, I am struggling with
 the
 new conf file, the old versions used GNUStep, now you can't even log into
 the
 sogo user. I have tried adding the values manually but I get the following
 error
 restarting the sogo service;

 the sogo user is now a 'system' user, with 'nologin' as a shell, so this
 is expected.


 But you can still login as that user issuing 'sudo - sogo -s /bin/bash'.

 [ ]'s.

 --
  *Marcio Merlone*
 TI - Administrador de redes

 *A1 Engenharia - Unidade Corporativa*
   Fone: +55 41 3616-3797  Cel: +55 41 9689-0036  http://www.a1.ind.br/

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

Re: [SOGo] Problem First time installing sogo on Ubuntu 12.04

2013-02-16 Thread Wesley Sangster
Hi

Try following this
http://www.thefanclub.co.za/how-to/how-setup-ubuntu-business-box-server-ubb-part-2

Start from the below section and continue till end of SOGo installation.


   - *Add *Apache* modules*:

sudo a2enmod proxy
sudo a2enmod proxy_http
sudo a2enmod headers
sudo a2enmod rewrite


On Sat, Feb 16, 2013 at 4:40 PM, André Schild an...@schild.ws wrote:


  *Unfortunately, when I went to log into:*


 http://ubuntu1:2

 I get:

 An unhandled error occurred.


 Don't use port 2 for the login, you have to setup a webserver in front
 of it

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




-- 
Wesley Sangster
Cell: +2783 412 2248
Email: big.mac.wes...@gmail.com
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] Problem First time installing sogo on Ubuntu 12.04

2013-02-16 Thread Wesley Sangster
Pleasure, thanks to the author too

Wesley Sangster
Email: big.mac.wes...@gmail.com
Mobile: +2783 412 2248
On 16 Feb 2013 5:23 PM, Steve Ankeny stev...@cinergymetro.net wrote:

 Great link, Wesley!  Thx.

 Good study for anyone wanting to know how it works and how to configure it.

 On 02/16/2013 10:15 AM, Wesley Sangster wrote:

 Hi

 Try following this http://www.thefanclub.co.za/**how-to/how-setup-ubuntu-
 **business-box-server-ubb-part-2http://www.thefanclub.co.za/how-to/how-setup-ubuntu-business-box-server-ubb-part-2


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

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

Re: [SOGo] libxmlsec1 depreciated, unable to install, CentOS6

2013-01-22 Thread Wesley Sangster
Hi All

Thanks Miles, I will test in my Dev environment, but for now I had to
install on Ubuntu server.

Will test today and get back to you.

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