Re: [SOGo] SOGo update.php

2013-05-30 Thread Martin Krpata

Hi,
for autoinstall plugins you must have preconfigured (extensions.rdf in 
sogo-integrator-.xpi) and installed for first time in thunderbird. 
This plugin touch update server (when you run thunderbird) and install 
other plugins and self update.


You have wrong id's:

em:id=sogo-integra...@inverse.ca
em:id=sogo-connec...@inverse.ca
lightning:
em:id={e2fda1a4-762b-4020-b5ad-a41df1933103}

regards,
Martin

Dne 30.5.2013 09:02, MyName IsLive napsal(a):

Hi,
i create WINNT_x86-msvc and copy all extentions there:
$ls /var/www/
index.html  updates.php  WINNT_x86-msvc
$ls /var/www/WINNT_x86-msvc/
lightning-1.9.1.xpi  sogo-connector-17.0.5.xpi  sogo-integrator-17.0.5.xpi

and this is my webserver log *Now update dialoge box closed after a 
minute but still i donot have plugins installed!!*


192.168.4.30 - - [29/May/2013:20:49:44 +0200] GET 
/updates.php?plugin=%7B3550f703-e582-4d05-9a08-453d09bdfdc6%7Dversion=0.00platform=WINNT_x86-msvc 
HTTP/1.1 500 275 - Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) 
Gecko/20130509 Thunderbird/17.0.6


192.168.4.30 - - [29/May/2013:20:49:44 +0200] GET 
/updates.php?plugin=%7B92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a%7Dversion=0.00platform=WINNT_x86-msvc 
HTTP/1.1 500 275 - Mozilla/5.0 (Windows NT 6.2; WOW64; rv:17.0) 
Gecko/20130509 Thunderbird/17.0.6




this is my updates.php:
?php
/* This script handles the automatic propagation of extensions 
pertaining to a

   SOGo site. It requires PHP 4.1.0 or later. */
$plugins
= array(
 = array( application = thunderbird,
   version = 17.0.3,
   filename = sogo-connector-17.0.5.xpi ),
{3550f703-e582-4d05-9a08-453d09bdfdc6}
 = array( application = thunderbird,
   version = 17.0.3,
   filename = sogo-integrator-17.0.5.xpi ),
{3550f703-e582-4d05-9a08-453d09bdfdc6}
= array( application = thunderbird,
   version = 1.9.1,
   filename = lightning-1.9.1.xpi ),
{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}
);

$applications
= array( thunderbird = 
em:id{3550f703-e582-4d05-9a08-453d09bdfdc6}/em:id

em:minVersion17.0/em:minVersion
em:maxVersion17.*/em:maxVersion );

$pluginname = $_GET[plugin];
$plugin = $plugins[$pluginname];
$application = $applications[$plugin[application]];

if ( $plugin ) {
  $platform = $_GET[platform];
  if ( $platform
file_exists( $platform . / . $plugin[filename] ) ) {
$plugin[filename] = $platform . / . $plugin[filename];
  }
  elseif ( !file_exists( $plugin[filename] ) ) {
$plugin = false;
  }
}

if ( $plugin ) {
  header(Content-type: text/xml; charset=utf-8);
  echo ('?xml version=1.0?' . \n);
?
!DOCTYPE RDF
RDF xmlns=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
  xmlns:em=http://www.mozilla.org/2004/em-rdf#;
  Description about=urn:mozilla:extension:?php echo $pluginname ?
em:updates
  Seq
li
  Description
em:version?php echo $plugin[version] ?/em:version
em:targetApplication
  Description?php echo 
$applications[$plugin[application]] ?
em:updateLink?php echo 
dirname(getenv('SCRIPT_URI')) . '/' . $plugin[filename] 
?/em:updateLink

  /Description
/em:targetApplication
  /Description
/li
  /Seq
/em:updates
  /Description
/RDF
?php
} else {
  header(Content-type: text/plain; charset=utf-8, true, 404);
  echo( 'Plugin not found' );
}
?

i got  this value from install.rdf of each .xpi file 
{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}

and extensions.rdlof sogo-integrator.xpi:
?xml version=1.0?
!DOCTYPE RDF
RDF xmlns=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
  xmlns:isi=http://inverse.ca/sogo-integrator/;
  xmlns:em=http://www.mozilla.org/2004/em-rdf#;
  xmlns:NC=http://home.netscape.com/NC-rdf#;
  Seq about=http://inverse.ca/sogo-integrator/extensions;
isi:updateURL=http://192.168.4.85/updates.php?plugin=%ITEM_ID%amp;version=%ITEM_VERSION%amp;platform=%PLATFORM%;
li
  Description
em:id={3550f703-e582-4d05-9a08-453d09bdfdc6}
em:name=SOGo Integrator/
/li
li
  Description
em:id={3550f703-e582-4d05-9a08-453d09bdfdc6}
em:name=SOGo Connector/
/li
li
Description
em:id={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}
em:name=Lightning/
/li
  /Seq
/RDF


Thanks


Date: Wed, 29 May 2013 18:25:48 +0200
From: toxl...@gmail.com
To: users@sogo.nu
Subject: Re: [SOGo] SOGo update.php

Le 29/05/2013 14:58, MyName IsLive a écrit :

Hi,
i installed sogo with dovecot on a server and download Thunderbird
17.0.6 ESR. i placed updates.php in /var/www and all plugins in
same directory as well:
$ls -aln /var/www
-rw-r--r--  1 0 0 2876043 May 29 11:13 lightning-1.9.1.xpi
-rw-r--r--  1 0 0  244911 May 21 11:47 sogo-connector-17.0.5.xpi
-rw-r--r--  1 0 0  155780 May 29 13:48 sogo-integrator-17.0.5.xpi
-rw-r--r--  1 0 0

Re: [SOGo] LDAP address book from active directory - show all fields - SearchFieldNames

2013-05-09 Thread Martin Krpata

Hi,

yes i solved it. I had wrongly writen syntax.

Francis helped me:
mapping is a dictionary, not an array of strings.

mapping = {
o = company;
ou = department;
};


Mine active directory 2003 - mappings:

mapping = {
mozillaworkurl = wWWHomePage;
o = company;
ou = department;
street = streetAddress;
};

from .GNUstepDefaults:
keymapping/key
dict
keyo/key
stringcompany/string
keyou/key
stringdepartment/string
keymozillaworkurl/key
stringwWWHomePage/string
keystreet/key
stringstreetAddress/string
/dict

Do you have same syntax (key, dict, ...) in .GNUstepDefaults?

Kind Regards,
Martin Krpata

 Dne 9.5.2013 09:50, theoutlan...@o2.pl napsal(a):

Hi,

I also have a problem with using the mapping. Were you able to solve it?
I have tried in various ways to add this feature but I always get the error
NAME: NSInvalidArgumentException REASON: GSMutableArray (instance) does not
recognize AllKeys INFO: (null) and the address book no longer works. After
some time, the whole sogo crashes.

Kind Regards,
Outlander


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


Re: [SOGo] LDAP address book from active directory - show all fields - SearchFieldNames

2013-04-02 Thread Martin Krpata

Hi Francis,

thank you very much, it is working now.

Martin Krpata

 Dne 1.4.2013 14:08, Francis Lachapelle napsal(a):

Hi Martin

On 2013-03-28, at 9:37 AM, Martin Krpata martin.krp...@ou-nem.cz wrote:


thank you for your answer, it is in documentation... My bad. But it is not 
working to me, please can you check my syntax?

I added to usersource like this:
  {
  CNFieldName = cn;
  IDFieldName = cn;
  SearchFieldNames = (
  sn,
  displayName,
  telephoneNumber,
  mobile,
  facsimileTelephoneNumber,
  homePhone,
  pager,
  ipPhone,
  wWWHomePage,
  title,
  streetAddress,
  st,
  postOfficeBox,
  postalCode,
  physicalDeliveryOfficeName,
  description,
  countryCode,
  co,
  department,
  company
  );
  UIDFieldName = sAMAccountName;
  baseDN = DC=OU-NEM,DC=CZ;
  bindDN = s...@ou-nem.cz;
  bindFields = (
  sAMAccountName
  );
  bindPassword = deleted;
  canAuthenticate = NO;
  displayName = Active Directory;
  filter =  objectClass = user AND mail = * ;
  hostname = 192.168.89.244;
  id = directory;
  isAddressBook = YES;
  mapping = (
  o = company,
  ou = department
  );


mapping is a dictionary, not an array of strings.

mapping = {
o = company;
ou = department;
};


  port = 389;
  scope = SUB;
  type = ldap;
  }

but, it is not working. I have wrong syntax? Ldap does not find anything and 
waited too long for answer.
in defaults write sogod SOGoUserSources '( { ...   mapping = (o = company, 
ou = department); } )'

sogo.log:
Mar 28 14:35:28 sogod [31669]: [ERROR] 0x0x7f118fe2e630[NGLdapAttribute] 
cound not convert value of objectSid to string
Mar 28 14:35:28 sogod [31669]: [ERROR] 0x0x7f118fd28de0[NGLdapAttribute] 
cound not convert value of userCertificate to string
Mar 28 14:35:28 sogod [31669]: [ERROR] 0x0x7f118fe2db70[NGLdapAttribute] 
cound not convert value of objectGUID to string
EXCEPTION: NSException: 0x7f118fe37be0 NAME:NSInvalidArgumentException 
REASON:GSMutableArray(instance) does not recognize allKeys INFO:(n$
Mar 28 14:35:28 sogod [31640]: 0x0x7f118fb87ab0[WOWatchDogChild] child 31669 
exited
Mar 28 14:35:28 sogod [31640]: 0x0x7f118fb87ab0[WOWatchDogChild]  (terminated 
due to signal 6)
Mar 28 14:35:28 sogod [31640]: 0x0x7f118fb87ab0[WOWatchDogChild] avoiding to 
respawn child before 2013-03-28 14:35:33 +0100

S pozdravem
Martin Krpata, DiS.
Oddělení IT
Orlickoústecká nemocnice, a.s.


Dne 28.3.2013 13:29, Francis Lachapelle napsal(a):

Hi Martin

On 2013-03-28, at 2:36 AM, Martin Krpata
martin.krp...@ou-nem.cz
wrote:



i would like to use address book from Active Directory and it's look like that 
some fields have another name and cannot be showed in address book. Like for 
example wWWHomePage, department, company. These names of fields are in Active 
Directory 2003 LDAP.

I tryed fill sogo contact and export to ldif. It has some another field names 
that come from LDAP Active Directory, for example:
AD wWWHomePage / LDIF mozillahomeurl
AD company / LDIF o
AD department / LDIF ou


You can add a mapping parameter to your users source:

mapping = {
  o = company;
  ou = department;
  mozillahomeur = wWWHomePage;
};



It is possible to enable field translation, or say to sogo get right fields?

my config:
{
CNFieldName = cn;
IDFieldName = cn;
SearchFieldNames = (
 sn,
 displayName,
 telephoneNumber,
 mobile,
 facsimileTelephoneNumber,
 homePhone,
 pager,
 ipPhone,
 wWWHomePage,
 title,
 streetAddress,
 st,
 postOfficeBox,
 postalCode,
 physicalDeliveryOfficeName,
 description,
 countryCode,
 co,
 department,
 company
);
UIDFieldName = sAMAccountName;
baseDN = DC=OU-NEM,DC=CZ;
bindDN =
s...@ou-nem.cz
;
bindFields = (
 sAMAccountName
);
bindPassword = deleted;
canAuthenticate = NO;
displayName = Active Directory;
filter =  objectClass = user AND mail = ''*'' ;
hostname = 192.168.89.244;
id = directory;
isAddressBook = YES;
port = 389;
scope = SUB;
type = ldap;
}


http://imageshack.us/photo/my-images/571/sogoaddressbookfromad.png/


--
S pozdravem
Martin Krpata, DiS.
Oddělení IT
Orlickoústecká nemocnice, a.s.

--
flachape...@inverse.ca :: +1.514.755.3640 :: http://www.inverse.ca
Inverse :: Leaders behind SOGo (http://sogo.nu) and PacketFence 
(http://packetfence.org)



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


[SOGo] LDAP address book from active directory - show all fields - SearchFieldNames

2013-03-28 Thread Martin Krpata

Hi,

i would like to use address book from Active Directory and it's look 
like that some fields have another name and cannot be showed in address 
book. Like for example wWWHomePage, department, company. These names of 
fields are in Active Directory 2003 LDAP.


I tryed fill sogo contact and export to ldif. It has some another field 
names that come from LDAP Active Directory, for example:

AD wWWHomePage / LDIF mozillahomeurl
AD company / LDIF o
AD department / LDIF ou

It is possible to enable field translation, or say to sogo get right fields?

my config:
   {
CNFieldName = cn;
IDFieldName = cn;
SearchFieldNames = (
sn,
displayName,
telephoneNumber,
mobile,
facsimileTelephoneNumber,
homePhone,
pager,
ipPhone,
wWWHomePage,
title,
streetAddress,
st,
postOfficeBox,
postalCode,
physicalDeliveryOfficeName,
description,
countryCode,
co,
department,
company
);
UIDFieldName = sAMAccountName;
baseDN = DC=OU-NEM,DC=CZ;
bindDN = s...@ou-nem.cz;
bindFields = (
sAMAccountName
);
bindPassword = deleted;
canAuthenticate = NO;
displayName = Active Directory;
filter =  objectClass = user AND mail = ''*'' ;
hostname = 192.168.89.244;
id = directory;
isAddressBook = YES;
port = 389;
scope = SUB;
type = ldap;
}

http://imageshack.us/photo/my-images/571/sogoaddressbookfromad.png/

--
S pozdravem
Martin Krpata, DiS.
Oddělení IT
Orlickoústecká nemocnice, a.s.

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


[SOGo] ldap filter with *

2012-12-17 Thread Martin Krpata

Hello,

ldap filter written to settings with command defaults write sogod ... 
and regex * (for example *filter = mail='*'*) does not work. It will 
delete comma and result in error in logs and not working ldap search 
filter...


Example:
when i use under sogo user:

1)
defaults write sogod SOGoUserSources '( { KindFieldName = kind; 
MultipleBookingsFieldName = multiple_bookings; canAuthenticate = YES; 
displayName = Uzivatele emailu; id = users; isAddressBook = YES; type 
= sql; userPasswordAlgorithm = md5; viewURL = 
mysql://sogo:PASSWORD@127.0.0.1:3306/sogo/sogo_users; },{ type = ldap; 
CNFieldName = cn; IDFieldName = cn; UIDFieldName = sAMAccountName; 
baseDN = DC=OU-NEM,DC=CZ; bindDN = s...@ou-nem.cz; bindFields = 
(sAMAccountName); SearchFieldNames = ( sn, displayName, department ); 
bindPassword = PASSWORD; canAuthenticate = NO; displayName = Active 
Directory; hostname = 192.168.89.244; id = directory; isAddressBook = 
YES; port = 389; scope = SUB; *filter =  objectClass = 'user' AND mail 
= '*' *; } )'


2)
defaults read
...
filter =  objectClass = user AND *mail = * *;
...

3)
Search from sogo webmail (sogo.log):
2012-12-17 13:32:28.152 sogod[2571] WARNING(+[EOQualifier(Parsing) 
qualifierWithQualifierFormat:]): unexpected chars at the end of the 
string(class=GSMutableString,len=143) '(sn='martin*') OR 
(displayName='martin*') OR (department='martin*') OR (mail='martin*') OR 
(cn='martin*') AND  objectClass = user AND mail = * '


4)
Resolution:
edit manualy /home/sogo/GNUstep/Defaults/.GNUstepDefaults
whitch i think is not recommanded...

from this
string objectClass = user AND mail = * /string
to this
string objectClass = user AND *mail = '*'* /string

5)
defaults read after edited .GNUstepDefaults and restarted sogo:
...
filter =  objectClass = user AND *mail = ''*''* ;
...

It is a bug in defaults write or am I doing something wrong?

regards,
Martin
/sorry for my english/
--
users@sogo.nu
https://inverse.ca/sogo/lists

[SOGo] delegation - sogo web mail

2012-12-11 Thread Martin Krpata

Hi,

i have configured sogo 2.0.3a with dovecot 2.1.7 backend - virtual mail 
addresses, shared folders enabled and working.


What for is delegation, right click on logged email address?
http://tinypic.com/r/ra6n87/6

It is possible to configure with dovecot? I have tried it, but dovecot 
acl (share whole email) was not created...


Thanks, regards,
Martin K.
--
users@sogo.nu
https://inverse.ca/sogo/lists


Re: [SOGo] Google calendars

2012-12-09 Thread Martin Krpata
Hi James,
i have added google calendar - ical private address from settings (google calendar, settings, name of calendar, private address ical - copy, sogo - add remote calendar), but i cannot write trough sogo new event.

Regards


Neděle, 9 Prosinec, 2012 00:51 CET, James James jre...@gmail.com napsal:

	Hi everyone,
	
		
	
		I was wondering if there is a way in SOGo to add, in a read/write access, a google calendar ? If it is impossible, is that will be a feature in the next releases ?
	
		
	
		Regards



[SOGo] cannot see imap folder content - webinterface after upgrade to 2.0.3

2012-12-07 Thread Martin Krpata
After upgrade to 2.0.3 i see only content of INBOX. When i click to 
other folder, folder doesnt change and cannot see content. Folders in 
thunderbird are ok (dovecot is up and running)...


Error in IE:
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; 
Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 
3.0.4506.2152; .NET CLR 3.5.30729)

Timestamp: Fri, 7 Dec 2012 08:03:34 UTC

Message: 'null' is null or not an object
Line: 626
Char: 5
Code: 0
URI: 
https://192.168.89.230/SOGo.woa/WebServerResources/MailerUI.js?lm=1354864357


Versions:
Sogo 2.0.3
Dovecot 2.1.7
debian

MailerUI.js:
line 626, 5 symbol:
$(searchValue).value = ;

Whole function:
apache2 function onMailboxTreeItemClick(event) {
var topNode = $(mailboxTree);
var mailbox = this.parentNode.getAttribute(dataname);
if (topNode.selectedEntry)
topNode.selectedEntry.deselect();
this.selectElement();
topNode.selectedEntry = this;

search = {};
$(searchValue).value = ;
initCriteria();

Mailer.currentMailboxType = this.parentNode.getAttribute(datatype);
if (Mailer.currentMailboxType == account || 
Mailer.currentMailboxType == additional) {

Mailer.currentMailbox = mailbox;
var messageContent = $(messageContent);
if (messageContent) messageContent.innerHTML = '';
$(messageCountHeader).childNodes[0].innerHTML = 'nbsp;';
Mailer.dataTable._emptyTable();
updateWindowTitle();
}
else {
var datatype = this.parentNode.getAttribute(datatype);
if (datatype == 'draft' || datatype == 'sent')
toggleAddressColumn(from, to);
else
toggleAddressColumn(to, from);

updateWindowTitle(this.childNodesWithTag(span)[0]);
openMailbox(mailbox);
}

Event.stop(event);
}

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


[SOGo] sogo - wrong characters/charset in one message

2012-12-04 Thread Martin Krpata
One message in sogo is wrong interprated http://tinypic.com/r/a1rhc6/6 
other messages are ok. Same message in thunderbird is OK.


Debian squeeze, sogo Version 2.0.2 (@shiva 201211151347), apache2 (site 
sogo has AddDefaultCharset UTF-8)


Message eml (archived in sogo): http://leteckaposta.cz/181450989

Source code of message:

Return-Path:lu...@tntrade.cz
Delivered-To:s...@where.cz
Received: from remote.tntrade.cz (localhost [127.0.0.1])
(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
(No client certificate requested)
by mail.ou-nem.cz (Postfix) with ESMTPS id BFDF9AE227
fors...@where.cz; Mon, 26 Nov 2012 20:01:26 +0100 (CET)
Received: from remote.tntrade.cz ([213.192.24.106] helo=remote.tntrade.cz)
by ASSP.nospam with SMTPS(AES128-SHA) (2.2.1); 26 Nov 2012 20:01:26 
+0100
Received: from tnsql (192.168.16.7) by remote.tntrade.cz (192.168.16.222) with
 Microsoft SMTP Server id 14.1.218.12; Mon, 26 Nov 2012 20:00:38 +0100
thread-index: Ac3MCFM50gx5rOGsSwSSXdmfX02Z5Q==
Thread-Topic: =?iso-8859-2?Q?Info_o_zaslan=E9_expedici_-_EXP1207269?=
From:i...@tntrade.cz
To:s...@where.cz
Subject: =?iso-8859-2?Q?Info_o_zaslan=E9_expedici_-_EXP1207269?=
Date: Mon, 26 Nov 2012 20:00:39 +0100
Message-ID:9C852D4764014E3B84B72F186F0C4327@tntrade.local
MIME-Version: 1.0
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
X-Mailer: Microsoft CDO for Windows 2000
Content-Class: urn:content-classes:message
Importance: normal
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.1.7601.17609
X-GFI-SMTP-Submission: 1
X-GFI-SMTP-HelloDomain: tnsql
X-GFI-SMTP-RemoteIP: 192.168.16.7
X-Assp-Version: 2.2.1(12313) on ASSP.nospam
X-Assp-Client-TLS: yes
X-Assp-Server-TLS: yes
X-Assp-Message-Score: -10 (SSL-TLS-connection-OK)
X-Assp-IP-Score: -10 (SSL-TLS-connection-OK)
X-Assp-Delay: not delayed (auto accepted); 26 Nov 2012 20:01:26 +0100
X-Assp-Received-SPF: none (cache) ip=213.192.24.106mailfrom=lu...@tntrade.cz
helo=remote.tntrade.cz
X-Original-Authentication-Results: ASSP.nospam; spf=none (SPF: none (cache)
ip=213.192.24.106mailfrom=lu...@tntrade.cz  helo=remote.tntrade.cz)
X-Assp-ID: ASSP.nospam 56486-02572

!--Head--
html
  body style=3Dbackground-color: white; font-family: Verdana; 
font-size:=
 10px;
br /
table style=3Dtext-align: left; width: 100%; font-size: 
10px; border=
=3D0 cellpadding=3D2 cellspacing=3D2
tbody
  tr
td
  h1 style=3Dfont-size: 22pxP=F8ehled o 
expedovan=E9 z=E1silce EXP12=
07269/h1
  br /
  br /
  table style=3Dtext-align: left; width: 40%; 
font-size: 10px; border:=
 solid 1pt black; border=3D0 cellpadding=3D2 cellspacing=3D0
tbody
  tr style=3Dbackground-color: silver;
td style=3Dfont-weight: 
boldFirma/td
  /tr
  tr

tdZdenanbsp;Holi=E8ov=E1nbsp;-nbsp;Odd=EClen=EDnbsp;IT/td
  /tr
  tr
td=C8s.nbsp;Arm=E1dynbsp;1076/td
  /tr
  tr
td56218nbsp;nbsp;nbsp; 
=DAst=EDnbsp;nadnbsp;Orlic=ED /td
  /tr
 =20
/tbody
  /table
 =20
=09

!--OrdOpen1--
 =20
  br /
  h1 style=3Dfont-size: 10px;font-weight: bold;Dne 
26.11.12 V=E1m by=
la expedov=E1na/h1=20
  PSledujte bal=EDk na a href=3DInternetu/a. 
Informace budou k d=
ispozici od dne=B9n=EDho ve=E8era./p=20
  table style=3Dtext-align: left; width: 100%; 
font-size: 10px; border=
: solid 1pt black; border=3D0 cellpadding=3D2 cellspacing=3D0
tbody
tr style=3Dbackground-color: silver;
td style=3Dfont-weight: bold;Typ 
Dopravy/td
td style=3Dfont-weight: bold;K=F3d 
bal=EDku/td
td style=3Dfont-weight: bold;Hodnota dob=EDrky/td
=09
/tr
tr style=3Dbackground-color: white;
=09
td style=3Dfont-size: 
10px;DPDnbsp;dob=EDrka/td=09
td13835004865931/td
td1112.00/td
   

[SOGo] thunderbird native client look

2012-11-27 Thread Martin Krpata
What will change look of thunderbird into native client like this: 
_http://www.sogo.nu/typo3temp/pics/cd5254cc5a.png_ ?


I have configured integrator extensions.rdf, updates.php on server. I 
can login to sogo, adress book and calendar is working OK (from sogo), 
extensions are installing and updating. But thunderbird skin or look is 
not changed to this _http://www.sogo.nu/typo3temp/pics/cd5254cc5a.png

_
Thunderbird 3.1.11, integrator and connector 3.111, lightning 
lightning-1.0b2.111i_win32.xpi, sogo 2.0.2a-1


extensions.rdf http://pastebin.com/TWPZWaG3
https://192.168.89.230/plugins/updates31.php http://pastebin.com/wS7Wbd5c
current look: _http://tinypic.com/r/v7qgbt/6

_Something is missing, can you help me?
Thanks, Martin
--
users@sogo.nu
https://inverse.ca/sogo/lists

Re: [SOGo] thunderbird native client look

2012-11-27 Thread Martin Krpata

Sorry, wrong thread...

Martin

Dne 27.11.2012 14:31, Martin Krpata napsal(a):
What will change look of thunderbird into native client like this: 
_http://www.sogo.nu/typo3temp/pics/cd5254cc5a.png_ ?


I have configured integrator extensions.rdf, updates.php on server. I 
can login to sogo, adress book and calendar is working OK (from sogo), 
extensions are installing and updating. But thunderbird skin or look 
is not changed to this _http://www.sogo.nu/typo3temp/pics/cd5254cc5a.png

_
Thunderbird 3.1.11, integrator and connector 3.111, lightning 
lightning-1.0b2.111i_win32.xpi, sogo 2.0.2a-1


extensions.rdf http://pastebin.com/TWPZWaG3
https://192.168.89.230/plugins/updates31.php http://pastebin.com/wS7Wbd5c
current look: _http://tinypic.com/r/v7qgbt/6

_Something is missing, can you help me?
Thanks, Martin


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

[SOGo] thunderbird native client look

2012-11-27 Thread Martin Krpata
What will change look of thunderbird into native client like this: 
_http://www.sogo.nu/typo3temp/pics/cd5254cc5a.png_ ?


I have configured integrator extensions.rdf, updates.php on server. I 
can login to sogo, adress book and calendar is working OK (from sogo), 
extensions are installing and updating. But thunderbird skin or look is 
not changed to this _http://www.sogo.nu/typo3temp/pics/cd5254cc5a.png

_
Thunderbird 3.1.11, integrator and connector 3.111, lightning 
lightning-1.0b2.111i_win32.xpi, sogo 2.0.2a-1


extensions.rdf http://pastebin.com/TWPZWaG3
https://192.168.89.230/plugins/updates31.php http://pastebin.com/wS7Wbd5c
current look: _http://tinypic.com/r/v7qgbt/6

_Something is missing, can you help me?
Thanks, Martin
--
users@sogo.nu
https://inverse.ca/sogo/lists