[SOGo] Cannot view Mails

2013-05-11 Thread info
Hallo,
I am struggling while installing and configuring SOGo, but I'm still alive. I
hope someone can help me with my problem:

I have compiles and installed the following versions of software on a openSuse
12.3 x64 :

gnustep-make-2.6.4 with ./configure --disable-native-objc-exceptions
gnustep-base-1.24.4 with ./configure
gnustep-gui-0.23.1 with ./configure
gnustep-back-0.23.0 with ./configure
SOPE with ./with-gnustep --enable-debug --disable-strip
SOGo-2.0.5a with ./configure --enablge-debug --disable-strip

this is my /etc/sogo/sogo.conf file:

{

WOWorkersCount = 20;
WOPort = 2;
WOLogFile = /var/log/sogo/sogo.log;
SOGoMemcachedHost = 127.0.0.1;
SOGoTimeZone=Europe/Berlin;
SOGoSuperUsernames = (admin);
SOGoLanguage=German;
SOGoSupportedLanguages = (German,English);


SOGoProfileURL =
mysql://sogo:sogosecret@localhost:3306/sogo/sogo_user_profile;
OCSFolderInfoURL=mysql://sogo:sogosecret@localhost:3306/sogo/sogo_folder_info;
OCSSessionsFolderURL =
mysql://sogo:sogosecret@localhost:3306/sogo/sogo_sessions_folder;
OCSEMailAlarmsFolderURL =
mysql://sogo:sogosecret@localhost:3306/sogo/sogo_alarms_folder;

SOGoUserSources =
(
{
  type=sql;
  id=directory;
  displayName=Verzeichnis;
  viewURL = mysql://sogo:sogosecret@localhost:3306/sogo/sogo_auth;
  canAuthenticate = YES;
  isAddressBook = YES;
  userPasswordAlgorithm = md5;
} 
);

SOGoMailingMechanism = smtp;
SOGoSMTPServer = 127.0.0.1;
SOGoSMTPAuthenticationType=PLAIN;

SOGoDraftsFolderName = Drafts;
SOGoSentFolderName = Sent;
SOGoTrashFolderName = Trash;
SOGoIMAPServer= 127.0.0.1;

SOGoLoginModule = Contacts;
SOGoVacationEnabled = YES;
SOGoGoForwardEnabled= YES;
SOGoGoMailMessageCheck = every_5_minutes;
SOGoFirstDayOfWeek=1;

SOGoAppointmentSendEMailNotifications = YES;
SOGoCalendarDefaultRoles = ( PublicViewer, ConfidentialDAndTViewer );
SOGoMailDomain = mydomain.de;



}

This is my /etc/apache2/conf.c/SOGo.conf:

Alias /SOGo.woa/WebServerResources/ \
 /usr/local/lib/GNUstep/SOGo/WebServerResources/
Alias /SOGo/WebServerResources/ \
 /usr/local/lib/GNUstep/SOGo/WebServerResources/
AliasMatch /SOGo/so/ControlPanel/Products/(.*)/Resources/(.*) \
  /usr/local/lib/GNUstep/SOGo/$1.SOGo/Resources/$2

Directory /usr/local/lib/GNUstep/SOGo/
   AllowOverride None
   Order deny,allow
   Allow from all

   # Explicitly allow caching of static content to avoid browser specific
behavior.
   # A resource's URL MUST change in order to have the client load the new
version.
   IfModule expires_module
 ExpiresActive On
 ExpiresDefault access plus 1 year
   /IfModule
/Directory

LocationMatch
^/SOGo/so/ControlPanel/Products/.*UI/Resources/.*\.(jpg|png|gif|css|js)
 SetHandler default-handler
/LocationMatch

## Uncomment the following to enable proxy-side authentication, you will then
## need to set the SOGoTrustProxyAuthentication SOGo user default to YES and
## adjust the x-webobjects-remote-user proxy header in the Proxy section
## below.
#Location /SOGo
#  AuthType XXX
#  Require valid-user
#  SetEnv proxy-nokeepalive 1
#  Allow from all
#/Location

ProxyRequests Off
SetEnv proxy-nokeepalive 1
ProxyPreserveHost On

# When using CAS, you should uncomment this and install cas-proxy-validate.py
# in /usr/lib/cgi-bin to reduce server overloading
#
# ProxyPass /SOGo/casProxy http://localhost/cgi-bin/cas-proxy-validate.py
# Proxy http://localhost/app/cas-proxy-validate.py
#   Order deny,allow
#   Allow from your-cas-host-addr
# /Proxy

ProxyPass /SOGo http://127.0.0.1:2/SOGo retry=0

Proxy http://127.0.0.1:2/SOGo
## adjust the following to your configuration
 RequestHeader set x-webobjects-server-port 80
 RequestHeader set x-webobjects-server-name mydomain.de
 RequestHeader set x-webobjects-server-url http://mydomain.de;

## When using proxy-side autentication, you need to uncomment and
## adjust the following line:
#  RequestHeader set x-webobjects-remote-user %{REMOTE_USER}e

 RequestHeader set x-webobjects-server-protocol HTTP/1.0

 AddDefaultCharset UTF-8

 Order allow,deny
 Allow from all
/Proxy


And now, when I start with the unixuser soho the deamon:

/usr/local/sbin/sogod -WOPort 2 -WOWorkersCount 1 -WOLogFile - -WOPidFile
/tmp/sogo.pid

I get the following output:

May 11 12:17:17 sogod [38611]: vmem size check enabled: shutting down app when
vmem  384 MB
May 11 12:17:17 sogod [38611]: 0x0x7fe6178a0358[SOGoProductLoader] SOGo
products loaded from '/usr/local/lib/GNUstep/SOGo':
May 11 12:17:17 sogod [38611]: 0x0x7fe6178a0358[SOGoProductLoader]  
Mailer.SOGo, SchedulerUI.SOGo, MainUI.SOGo, Contacts.SOGo,
AdministrationUI.SOGo, MailerUI.SOGo, ContactsUI.SOGo, CommonUI.SOGo,
PreferencesUI.SOGo, Appointments.SOGo, MailPartViewers.SOGo
Error
(objc-load):/usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/./MailPartViewers:
undefined symbol: __objc_class_name_SOGoMailBodyPart
May 11 12:17:17 sogod [38611]: [so-product-registry] could not load product:
MailPartViewers
Error (objc-load):/usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/./MailerUI:

Re: [SOGo] Cannot view Mails

2013-05-11 Thread Steven Hiscocks

On 11/05/13 15:57, i...@jameo.de wrote:

Hallo,
I am struggling while installing and configuring SOGo, but I'm still alive. I
hope someone can help me with my problem:

I have compiles and installed the following versions of software on a openSuse
12.3 x64 :

gnustep-make-2.6.4 with ./configure --disable-native-objc-exceptions
gnustep-base-1.24.4 with ./configure
gnustep-gui-0.23.1 with ./configure
gnustep-back-0.23.0 with ./configure
SOPE with ./with-gnustep --enable-debug --disable-strip
SOGo-2.0.5a with ./configure --enablge-debug --disable-strip


I get the following output:

May 11 12:17:17 sogod [38611]: vmem size check enabled: shutting down app when
vmem  384 MB
May 11 12:17:17 sogod [38611]: 0x0x7fe6178a0358[SOGoProductLoader] SOGo
products loaded from '/usr/local/lib/GNUstep/SOGo':
May 11 12:17:17 sogod [38611]: 0x0x7fe6178a0358[SOGoProductLoader]
Mailer.SOGo, SchedulerUI.SOGo, MainUI.SOGo, Contacts.SOGo,
AdministrationUI.SOGo, MailerUI.SOGo, ContactsUI.SOGo, CommonUI.SOGo,
PreferencesUI.SOGo, Appointments.SOGo, MailPartViewers.SOGo
Error
(objc-load):/usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/./MailPartViewers:
undefined symbol: __objc_class_name_SOGoMailBodyPart
May 11 12:17:17 sogod [38611]: [so-product-registry] could not load product:
MailPartViewers
Error (objc-load):/usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/./MailerUI:
undefined symbol: __objc_class_name_UIxMailRenderingContext
May 11 12:17:17 sogod [38611]: [so-product-registry] could not load product:
MailerUI


I've been getting the same errors for Mail elements when I upgraded to 
the latest gcc (and associated libs) on ArchLinux; from 4.8.0-2 (gcc 
snapshot 20130411) to 4.8.0-4 (gcc snapshot 20130502). I've not tested 
with 4.8.0-3 (gcc snapshot 20130425). Issue remains regardless of 
recompiling, so I've rolled back to 4.8.0-2 for now.


I suspect one of patches on the snapshots is breaking something. What 
version of gcc are you using on openSuse?


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


Re: Re: [SOGo] Cannot view Mails

2013-05-11 Thread info
Hallo Steve,
my GCC-Version is the following:
gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib64/gcc/x86_64-suse-linux/4.7/lto-wrapper
Target: x86_64-suse-linux
Configured with: ../configure --prefix=/usr --infodir=/usr/share/info
--mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64
--enable-languages=c,c++,objc,fortran,obj-c++,java,ada
--enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.7
--enable-ssp --disable-libssp --disable-libitm --disable-plugin
--with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux'
--disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib
--enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch
--enable-version-specific-runtime-libs --enable-linker-build-id
--program-suffix=-4.7 --enable-linux-futex --without-system-libunwind
--with-arch-32=i586 --with-tune=generic --build=x86_64-suse-linux
Thread model: posix
gcc version 4.7.2 20130108 [gcc-4_7-branch revision 195012] (SUSE Linux) 

Best Regards

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


[SOGo] BTS activities for Saturday, May 11 2013

2013-05-11 Thread SOGo reporter
Title: BTS activities for Saturday, May 11 2013





  
BTS Activities

  Home page: http://www.sogo.nu/bugs
  Project: SOGo
  For the period covering: Saturday, May 11 2013

  
  
idlast updatestatus (resolution)categorysummary
	
	
	  
	
2314
	2013-05-11 19:13:58
	new (open)
	sogo-tool
	tls=YES argument for sieve not parsed correctly in sogo conf