[commits] [Wiki] created: Auth_imp:Required IMAP extension not found

2011-01-06 Thread Wiki Guest

guest [221.120.232.4]  Thu, 06 Jan 2011 03:37:21 -0500

Created page: /Auth_imp%3ARequired+IMAP+extension+not+found

a

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: OO46737766651

2011-01-09 Thread Wiki Guest

guest [83.188.229.151]  Sun, 09 Jan 2011 06:10:14 -0500

Created page: /OO46737766651

[[toc]]

+ Project Name

Project summary and goal. Please include what the scope of the project  
is, what applications or libraries it touches, and what it is intended  
to accomplish at a minimum.


++ Bugs

List any tickets on http://bugs.horde.org/ that cover this issue or  
are relevant to it.


++ People

Who is or might be involved in this project? Who can answer questions  
about it, either about a specific technology (iCalendar) or about a  
specific part of Horde (Kronolith)?


++ Description

Detailed project description. Include implementation steps, current  
status, plan, etc.


++ Resources

Include links to protocol descriptions, specifications, RFCs, external  
applications, presentations on http://horde.org/papers/ or elsewhere  
that are relevant, articles, API docs from http://dev.horde.org/ -  
anything that might be useful to someone working on this.




Back to the ((Projects|Project List))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ/Admin/Troubleshoot

2011-01-20 Thread Wiki Guest

guest [217.10.12.170]  Thu, 20 Jan 2011 06:02:57 -0500

Modified page: /FAQ/Admin/Troubleshoot
New Revision:  7.19
Change log:  added another hint for rereturning login screen (full disks)

@@ -24,8 +24,9 @@
 : If using Horde 3.1.2 or later, change the configuration to allow  
non-cookie, url-based sessions. : If this works, cookies aren't stored  
in your browser. This could be caused by the browser configuration or  
a faulty session cookie setup, see the next point. If you already  
locked yourself out of Horde, edit the configuration file  
{{horde/config/conf.php}} manually and set  
{{$conf['session']['use_only_cookies'] = false;}}.
 : Make sure that you are using the correct cookie domain and path  
settings in Horde's setup. : Cookies are not stored in the browser if  
you don't use a FQDN (fully qualified domain name), e.g.  
``http://localhost/horde/``, or if the specified cookie path  
({{/horde}} by default) doesn't match the webroot of your Horde  
installation, e.g. ``http://webmail.example.org/``,  
``http://www.example.org/horde-3.1.2/``. To find this, go to the Horde  
configuration page on the General tab, and the last box on that page  
says "What path should we set cookies to?". Alternatively, in  
conf.php, look for the value $conf['cookie']['path']. Set that to the  
base URL for horde.
 : If session.auto_start is set to 1 in the php.ini file the login  
page will loop. Set it to 0.
 : Delete any cookies in your browser for Horde to test any of the  
above changes - otherwise wrong cookies might be stored in your  
browser and the above actions still fail

+: Note, that this problem may also occur b/c of a full hard disk.

 +++ After logging in the message "Last login: Never" is displayed. Always.
 You didn't configure a permanent preference backend like SQL or  
LDAP. Preference backends are used to store user settings and personal  
stuff like the last login time. As an administrator go the the setup  
screen for Horde, select the {{Preference System}} tab, and enter the  
necessary settings. The {{PHP Sessions}} backend does //not// store  
the user settings permanently. You might also need to create some  
storage resource in the backend of your choice, e.g. a table in your  
SQL database or a scheme in your LDAP directory. But this is covered  
in the [http://www.horde.org/horde/docs/?f=INSTALL.html installation  
documentation].


@@ -110,17 +111,17 @@
 +++ "top.opener.parent is not an object"
 This error is the result of a bug in Internet Explorer.  
[mailto:stu...@eclipse.net.uk Stuart] suggests that the following  
commands (executed on the Windows system on which Internet Explorer is  
installed) will solve the problem:


 
-regsvr32 c:\windows\system32\actxprxy.dll
-regsvr32 c:\windows\system32\shdocvw.dll
+regsvr32 c:windowssystem32actxprxy.dll
+regsvr32 c:windowssystem32shdocvw.dll
 

 The FAQ maintainer has //not// tested the above! Make sure you have  
a backup of your system before playing with deep Windows magic.


 +++ "Unable to load dynamic library php_whatever.dll - The specified  
module could not be found."


-This error message is a misrepresentation of the actual problem.  
Often occurs when some dependency needed for php_whatever.dll is  
missing.e.g. need to copy iconv.dll (from the dlls folder under to the  
php install directory) to windows\system32 to get php_gettext.dll to  
load.
+This error message is a misrepresentation of the actual problem.  
Often occurs when some dependency needed for php_whatever.dll is  
missing.e.g. need to copy iconv.dll (from the dlls folder under to the  
php install directory) to windowssystem32 to get php_gettext.dll to  
load.


 +++ "Unable to open VFS file for writing"
 If you see this message from kronolith or trean (or any other  
application hat uses crontabs) you are running a crontab script as a  
different user as you did in the first run. Adjust your crontab  
(running it as same user as the webserver is a good idea) and also  
change the ownship of {{/.horde}}.


@@ -220,9 +221,9 @@
 if (!($db = mysql_connect('localhost','root','yourpassword'))) return 1;
 if (!mysql_query('create database testdb', $db)) return 2;
 if (!mysql_select_db('testdb', $db)) return 3;
 if (!mysql_db_query('testdb', 'create table testtest ( test  
char(60))', $db)) return 4;
-if (!mysql_db_query('testdb', 'insert into testtest values  
(\'hello world!\')', $db)) return 5;
+if (!mysql_db_query('testdb', 'insert into testtest values  
('hello world!')', $db)) return 5;
 if (!($result = mysql_db_query('testdb', 'select * from  
testtest', $db))) return 6;

 if (mysql_num_rows($result) > 0) echo mysql_result($result, 0, 0);
 if (!mysql_db_query('testdb', 'delete from testtest', $db)) return 7;
 if (!mysql_query('drop database testdb', $db)) return 8;

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SandBox

2011-01-22 Thread Wiki Guest

guest [188.223.14.120]  Sat, 22 Jan 2011 19:44:44 -0500

Modified page: http://wiki.horde.org/SandBox
New Revision:  1.3
Change log:  sandbox test

@@ -3,6 +3,6 @@
 ==HEading==
-*[[Link]]
+*[http://malishkaphotography.com|Wedding Photographer Edinburgh]

 



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SandBox

2011-01-22 Thread Wiki Guest

guest [188.223.14.120]  Sat, 22 Jan 2011 19:45:34 -0500

Modified page: http://wiki.horde.org/SandBox
New Revision:  1.4
Change log:  sandbox test

@@ -3,6 +3,6 @@
 ==HEading==
-*[http://malishkaphotography.com|Wedding Photographer Edinburgh]
+*[http://malishkaphotography.com |Wedding Photographer Edinburgh]

 



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: SandBox

2011-01-23 Thread Wiki Guest

guest [208.115.111.248]  Sun, 23 Jan 2011 18:26:00 -0500

Created page: http://wiki.horde.org/SandBox

This is the sandbox.  You can try out Wiki in here, and no one will  
care - but don't be rude and delete this explanatory text. **Stay  
below the first horizontal rule.**


For reference, you might want to visit HowToUseWiki, WickedTextFormat  
or AddingPages.






__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SandBox

2011-01-26 Thread Wiki Guest

guest [188.223.14.120]  Wed, 26 Jan 2011 12:24:00 -0500

Modified page: http://wiki.horde.org/SandBox
New Revision:  1.1
Change log:  test

@@ -2,6 +2,8 @@

 For reference, you might want to visit HowToUseWiki,  
WickedTextFormat or AddingPages.


 
+
+[http://malishkaphotography.com |Edinburgh Wedding Photographer]



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: SandBox

2011-01-26 Thread Wiki Guest

guest [207.46.199.50]  Wed, 26 Jan 2011 14:57:09 -0500

Created page: http://wiki.horde.org/SandBox

This is the sandbox.  You can try out Wiki in here, and no one will  
care - but don't be rude and delete this explanatory text. **Stay  
below the first horizontal rule.**


For reference, you might want to visit HowToUseWiki, WickedTextFormat  
or AddingPages.






__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowToUseWiki

2011-01-29 Thread Wiki Guest

guest [70.82.179.218]  Sat, 29 Jan 2011 13:27:13 -0500

Modified page: http://wiki.horde.org/HowToUseWiki
New Revision:  1.5
Change log:  spnuh


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: Draft Release Cycle

2011-01-29 Thread Wiki Guest

guest [75.144.171.129]  Sat, 29 Jan 2011 20:24:19 -0500

Created page: http://wiki.horde.org/Draft+Release+Cycle

+ Draft Horde Release Cycle

Draft of the Horde release cycle policy, put together from mailing  
list discussion in January/February 2011.


++ When to break backward compatibility?

++ How often should new application versions be released?

++ How often should framework packages see new releases?

++ How long will old versions be supported?

++ How many branches will be maintained at the same time?

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] attachment: WickedTextFormat, sol

2011-02-03 Thread Wiki Guest

guest [200.55.156.169]  Thu, 03 Feb 2011 21:42:39 -0500

Se actualizó el adjunto "sol" de la página "WickedTextFormat". Ver  
página: http://wiki.horde.org/WickedTextFormat


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] attachment: WickedTextFormat, sol

2011-02-03 Thread Wiki Guest

guest [200.55.156.167]  Thu, 03 Feb 2011 21:40:34 -0500

Añadir adjunto "sol" a la página "WickedTextFormat". Ver página:  
http://wiki.horde.org/WickedTextFormat


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] attachment: Doc/Home, LJG

2011-02-03 Thread Wiki Guest

guest [200.55.156.167]  Thu, 03 Feb 2011 21:56:35 -0500

Añadir adjunto "LJG" a la página "Doc/Home". Ver página:  
http://wiki.horde.org/Doc/Home


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] attachment: Doc/Home, LJG

2011-02-03 Thread Wiki Guest

guest [200.55.156.169]  Thu, 03 Feb 2011 21:57:16 -0500

Se actualizó el adjunto "LJG" de la página "Doc/Home". Ver página:  
http://wiki.horde.org/Doc/Home


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Deployments

2011-02-04 Thread Wiki Guest

guest [194.8.193.239]  Fri, 04 Feb 2011 04:41:19 -0500

Modified page: http://wiki.horde.org/Deployments
New Revision:  26.20
Change log:  removed netcologne deployment as they switched to Open-Xchange

@@ -19,9 +19,8 @@
 || [https://www.mail.yale.edu Yale University] || || || || ||
 || [http://www.eecs.cwru.edu/mail/ Case Western Reserve University,  
EECS Department] || hundreds || 2 Sun X1 and 1 Sun !V280R ||  
[mailto:s...@eecs.cwru.edu Simon Kuhn] || ||
 || Nottingham City Council || 2,000 (webmail) || 1x quad-Xeon  
mailserver (500MHz, 4GB RAM), 2x dual-Xeon webservers (2.4GHz, 2GB  
RAM) - infrastructure upgrade imminent, to add more resilience ||  
[mailto:richard.he...@nottinghamcity.gov.uk Richard Heggs] || ||
 || [http://webmail.versatel.nl/ versatel.nl] || 250,000 webmail || 5  
x dual Xeon 3,2 Ghz 4GB running Apache, imapproxy and perdition on  
Debian Sarge || [mailto:rich...@versatel.nl Richard Zuidhof] || Horde  
3.0.x / IMP 4.1.x, ionCube ||
-|| [http://netmail.netcologne.de/ NetCologne] || 600,000 || 3  
Servers: 2 x 3.06 GHz, 3GB RAM each || [mailto:crohm...@netcologne.de  
Christian Rohmann] || APC ||
 || [http://www.tu-graz.ac.at Graz University of Technology] ||  
13,000 ||Sun Fire X4100 2x2.4 Ghz Dual-Core AMD Opteron, 4Gb Ram, 2x  
Sun Fire V20z 2x2200 Mhz AMD Opteron 4Gb Ram, 2 redundant Cisco  
loadbalancers CSS11503 with cyrpto-cards for SSL accelleration, 2x Sun  
X4600 4x3.0 Ghz Dual-Core AMD Opteron, 16Gb Ram for mySQL backends in  
Master-Master replication mode|| [mailto:webm...@tugraz.at webmail] ||  
SSL is handled by the crypto card on the loadbalancer, PHP is  
accellerated by xcache, up-imapproxy ||
 || [http://www.ugent.be Ghent University] || 30,000 || Debian Etch  
on some Sun machine || ||  ||
 || [https://cubmail.cc.columbia.edu Columbia University] || 85,000  
|| IMP / Horde: 9 x !SunFire v240; Oracle: 1 x !SunFire T2000; Cyrus  
Frontends: 12 x HP DL360; Cyrus Backends: 18 x HP DL360 pairs ||  
[mailto:sel...@columbia.edu Matt Selsky] || eAccelerator , Cyrus IMAP,  
UP-IMAPProxy ||

 ((DeploymentKarlWyant|More...))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Deployments

2011-02-04 Thread Wiki Guest

guest [87.115.87.172]  Fri, 04 Feb 2011 07:55:37 -0500

Modified page: http://wiki.horde.org/Deployments
New Revision:  26.21
Change log:  Remove Nottingham City council - migrated to MS Exchange  
a couple of years ago


@@ -17,9 +17,8 @@
 || [http://mail.umich.edu University of Michigan] || 113,000 || IMP  
/ Horde: 5 x Dell Poweredge 1750 (dual 3.0GHz Xeon P4, 4GB RAM), 9 x  
!SuperMicro 5013S-8 (dual 3.6Ghz Xeon P4, 4GB RAM);  !MySQL: 2 x  
Western Scientific (dual 3.0Ghz Xeon P4, 4GB RAM, RAID 1+0)||  
[mailto:li...@umich.edu Liam Hoekenga] || eAccelerator , Cyrus IMAP,  
UP-IMAPProxy, memcache based sessions||
 || [https://mail.ph.utexas.edu University of Texas at Austin,  
Department of Physics] || 1,000 || Dell Poweredge 2650 server, dual  
Xeon 3.0 Ghz,  1 GB memory, 2 S/W Raid1 volumes  ||  
[mailto:eric.rostet...@physics.utexas.edu Eric Rostetter] || ||

 || [https://www.mail.yale.edu Yale University] || || || || ||
 || [http://www.eecs.cwru.edu/mail/ Case Western Reserve University,  
EECS Department] || hundreds || 2 Sun X1 and 1 Sun !V280R ||  
[mailto:s...@eecs.cwru.edu Simon Kuhn] || ||
-|| Nottingham City Council || 2,000 (webmail) || 1x quad-Xeon  
mailserver (500MHz, 4GB RAM), 2x dual-Xeon webservers (2.4GHz, 2GB  
RAM) - infrastructure upgrade imminent, to add more resilience ||  
[mailto:richard.he...@nottinghamcity.gov.uk Richard Heggs] || ||
 || [http://webmail.versatel.nl/ versatel.nl] || 250,000 webmail || 5  
x dual Xeon 3,2 Ghz 4GB running Apache, imapproxy and perdition on  
Debian Sarge || [mailto:rich...@versatel.nl Richard Zuidhof] || Horde  
3.0.x / IMP 4.1.x, ionCube ||
 || [http://www.tu-graz.ac.at Graz University of Technology] ||  
13,000 ||Sun Fire X4100 2x2.4 Ghz Dual-Core AMD Opteron, 4Gb Ram, 2x  
Sun Fire V20z 2x2200 Mhz AMD Opteron 4Gb Ram, 2 redundant Cisco  
loadbalancers CSS11503 with cyrpto-cards for SSL accelleration, 2x Sun  
X4600 4x3.0 Ghz Dual-Core AMD Opteron, 16Gb Ram for mySQL backends in  
Master-Master replication mode|| [mailto:webm...@tugraz.at webmail] ||  
SSL is handled by the crypto card on the loadbalancer, PHP is  
accellerated by xcache, up-imapproxy ||
 || [http://www.ugent.be Ghent University] || 30,000 || Debian Etch  
on some Sun machine || ||  ||
 || [https://cubmail.cc.columbia.edu Columbia University] || 85,000  
|| IMP / Horde: 9 x !SunFire v240; Oracle: 1 x !SunFire T2000; Cyrus  
Frontends: 12 x HP DL360; Cyrus Backends: 18 x HP DL360 pairs ||  
[mailto:sel...@columbia.edu Matt Selsky] || eAccelerator , Cyrus IMAP,  
UP-IMAPProxy ||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ/Admin/Troubleshoot

2011-02-04 Thread Wiki Guest

guest [24.237.84.217]  Sat, 05 Feb 2011 00:30:53 -0500

Modified page: http://wiki.horde.org/FAQ/Admin/Troubleshoot
New Revision:  7.23
Change log:  Add comments for restarting browser when testing cookie issues

@@ -25,8 +25,9 @@
 : Make sure that you are using the correct cookie domain and path  
settings in Horde's setup. : Cookies are not stored in the browser if  
you don't use a FQDN (fully qualified domain name), e.g.  
``http://localhost/horde/``, or if the specified cookie path  
({{/horde}} by default) doesn't match the webroot of your Horde  
installation, e.g. ``http://webmail.example.org/``,  
``http://www.example.org/horde-3.1.2/``. To find this, go to the Horde  
configuration page on the General tab, and the last box on that page  
says "What path should we set cookies to?". Alternatively, in  
conf.php, look for the value $conf['cookie']['path']. Set that to the  
base URL for horde.
 : If session.auto_start is set to 1 in the php.ini file the login  
page will loop. : Set it to 0.
 : Delete any cookies in your browser for Horde to test any of the  
above changes. : Otherwise wrong cookies might be stored in your  
browser and the above actions still fail
 : Check the session storage. : By default sessions are stored on the  
file system, check that your hard-disc partitions still have plenty of  
room for session storage.
+: Try restarting the apache server and the browser after making  
configuration changes.


 +++ After logging in the message "Last login: Never" is displayed. Always.
 You didn't configure a permanent preference backend like SQL or  
LDAP. Preference backends are used to store user settings and personal  
stuff like the last login time. As an administrator go the the setup  
screen for Horde, select the {{Preference System}} tab, and enter the  
necessary settings. The {{PHP Sessions}} backend does //not// store  
the user settings permanently. You might also need to create some  
storage resource in the backend of your choice, e.g. a table in your  
SQL database or a scheme in your LDAP directory. But this is covered  
in the [http://www.horde.org/horde/docs/?f=INSTALL.html installation  
documentation].


@@ -111,17 +112,17 @@
 +++ "top.opener.parent is not an object"
 This error is the result of a bug in Internet Explorer.  
[mailto:stu...@eclipse.net.uk Stuart] suggests that the following  
commands (executed on the Windows system on which Internet Explorer is  
installed) will solve the problem:


 
-regsvr32 c:\windows\system32\actxprxy.dll
-regsvr32 c:\windows\system32\shdocvw.dll
+regsvr32 c:windowssystem32actxprxy.dll
+regsvr32 c:windowssystem32shdocvw.dll
 

 The FAQ maintainer has //not// tested the above! Make sure you have  
a backup of your system before playing with deep Windows magic.


 +++ "Unable to load dynamic library php_whatever.dll - The specified  
module could not be found."


-This error message is a misrepresentation of the actual problem.  
Often occurs when some dependency needed for php_whatever.dll is  
missing.e.g. need to copy iconv.dll (from the dlls folder under to the  
php install directory) to windows\system32 to get php_gettext.dll to  
load.
+This error message is a misrepresentation of the actual problem.  
Often occurs when some dependency needed for php_whatever.dll is  
missing.e.g. need to copy iconv.dll (from the dlls folder under to the  
php install directory) to windowssystem32 to get php_gettext.dll to  
load.


 +++ "Unable to open VFS file for writing"
 If you see this message from kronolith or trean (or any other  
application hat uses crontabs) you are running a crontab script as a  
different user as you did in the first run. Adjust your crontab  
(running it as same user as the webserver is a good idea) and also  
change the ownship of {{/.horde}}.


@@ -221,9 +222,9 @@
 if (!($db = mysql_connect('localhost','root','yourpassword'))) return 1;
 if (!mysql_query('create database testdb', $db)) return 2;
 if (!mysql_select_db('testdb', $db)) return 3;
 if (!mysql_db_query('testdb', 'create table testtest ( test  
char(60))', $db)) return 4;
-if (!mysql_db_query('testdb', 'insert into testtest values  
(\'hello world!\')', $db)) return 5;
+if (!mysql_db_query('testdb', 'insert into testtest values  
('hello world!')', $db)) return 5;
 if (!($result = mysql_db_query('testdb', 'select * from  
testtest', $db))) return 6;

 if (mysql_num_rows($result) > 0) echo mysql_result($result, 0, 0);
 if (!mysql_db_query('testdb', 'delete from testtest', $db)) return 7;
 if (!mysql_query('drop database testdb', $db)) return 8;

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ/Admin/Troubleshoot

2011-02-04 Thread Wiki Guest

guest [24.237.84.217]  Sat, 05 Feb 2011 00:36:05 -0500

Modified page: http://wiki.horde.org/FAQ/Admin/Troubleshoot
New Revision:  7.24
Change log:  missed some syntax on last change.

@@ -25,9 +25,10 @@
 : Make sure that you are using the correct cookie domain and path  
settings in Horde's setup. : Cookies are not stored in the browser if  
you don't use a FQDN (fully qualified domain name), e.g.  
``http://localhost/horde/``, or if the specified cookie path  
({{/horde}} by default) doesn't match the webroot of your Horde  
installation, e.g. ``http://webmail.example.org/``,  
``http://www.example.org/horde-3.1.2/``. To find this, go to the Horde  
configuration page on the General tab, and the last box on that page  
says "What path should we set cookies to?". Alternatively, in  
conf.php, look for the value $conf['cookie']['path']. Set that to the  
base URL for horde.
 : If session.auto_start is set to 1 in the php.ini file the login  
page will loop. : Set it to 0.
 : Delete any cookies in your browser for Horde to test any of the  
above changes. : Otherwise wrong cookies might be stored in your  
browser and the above actions still fail
 : Check the session storage. : By default sessions are stored on the  
file system, check that your hard-disc partitions still have plenty of  
room for session storage.
-: Try restarting the apache server and the browser after making  
configuration changes.
+: Try restarting the apache server and the browser after making  
configuration changes : it may save you some time.

+

 +++ After logging in the message "Last login: Never" is displayed. Always.
 You didn't configure a permanent preference backend like SQL or  
LDAP. Preference backends are used to store user settings and personal  
stuff like the last login time. As an administrator go the the setup  
screen for Horde, select the {{Preference System}} tab, and enter the  
necessary settings. The {{PHP Sessions}} backend does //not// store  
the user settings permanently. You might also need to create some  
storage resource in the backend of your choice, e.g. a table in your  
SQL database or a scheme in your LDAP directory. But this is covered  
in the [http://www.horde.org/horde/docs/?f=INSTALL.html installation  
documentation].



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ/User/Kronolith

2011-02-18 Thread Wiki Guest

guest [74.79.205.232]  Fri, 18 Feb 2011 13:57:46 +

Modified page: http://wiki.horde.org/h/wicked/FAQ/User/Kronolith
New Revision:  1.11
Change log:  how doalarms work - added 1 sentence

@@ -10,9 +10,9 @@
 +++ Can Kronolith sync with my Palm Pilot?
 Preliminary syncing support is available in the bleeding-edge  
development releases. See http://horde.org/sync/.


 +++ How do "alarms" work?
-If your system administrator has configured it, and you have set an  
email address in your Horde preferences, you will get an email when an  
alarm "goes off".
+If your system administrator has configured it, and you have set an  
email address in your Horde preferences, you will get an email when an  
alarm "goes off". You can pick inline, popup, or email reminders in  
options.


 +++ Does Kronolith support iCalendar invitations?
 Yes. Kronolith 2.0 supports the iCalendar/vCalendar format for  
importing and exporting and sending iCalendar invitations for e-mail  
based scheduling. As such it is now interoperable with any  
calendar/email system which can either send or receive standard  
iCalendar attachments. This means that you can create a kronolith  
event, send invitations for that event to any email addresses desired,  
and the email recipients can then add the event to their calendars  
automatically.



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncHowTo

2011-03-03 Thread Wiki Guest

guest [79.238.125.61]  Thu, 03 Mar 2011 09:47:21 +

Modified page: http://wiki.horde.org/SyncHowTo
New Revision:  5.17
Change log:  Added N97mini to working SyncML clients

@@ -43,9 +43,9 @@

 * Synthesis client
 * Sony Ericsson P800, P900, K800i, C902i, J105i (Naite)
 * Outlook with Funambol !SyncClient PIM outlook 3.0.15
-* Nokia E51, E65, E60, E90, N70, N73, N80, N95, E61i, E71, 5800  
!XpressMusic, 6120 Classic, 9500 Communicator
+* Nokia E51, E65, E60, E90, N70, N73, N80, N95, N97mini, E61i, E71,  
5800 !XpressMusic, 6120 Classic, 9500 Communicator

 * Nokia N900 with Syncevolution
 * Samsung I8910 HD
 * Motorola RAZR v9 (only entries without non-ASCII characters)
 * Windows Mobile /w Funambol client 7.0.8 after some tinkering

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: iphone

2011-03-03 Thread Wiki Guest

guest [81.151.135.219]  Thu, 03 Mar 2011 10:36:45 +

Created page: http://wiki.horde.org/iphone

[[toc]]

+ Project Name
accsing mail from my i phone- i usd to have a blackerry on which mail  
would come through normaly like hotmail and i could read and reply  
like txt. now on my i phone the set up for mail is different and ive  
tried numerous googled solutions with no joy, to access my mail i  
currently have to log on to my site using th internet safari  can you  
help me??


Project summary and goal. Please include what the scope of the project  
is, what applications or libraries it touches, and what it is intended  
to accomplish at a minimum.


++ Bugs

List any tickets on http://bugs.horde.org/ that cover this issue or  
are relevant to it.


++ People

Who is or might be involved in this project? Who can answer questions  
about it, either about a specific technology (iCalendar) or about a  
specific part of Horde (Kronolith)?


++ Description

Detailed project description. Include implementation steps, current  
status, plan, etc.
accsing mail from my i phone- i usd to have a blackerry on which mail  
would come through normaly like hotmail and i could read and reply  
like txt. now on my i phone the set up for mail is different and ive  
tried numerous googled solutions with no joy, to access my mail i  
currently have to log on to my site using th internet safari  can you  
help me??



++ Resources

Include links to protocol descriptions, specifications, RFCs, external  
applications, presentations on http://horde.org/papers/ or elsewhere  
that are relevant, articles, API docs from http://dev.horde.org/ -  
anything that might be useful to someone working on this.




Back to the ((Projects|Project List))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ/Admin/Config

2011-03-04 Thread Wiki Guest

guest [76.122.146.81]  Fri, 04 Mar 2011 23:10:48 +

Modified page: http://wiki.horde.org/FAQ/Admin/Config
New Revision:  1.3
Change log:  Restore loosed '}' token to avoid empty page because of  
"Unbalanced token"


@@ -51,8 +51,9 @@
 'webroot' => '',
 'icon' => '/graphics/imp.gif',
 'name' => _("Mail"),
 
+

 With the above settings, going to {{http://yourserver.example.com/}}  
will take the user right to the IMP login screen.


 In the case where one wants to run more than one Horde component but  
omit the {{/horde/}} part of the URL, configure the webserver to treat  
the {{/horde/}} directory as the root document directory, and add an  
alias to make sure links into it still succeed. In Apache:

@@ -87,9 +88,8 @@

 
 'name' => _("Whatever"),
 
-


 +++ How can I change the appearance?

@@ -104,9 +104,9 @@
 You may wish to alter some of the text in an existing language -- to  
match the terminology used locally, for instance.


 You change strings by changing them in the locale files for the  
desired language(s). To change the US English translation, you will  
need to create a new US English (en_US) locale, as one normally does  
not exist, and modify the translations in that file. See the following  
FAQ entry for information on creating a new locale file.


-To change the translation for a locale, you must first change the  
locale files and then recompile them. Find the appropriate files in  
{{/horde/po/}}, named by the locale name. Edit the translation(s) in  
this file to suite your needs. Then compile the locale files as  
described in your version's {{/horde/po/README}} file. For other  
components, follow the same steps using the  
{{/horde/componentname/po}} files.
+To change the translation for a locale, you must first change the  
locale files and then recompile them. Find the appropriate files in  
{{/horde/po/}}, named by the locale name. Edit the translation(s) in  
this file to suite your needs. Then compile the locale files as  
described in your version's {{/horde/po/README}} file. For other  
components, follow the same steps using the {{/HordeComponentName/po}}  
files.


 If you are having difficulty finding the file which contains the  
phrase you want to change, the following Unix command may be of  
assistance:


 
@@ -120,9 +120,10 @@
 Note: The following question may also be of help to you if you are  
changing the locale files.


 +++ How can I provide another translation for Horde/IMP's messages?

-Horde uses GNU gettext for internationalization (i18n) and  
localization (l10n). See  
{{[http://www.horde.org/horde/docs/?f=po_README.html  
horde/po/README]}} and  
{{[http://www.horde.org/horde/docs/?f=TRANSLATIONS.html  
horde/docs/TRANSLATIONS]}} for more information.
+Horde uses GNU gettext for internationalization (i18n) and  
localization (l10n). See  
{{[http://www.horde.org/horde/docs/?f=po_README.html horde/po/README]}}
+and {{[http://www.horde.org/horde/docs/?f=TRANSLATIONS.html  
horde/docs/TRANSLATIONS]}} for more information.


 +++ How do I let users report problems directly from Horde?

 Horde comes with a problem-reporting form. You can control who sees  
it, and what is done with problem reports, by going to the //Problem  
Reporting// tab of the Horde setup interface.

@@ -131,8 +132,9 @@

 PHP's safe_mode is not officially supported by Horde, although we  
work around its restrictions wherever we can. Many have tried to use  
it, and have reported various levels of success. To run in safe_mode  
you will need to modify the PHP safe_mode settings. You may also have  
to change some code in Horde or other Horde components in order to  
make things work properly. Some of the known issues are not being able  
to set PHP maximum execution time, problems with spell checking, not  
being able to use Sendmail (without modifying the php safe_mode  
configuration), and problems with any sort of file uploads (adding  
attachments in IMP, file uploads in Gollem, etc).


 If you run the Apache web server with virtual hosts and with PHP's  
safe_mode enabled by default, you can use the Apache PHP module  
configuration command {{php_admin_value}} in your main Apache  
configuration file to remove safe_mode for the Horde virtual host. For  
example:

+

 
 
 ...
@@ -147,25 +149,26 @@
   ...
 
 

-Remember to test for module {{mod_php5.c} or similar if you are  
running PHP 5 or any other version.
+Remember to test for module {{mod_php5.c}} or similar if you are  
running PHP 5 or any other version.


 It has been reported that Horde, IMP, and Turba, with safe_mode  
enabled, are working fine with this apache configuration:


 
-
-php_admin_value open_basedir  
"/path/to/horde:/path/to/pear/lib/:/path/to/logfile/dir"

-php_admin_flag file_uploads On
-php_admin_value upload_tmp_dir /path/to/horde/tmp
-
-php_admin_value safe_mode_exec_dir "/path/to/openssl/bin"
-php_admin_value open_basedir  
"/path/to/horde:/path/to/pear/lib/:/path/to/logfile/dir:/var

[commits] [Wiki] changed: Projects

2011-03-08 Thread Wiki Guest

guest [24.138.16.199]  Tue, 08 Mar 2011 22:42:30 +

Modified page: http://wiki.horde.org/Projects
New Revision:  1.70
Change log:  khartlen

@@ -3,10 +3,9 @@
 + Horde Projects and Proposals

 List of projects for Horde developers, community members, and  
newcomers to work on, with links to individual project pages  
containing details of the project, resources, people to contact about  
it, links to the bug tracker, status, and anything else relevant.


-For creating a new project, please use the ProjectTemplate.
-
+For creating a new project, please use the ProjectTempl
 ++ Active Projects

 * ((Horde4/BCBreaking|Horde 4 TODO list))
 * ((Project/KronolithAjax|Ajax interface for Kronolith))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/DAV

2011-03-17 Thread Wiki Guest

guest [212.17.82.54]  Thu, 17 Mar 2011 23:28:46 +

Modified page: http://wiki.horde.org/Doc/Dev/DAV
New Revision:  1.6
Change log:  Caldav Gateway to Exchange

@@ -31,4 +31,8 @@

 groupdav:
 http://www.egroupware.org/index.php?page_name=wiki&wikipage=GroupDAV
 http://www.nabble.com/GroupDAV-and-IcalSrv-1.4.003-td15045378s3741.html
+
+DavMail: (CalDav Gateway with Exchange)
+http://davmail.sourceforge.net
+http://www.internex.at/de/hosted-exchange/

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/DAV

2011-03-17 Thread Wiki Guest

guest [212.17.82.54]  Thu, 17 Mar 2011 23:37:55 +

Modified page: http://wiki.horde.org/Doc/Dev/DAV
New Revision:  1.7
Change log:  better link

@@ -32,7 +32,6 @@
 groupdav:
 http://www.egroupware.org/index.php?page_name=wiki&wikipage=GroupDAV
 http://www.nabble.com/GroupDAV-and-IcalSrv-1.4.003-td15045378s3741.html

-DavMail: (CalDav Gateway with Exchange)
+DavMail: (CalDav Gateway with  
[http://www.internex.at/de/hosted-exchange/ Exchange])

 http://davmail.sourceforge.net
-http://www.internex.at/de/hosted-exchange/

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncRoadMap

2011-03-18 Thread Wiki Guest

guest [90.185.114.8]  Fri, 18 Mar 2011 13:26:11 +

Modified page: http://wiki.horde.org/SyncRoadMap
New Revision:  1.1
Change log:  redirect to syncmlroadmap

@@ -1,25 +1 @@
-[[toc]]
-
-+ Project Name
-
-Project summary and goal. Please include what the scope of the  
project is, what applications or libraries it touches, and what it is  
intended to accomplish at a minimum.

-
-++ Bugs
-
-List any tickets on http://bugs.horde.org/ that cover this issue or  
are relevant to it.

-
-++ People
-
-Who is or might be involved in this project? Who can answer questions  
about it, either about a specific technology (iCalendar) or about a  
specific part of Horde (Kronolith)?

-
-++ Description
-
-Detailed project description. Include implementation steps, current  
status, plan, etc.

-
-++ Resources
-
-Include links to protocol descriptions, specifications, RFCs,  
external applications, presentations on http://horde.org/papers/ or  
elsewhere that are relevant, articles, API docs from  
http://dev.horde.org/ - anything that might be useful to someone  
working on this.

-
-
-
-Back to the ((Projects|Project List))
+see SyncMLRoadmap

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowTo

2011-03-18 Thread Wiki Guest

guest [173.255.231.186]  Fri, 18 Mar 2011 17:38:49 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.84
Change log:  Added fix for alerts being off by an hour

@@ -84,8 +84,9 @@
 +++ Kronolith [http://www.horde.org/kronolith/]
 * [KronolithReminders Setting up reminders for Kronolith events]
 * [KronolithSunbird Setting Kronolith up as a read-write calendar  
server for Sunbird/Thunderbird] (see also ExternalClientsHowTo)
 * [KronolithICal Setting Kronolith up as a read-write calendar  
server for Apple iCal]

+* [Fix: Calendar date/time OK, but reminders sent out an hour late]

 +++ MIMP [http://www.horde.org/mimp/]
 * [MIMPHowTo Setting up MIMP in parallel with IMP]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowTo

2011-03-18 Thread Wiki Guest

guest [173.255.231.186]  Fri, 18 Mar 2011 17:43:32 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.85
Change log:  Removed change about time difference. Doesn't seem to  
display correctly


@@ -84,9 +84,8 @@
 +++ Kronolith [http://www.horde.org/kronolith/]
 * [KronolithReminders Setting up reminders for Kronolith events]
 * [KronolithSunbird Setting Kronolith up as a read-write calendar  
server for Sunbird/Thunderbird] (see also ExternalClientsHowTo)
 * [KronolithICal Setting Kronolith up as a read-write calendar  
server for Apple iCal]

-* [Fix: Calendar date/time OK, but reminders sent out an hour late]

 +++ MIMP [http://www.horde.org/mimp/]
 * [MIMPHowTo Setting up MIMP in parallel with IMP]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ReleaseNotesHorde4

2011-03-21 Thread Wiki Guest

guest [155.56.40.13]  Mon, 21 Mar 2011 10:53:59 +

Modified page: http://wiki.horde.org/ReleaseNotesHorde4
New Revision:  1.17
Change log:  Beta time

@@ -1,5 +1,5 @@
-+ Release Notes for Horde 4 Alpha 1
++ Release Notes for Horde 4 Beta 1

 After more than two years of development, the Horde Team is pleased  
to announce the first alpha release of the Horde Application Framework  
version 4.0.


 ++ Description

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: This version of PHP has not been fully tested with this version of Horde

2011-04-02 Thread Wiki Guest

guest [190.32.61.15]  Sat, 02 Apr 2011 14:34:11 +

Created page:  
http://wiki.horde.org/This+version+of+PHP+has+not+been+fully+tested+with+this+version+of+Horde


This message out in my domain.com/test.php, I can't fix this i want  
know how fix this,thanks for your collaboration


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Project/Hydra

2011-04-02 Thread Wiki Guest

guest [75.102.39.216]  Sun, 03 Apr 2011 05:08:34 +

Modified page: http://wiki.horde.org/Project/Hydra
New Revision:  1.47
Change log:  little bit

@@ -202,9 +202,11 @@
 *  
http://techportal.ibuildings.com/2010/03/24/book-review-silverstripe-the-complete-guide-to-cms-development/
 *  
http://www.openmotive.com/about/company-blog/country-plugin-for-expressionengine/
 *  
http://pgregg.com/blog/2010/11/referrer-and-comment-spammers-are-a-pita.html

 * http://bergie.iki.fi/blog/using_rdfa_to_make_a_web_page_editable/
-
+* [http://www.customwritinghelp.co.uk/assignment.php assignment writing]
+* [http://www.perfectwriting.co.uk/assignment/assignment-help.php  
assignment help]
+* [http://www.perfectwriting.co.uk/assignment/assignment-writing.php  
assignment writing]


 Relevant tools/resources for web sites to integrate with/consider  
for inspiration:


 *  
http://blog.webdistortion.com/2008/04/05/10-seo-keyword-tools-you-cant-live-without/


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev

2011-04-02 Thread Wiki Guest

guest [174.142.29.228]  Sun, 03 Apr 2011 05:20:14 +

Modified page: http://wiki.horde.org/Doc/Dev
New Revision:  1.95
Change log:  little bit changes

@@ -40,4 +40,6 @@
 * ((Doc/Dev/Benchmarks))
 * ((Doc/Dev/CopyrightLicense|Copyright and license stuff))
 * ((Doc/Dev/VimRC|Vim configuration useful for Horde Development))
 * ((Doc/Dev/Emacs|Emacs configurations for Horde))
+* [http://www.designerevaluation.com/logo-design/ logo design]
+* [http://www.designerevaluation.com/ website design]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ReleaseManagement

2011-04-02 Thread Wiki Guest

guest [216.246.49.21]  Sun, 03 Apr 2011 05:25:19 +

Modified page: http://wiki.horde.org/ReleaseManagement
New Revision:  2.42
Change log:  little bit changes

@@ -144,4 +144,7 @@
 * [ShowStoppersThreeOne Show Stoppers for Horde 3.1 release]
 * Horde 3.0
  * [ShowStoppersThreeOh Show Stoppers for Horde 3.0 release]
  * [MissingFeaturesThreeOh Missing Features for Horde 3.0 release]
+* [http://www.seoprofessionalsonline.com professional seo]
+* [http://www.seoprofessionalsonline.com/website-optimizer.asp  
website optimizer]

+* [http://www.realsofttech.com/ web design service]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: WikiLikeLinking

2011-04-02 Thread Wiki Guest

guest [216.55.176.84]  Sun, 03 Apr 2011 05:27:49 +

Modified page: http://wiki.horde.org/WikiLikeLinking
New Revision:  2.1
Change log:  little bit changes

@@ -102,6 +102,7 @@

 -- Marbux


-
-
+* [http://www.customwritinghelp.co.uk/assignment.php assignment writing]
+* [http://www.perfectwriting.co.uk/assignment/assignment-help.php  
assignment help]
+* [http://www.perfectwriting.co.uk/assignment/assignment-writing.php  
assignment writing]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ReleaseManagement

2011-04-02 Thread Wiki Guest

guest [209.44.123.1]  Sun, 03 Apr 2011 05:57:25 +

Modified page: http://wiki.horde.org/ReleaseManagement
New Revision:  2.43
Change log:  little bit changes

@@ -146,5 +146,4 @@
  * [ShowStoppersThreeOh Show Stoppers for Horde 3.0 release]
  * [MissingFeaturesThreeOh Missing Features for Horde 3.0 release]
 * [http://www.seoprofessionalsonline.com professional seo]
 * [http://www.seoprofessionalsonline.com/website-optimizer.asp  
website optimizer]

-* [http://www.realsofttech.com/ web design service]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Project/ClientSideEncryption

2011-04-08 Thread Wiki Guest

guest [86.18.24.223]  Fri, 08 Apr 2011 21:51:10 +

Modified page: http://wiki.horde.org/Project/ClientSideEncryption
New Revision:  1.1
Change log:  added link to clientside GPG encryption

@@ -21,8 +21,8 @@
 ++ Resources

 * http://secclab.mozdev.org/
 * http://docs.sun.com/source/816-6152-10/sgntxt.htm
-
+* http://www.hanewin.net/encrypt/

 
 Back to the ((Projects|Project List))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncMLProblemReport

2011-04-11 Thread Wiki Guest

guest [93.130.252.91]  Mon, 11 Apr 2011 16:32:21 +

Modified page: http://wiki.horde.org/SyncMLProblemReport
New Revision:  2.7
Change log:  Changed option in Horde 4.

@@ -5,9 +5,9 @@
 # Test preparations:
  # Make sure you have a recent (stable or CVS) version of the  
framework and the relevant Horde applications involved. If using CVS  
code, make sure that you have actually installed the current framework  
(using the install-packages script in the framework directory).
  # Make sure there's a directory {{/tmp/sync/}}, writeable by the  
webserver ({{chown wwwrun /tmp/sync}}). Clean this directory before  
starting the sync: {{rm /tmp/sync/*}}
  # Turn on logging of PHP errors to a file: make sure you have an  
{{error_log}} entry in {{php.ini}} as described in the SyncHowTo FAQ  
section.
- # Set log level to PEAR_LOG_DEBUG in Administration -> Setup ->  
Horde -> Logging.
+ # Set log level to PEAR_LOG_DEBUG (just DEBUG in Horde 4) in  
Administration -> Setup -> Horde -> Logging.
 # Run a synchronization session; perform the actions you intend to  
do and that do not work.

 # Report the problems to the mailing list. Please include the following:
  # What version of Horde and !SyncML are you using //("I'm using a  
CVS version from three days ago")//
  # Did any PHP errors occur during your test? //("No PHP errors  
showed up in the PHP error log")//


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: Project/Scry

2011-04-12 Thread Wiki Guest

guest [147.162.188.165]  Tue, 12 Apr 2011 14:09:01 +

Created page: http://wiki.horde.org/Project/Scry

[[toc]]

+ Project Name

Project summary and goal. Please include what the scope of the project  
is, what applications or libraries it touches, and what it is intended  
to accomplish at a minimum.


++ Bugs

List any tickets on http://bugs.horde.org/ that cover this issue or  
are relevant to it.


++ People

Who is or might be involved in this project? Who can answer questions  
about it, either about a specific technology (iCalendar) or about a  
specific part of Horde (Kronolith)?


++ Description

Detailed project description. Include implementation steps, current  
status, plan, etc.


++ Resources

Include links to protocol descriptions, specifications, RFCs, external  
applications, presentations on http://horde.org/papers/ or elsewhere  
that are relevant, articles, API docs from http://dev.horde.org/ -  
anything that might be useful to someone working on this.




Back to the ((Projects|Project List))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: CreatingYourFirstModule

2011-04-12 Thread Wiki Guest

guest [77.78.2.119]  Tue, 12 Apr 2011 14:23:17 +

Modified page: http://wiki.horde.org/CreatingYourFirstModule
New Revision:  2.0
Change log:  fixing some PHP errors and a typo

@@ -11,9 +11,9 @@
  cd horde
  cp -R skeleton/ /your/install/path/to/horde/
 

-2. Create the following script as prjrename.php - save it somewhere  
sensible, like your home directory:
+2. Create the following script as projectrename.php - save it  
somewhere sensible, like your home directory:


 
 #!/usr/bin/php -q
 http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-04-20 Thread Wiki Guest

guest [195.101.10.250]  Wed, 20 Apr 2011 15:14:53 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.76
Change log:  Add informations for HTC Android 2.2 with Sense

@@ -41,8 +41,9 @@
 || Device || Version(s) || Provisioning || GAL Searching || Notes ||
 || Android SDK Emulator|| 2.0.1 and 2.1 || Does NOT support  
provisioning and will NOT work with it set to //Force//.|| No native  
support. || Contacts only as the emulator does not have a native  
calendar application ||
 || Motorola Droid || 2.0.1, 2.1, 2.2 || No (See above) || No native  
support, but the //Corporate Directory// app in the Marketplace works  
well. || Contacts and Calendar data, though the calendar does not  
issue PING requests, and does not seem to properly support exceptions  
to recurring events. On Froyo/2.2 SSL connections will NOT work with a  
self signed certificate even if the "Accept All Certificates" checkbox  
is selected. See  
http://www.google.com/support/forum/p/android/thread?tid=45e6836618212fdf&hl=en (A (Free) Level One certificate from http://www.startssl.com/ seems to work well  
here).||
 || Motorola Milestone || 2.1, 2.2 || ? || Yes, via //Corporate  
Directory// app || Contacts and Calendar ||
+|| HTC Desire Z / HTC Desire HD || 2.2 || ? || ? || Contacts and  
Calendar via native ActiveSync, SSL untested ||
 || !TouchDown For Droid || Version 5.1.0028 || Yes || Yes ||  
Contacts, Calendar (You can **create** recurring events, but cannot  
edit them. See Touchdown website for details), and Tasks. ||
 || iPod Touch / iPad / iPhone || 3.1.3 || Yes || Yes || Contacts and  
Calendar ||

 || Windows Mobile Device || 6.1 || ? || ? || Contacts reported to work. ||
 || Windows Mobile Emulator || 6.5 || Yes || Yes || Contacts,  
Calendars (with proper support for recurring events and exceptions),  
and Tasks. ||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: how to username display

2011-04-22 Thread Wiki Guest

guest [123.201.34.158]  Sat, 23 Apr 2011 06:18:22 +

Created page: http://wiki.horde.org/how+to+username+display

h

Please Hlep me


I am using horde interface bu not display user name (email id) on  front page.

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: lm.look.hot.lov.fcuk. .

2011-04-25 Thread Wiki Guest

guest [208.54.5.67]  Mon, 25 Apr 2011 10:28:14 +

Created page: http://wiki.horde.org/lm.look.hot.lov.fcuk.+.

+ Release Notes for

The Horde Team is pleased to announce the [first release  
candidate|final release] of the Skeleton Foo Bar Application version  
H4 (x.x).


++ Description

The Skeleton Foo Bar Application is a...

++ Notes

[For alpha/beta releases:
This is a preview version that should not be used on production  
systems. This version is considered feature complete but there might  
still be a few bugs. You should not use this preview version over  
existing production data.


We encourage widespread testing and feedback via the mailing lists or  
our bug tracking system. Updated translations are very welcome, though  
some strings might still change before the final release.]


[For release candidates:
Barring any problems, this code will be released as Skeleton H3 (x.x).
Testing is requested and comments are encouraged.
Updated translations would also be great.]

++ Changes

The major changes compared to the Skeleton version H3 (x.x) are:

*


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowTo

2011-05-10 Thread Wiki Guest

guest [202.174.161.33]  Wed, 11 May 2011 04:24:30 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.87
Change log:  Loast side bar

@@ -48,8 +48,9 @@
 * [MimeMagic Getting mime_magic, and fileinfo working on RHEL and  
Fedora Core 4]

 * [QuickDatabase Script for creating database(postgres)]
 * [RemoveUserData Removing user data]
 * [MemcacheLockCleanup Script for cleaning memcache lock files  
(Horde versions < 3.2)]

+* [LostSideBar Lost Sidebar in Horde 4]

 +++ Setting up Horde_Blocks
 * [MetarWeather Setting up METAR weather to actually return data]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: LostSideBar

2011-05-10 Thread Wiki Guest

guest [202.174.161.33]  Wed, 11 May 2011 04:30:26 +

Created page: http://wiki.horde.org/LostSideBar

+ Lost sidebar in Horde4
++ What I did to cause the problem.
* First time working with the new Horde 4 and it's installation methodology.
* Playing around getting my head a round getting an install going, and  
of course comparing my notes from how I install Horde 3.

* This caused me to uninstall, reinstall, delete dbs and recreate them.
In all this I did a new install of Horde 4 and no side bar.
++ My system
* Centos 5.6 64
* php53
* Horde 4.0.2
++ What I did to solve the problem.
* The core problem was that js/hordetree.js did not exist.
During all this experimenting I had kept a good copy of a horde dir.
Comparing my current horde/js against the archive I found the  
following files (and dir) missing from my system.


drwxr-xr-x 5 apache apache   4096 May  8 21:15 syntaxhighlighter
-rw-r--r-- 1 apache apache   3833 May  8 21:15 tooltips.js
-rw-r--r-- 1 apache apache   1371 May  8 21:15 toggle_quotes.js
-rw-r--r-- 1 apache apache   8369 May  8 21:15 spellchecker.js
-rw-r--r-- 1 apache apache   3757 May  8 21:15 sourceselect.js
-rw-r--r-- 1 apache apache   9413 May  8 21:15 prettyautocomplete.js
-rw-r--r-- 1 apache apache405 May  8 21:15 prefs.js
-rw-r--r-- 1 apache apache   1899 May  8 21:15 open_html_helper.js
-rw-r--r-- 1 apache apache   2648 May  8 21:15 liquidmetal.js
-rw-r--r-- 1 apache apache   1148 May  8 21:15 identityselect.js
-rw-r--r-- 1 apache apache  15043 May  8 21:15 hordetree.js
-rw-r--r-- 1 apache apache  11218 May  8 21:15 calendar.js
-rw-r--r-- 1 apache apache   9585 May  8 21:15 autocomplete.js
-rw-r--r-- 1 apache apache900 May  8 21:15 alarmprefs.js
-rw-r--r-- 1 apache apache   1994 May  8 21:15 addressbooksprefs.js

I copied these across to horde/js and my side bar is back.
Makes me winder what else I might be missing.
That I won't know till something is broken.

Therefore what should be the contents of horde/js?

How does one check to make sure one have a full compliment of files,  
and if you find out you do not, how can you refresh this directory  
with all needed files.



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: LostSideBar

2011-05-10 Thread Wiki Guest

guest [202.174.161.33]  Wed, 11 May 2011 04:33:02 +

Modified page: http://wiki.horde.org/LostSideBar
New Revision:  1.1
Change log:  Tidying

@@ -3,8 +3,8 @@
 * First time working with the new Horde 4 and it's installation methodology.
-* Playing around getting my head a round getting an install going,  
and of course comparing my notes from how I install Horde 3.
+* Was getting my head a round setting up Horde 4, and of course  
comparing my notes from how I install Horde 3.

 * This caused me to uninstall, reinstall, delete dbs and recreate them.
-In all this I did a new install of Horde 4 and no side bar.
+In all this I did a new install of Horde 4 and now no side bar.
 ++ My system
 * Centos 5.6 64
 * php53
 * Horde 4.0.2
@@ -34,6 +34,7 @@
 That I won't know till something is broken.

 Therefore what should be the contents of horde/js?

-How does one check to make sure one have a full compliment of files,  
and if you find out you do not, how can you refresh this directory  
with all needed files.
+How does one check to make sure one have a full compliment of files,  
and if you find out you do not have all the needed files, how can you  
refresh this directory so as to have all needed files.


+ai.net.nz

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-05-13 Thread Wiki Guest

guest [99.241.124.193]  Sat, 14 May 2011 01:15:24 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.77
Change log:  How to make the Exchange GAL work.

@@ -16,8 +16,10 @@

 !ActiveSync support is fairly stable, but there are still devices on  
which it has not been tested yet. If you have used a device with  
Horde's !ActiveSync support that is not listed below, please feel free  
to let us know how it went.


 To activate the server, it needs to be enabled in Horde's  
configuration, on the !ActiveSync tab. It's already enabled by  
default. The SQL tables that horde uses are created as usual from the  
Horde configuration screen.

+
+For the Exchange GAL to work you need to specify $conf[gal] in the  
turba configuration.


 Next, you will need to configure your webserver to redirect the URL  
/Microsoft-Server-ActiveSync to your horde/rpc.php file. How you do  
this depends on your webserver and it's configuration. For Apache,  
something like:

 
 Alias /Microsoft-Server-ActiveSync /var/www/horde/rpc.php

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-05-13 Thread Wiki Guest

guest [99.241.124.193]  Sat, 14 May 2011 01:19:44 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.78
Change log:  Expanded GAL acronym to facilitate searching.

@@ -17,9 +17,9 @@
 !ActiveSync support is fairly stable, but there are still devices on  
which it has not been tested yet. If you have used a device with  
Horde's !ActiveSync support that is not listed below, please feel free  
to let us know how it went.


 To activate the server, it needs to be enabled in Horde's  
configuration, on the !ActiveSync tab. It's already enabled by  
default. The SQL tables that horde uses are created as usual from the  
Horde configuration screen.


-For the Exchange GAL to work you need to specify $conf[gal] in the  
turba configuration.
+For the Exchange Global Address List (GAL) to work you need to  
specify $conf[gal] in the turba configuration.


 Next, you will need to configure your webserver to redirect the URL  
/Microsoft-Server-ActiveSync to your horde/rpc.php file. How you do  
this depends on your webserver and it's configuration. For Apache,  
something like:

 
 Alias /Microsoft-Server-ActiveSync /var/www/horde/rpc.php

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/ConversionH4

2011-05-14 Thread Wiki Guest

guest [78.56.205.147]  Sat, 14 May 2011 16:15:01 +

Modified page: http://wiki.horde.org/Doc/Dev/ConversionH4
New Revision:  1.18
Change log:  correct sidebar path

@@ -162,9 +162,9 @@
 ++ Sidebar integration

 The sidebar menu is no longer in a separate frame. To integrate with  
all pages of your application, put the following code after your menu,  
e.g. at the bottom of templates/menu.inc, but before the notification  
output:

 
-if (!Horde_Util::getFormData('ajaxui')) require HORDE_BASE .  
'/services/portal/sidebar.php';
+if (!Horde_Util::getFormData('ajaxui')) require HORDE_BASE .  
'/services/sidebar.php';

 

 ++ Test script


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/FilesystemH4

2011-05-18 Thread Wiki Guest

guest [213.197.150.2]  Wed, 18 May 2011 11:53:49 +

Modified page: http://wiki.horde.org/Doc/Dev/FilesystemH4
New Revision:  1.1
Change log:  adjust for H4

@@ -4,24 +4,22 @@

 These are the directories available in every Horde application:
 ||~ Directory ||~ Content ||
 || / || Base directory with the controller scripts called by the browser ||
+|| bin/ || Binary and other standalone CLI scripts ||
 || config/ || Configuration files ||
 || docs/ || Administrator documentation ||
 || lib/ || Application-specific library files ||
-|| locale/ || Compiled translations and help files ||
-|| po/ || Translations ||
-|| scripts/ || CLI scripts for setup and maintenance ||
-|| scripts/sql/ || SQL scripts for setup ||
-|| scripts/upgrades/ || CLI and SQL scripts for upgrades ||
+|| locale/ || Original and compiled translations; application help files ||
+|| migration/ || Setup and migration files ||
 || templates/ || Template files ||
-|| themes/ || Base stylesheet and theme directories ||
-|| themes/graphics/ || Icons ||
+|| themes/ || Themes directories ||
+|| themes/default/ || Base theme ||
+|| themes/defaults/graphics/ || Base theme icons ||

 Usually there are more directories, depending on the application:
 * If there are many controller scripts for an application, they may  
be grouped into directories under the base directory.
 * The {{lib/}} directory has many levels of subdirectories. See  
((Doc/Dev/Framework)) for details.
-* The {{locale/}} directory has a subdirectory for each locale, e.g.  
{{locale/de_DE/}}. These subdirectories contain the translated help  
file {{help.xml}} and the directory {{LC_MESSAGES/}} which contains  
the actual, compiled translation, e.g. {{imp.mo}}.
-* The {{scripts/}} directory may contain other directories for  
special purposes, e.g. {{ldap/}}.
+* The {{locale/}} directory has a subdirectory for each locale, e.g.  
{{locale/de/}} or {{locale/zh_TW/}} if locale has multiple regions.  
These subdirectories contain the translated help file {{help.xml}} and  
the directory {{LC_MESSAGES/}} which contains the actual, compiled  
translation, e.g. {{imp.mo}} and original source files, e.g. {{imp.po}}.
 * The {{templates/}} directory groups all templates for a single  
controller script into one subdirectory. All templates for a script  
called {{list.php}} are inside {{templates/list/}} for example.
 * Each ((Doc/Dev/Themes|theme)) has a subdirectory, e.g.  
{{themes/bluewhite/}}; if a theme provides its own icon set, the icons  
are inside a {{graphics/}} subdirectory, e.g.  
{{themes/bluewhite/graphics/}}.
 * Some applications have sub-sets of their icons grouped into  
subdirectories, e.g. {{themes/graphics/flags/}}.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/FilesystemH4

2011-05-18 Thread Wiki Guest

guest [213.197.150.2]  Wed, 18 May 2011 11:56:14 +

Modified page: http://wiki.horde.org/Doc/Dev/FilesystemH4
New Revision:  1.2
Change log:  not plural

@@ -18,8 +18,8 @@

 Usually there are more directories, depending on the application:
 * If there are many controller scripts for an application, they may  
be grouped into directories under the base directory.
 * The {{lib/}} directory has many levels of subdirectories. See  
((Doc/Dev/Framework)) for details.
-* The {{locale/}} directory has a subdirectory for each locale, e.g.  
{{locale/de/}} or {{locale/zh_TW/}} if locale has multiple regions.  
These subdirectories contain the translated help file {{help.xml}} and  
the directory {{LC_MESSAGES/}} which contains the actual, compiled  
translation, e.g. {{imp.mo}} and original source files, e.g. {{imp.po}}.
+* The {{locale/}} directory has a subdirectory for each locale, e.g.  
{{locale/de/}} or {{locale/zh_TW/}} if locale has multiple regions.  
These subdirectories contain the translated help file {{help.xml}} and  
the directory {{LC_MESSAGES/}} which contains the actual, compiled  
translation, e.g. {{imp.mo}} and original source file, e.g. {{imp.po}}.
 * The {{templates/}} directory groups all templates for a single  
controller script into one subdirectory. All templates for a script  
called {{list.php}} are inside {{templates/list/}} for example.
 * Each ((Doc/Dev/Themes|theme)) has a subdirectory, e.g.  
{{themes/bluewhite/}}; if a theme provides its own icon set, the icons  
are inside a {{graphics/}} subdirectory, e.g.  
{{themes/bluewhite/graphics/}}.
 * Some applications have sub-sets of their icons grouped into  
subdirectories, e.g. {{themes/graphics/flags/}}.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/FilesystemH4

2011-05-18 Thread Wiki Guest

guest [213.197.150.2]  Wed, 18 May 2011 12:03:10 +

Modified page: http://wiki.horde.org/Doc/Dev/FilesystemH4
New Revision:  1.3
Change log:  Separate themes page for H4

@@ -20,6 +20,6 @@
 * If there are many controller scripts for an application, they may  
be grouped into directories under the base directory.
 * The {{lib/}} directory has many levels of subdirectories. See  
((Doc/Dev/Framework)) for details.
 * The {{locale/}} directory has a subdirectory for each locale, e.g.  
{{locale/de/}} or {{locale/zh_TW/}} if locale has multiple regions.  
These subdirectories contain the translated help file {{help.xml}} and  
the directory {{LC_MESSAGES/}} which contains the actual, compiled  
translation, e.g. {{imp.mo}} and original source file, e.g. {{imp.po}}.
 * The {{templates/}} directory groups all templates for a single  
controller script into one subdirectory. All templates for a script  
called {{list.php}} are inside {{templates/list/}} for example.
-* Each ((Doc/Dev/Themes|theme)) has a subdirectory, e.g.  
{{themes/bluewhite/}}; if a theme provides its own icon set, the icons  
are inside a {{graphics/}} subdirectory, e.g.  
{{themes/bluewhite/graphics/}}.
+* Each ((Doc/Dev/ThemesH4|theme)) has a subdirectory, e.g.  
{{themes/bluewhite/}}; if a theme provides its own icon set, the icons  
are inside a {{graphics/}} subdirectory, e.g.  
{{themes/bluewhite/graphics/}}.
 * Some applications have sub-sets of their icons grouped into  
subdirectories, e.g. {{themes/graphics/flags/}}.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/ThemesH4

2011-05-18 Thread Wiki Guest

guest [213.197.150.2]  Wed, 18 May 2011 12:17:13 +

Modified page: http://wiki.horde.org/Doc/Dev/ThemesH4
New Revision:  2.1
Change log:  AFAIK copyright should be Horde ?

@@ -15,10 +15,10 @@
 Theme elements are inherited in the following order:

 # **application**/themes/**theme**/graphics
 # horde/themes/**theme**/graphics
-# **application**/themes/graphics
-# horde/themes/graphics
+# **application**/themes/default/graphics
+# horde/themes/default/graphics

 (The **application** entries listed above will not be skipped if  
horde is the current application.)


 For images & sounds, the first matching item is used working down  
the inheritance tree.

@@ -76,8 +76,8 @@
 /**
  * This is my personal theme.
  * It is based on the colors of my bike when I was five.
  *
- * Copyright 2010 John Doe 
+ * @author John Doe 
  */
 $theme_name = _("My Theme Name");
 

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/FilesystemH4

2011-05-18 Thread Wiki Guest

guest [213.197.150.2]  Wed, 18 May 2011 12:22:37 +

Modified page: http://wiki.horde.org/Doc/Dev/FilesystemH4
New Revision:  1.4
Change log:  more H4 updates

@@ -1,5 +1,5 @@
-+ Filesystem structure of a Horde application
++ Filesystem structure of a Horde 4 application

 Each Horde application has a common filesystem structure. This helps  
organizing the several components of the application and simplifies  
working with unknown applications.


 These are the directories available in every Horde application:
@@ -17,9 +17,9 @@
 || themes/defaults/graphics/ || Base theme icons ||

 Usually there are more directories, depending on the application:
 * If there are many controller scripts for an application, they may  
be grouped into directories under the base directory.
-* The {{lib/}} directory has many levels of subdirectories. See  
((Doc/Dev/Framework)) for details.
+* The {{lib/}} directory has many levels of subdirectories. See  
((Doc/Dev/FrameworkH4)) for details.
 * The {{locale/}} directory has a subdirectory for each locale, e.g.  
{{locale/de/}} or {{locale/zh_TW/}} if locale has multiple regions.  
These subdirectories contain the translated help file {{help.xml}} and  
the directory {{LC_MESSAGES/}} which contains the actual, compiled  
translation, e.g. {{imp.mo}} and original source file, e.g. {{imp.po}}.
 * The {{templates/}} directory groups all templates for a single  
controller script into one subdirectory. All templates for a script  
called {{list.php}} are inside {{templates/list/}} for example.
 * Each ((Doc/Dev/ThemesH4|theme)) has a subdirectory, e.g.  
{{themes/bluewhite/}}; if a theme provides its own icon set, the icons  
are inside a {{graphics/}} subdirectory, e.g.  
{{themes/bluewhite/graphics/}}.
 * Some applications have sub-sets of their icons grouped into  
subdirectories, e.g. {{themes/graphics/flags/}}.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/FrameworkH4

2011-05-18 Thread Wiki Guest

guest [213.197.150.2]  Wed, 18 May 2011 12:36:53 +

Modified page: http://wiki.horde.org/Doc/Dev/FrameworkH4
New Revision:  1.3
Change log:  Fix some dead and deprecated links.

@@ -90,11 +90,11 @@
 ++ Development

 +++ Git organization

-All libraries are managed in  
[http://git.horde.org/framework/?rt=horde-git Git]. Each library has  
its own subdirectory inside the framework directory.  The library  
package names are ALWAYS {{Horde_}}, and the directory names are  
{{}}.
+All libraries are managed in  
[http://git.horde.org/horde-git/-/browse/framework/?ws=1 Git]. Each  
library has its own subdirectory inside the framework directory.  The  
library package names are ALWAYS {{Horde_}}, and the directory  
names are {{}}.


-Each package directory contains a  
[http://pear.php.net/manual/en/developers.packagedef.php package.xml]  
file with package descriptions, file listings, dependencies, change  
logs etc. As all Horde Libraries are following the  
[http://pear.php.net PEAR] standard, they can be installed using the  
[http://pear.php.net/manual/en/installation.cli.php PEAR installer] or  
may be symlinked to a subdirectory of the Horde installation.  For  
further instructions, see the Installation Instructions located above.
+Each package directory contains a  
[http://pear.php.net/manual/en/guide.developers.package2.php  
package.xml] file with package descriptions, file listings,  
dependencies, change logs etc. As all Horde Libraries are following  
the [http://pear.php.net PEAR] standard, they can be installed using  
the [http://pear.php.net/manual/en/installation.php PEAR installer] or  
may be symlinked to a subdirectory of the Horde installation.  For  
further instructions, see the Installation Instructions located above.


 +++ Directory structure

 

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/FilesystemH4

2011-05-19 Thread Wiki Guest

guest [213.197.150.2]  Thu, 19 May 2011 09:57:01 +

Modified page: http://wiki.horde.org/Doc/Dev/FilesystemH4
New Revision:  1.5
Change log:  add js directory

@@ -7,8 +7,9 @@
 || / || Base directory with the controller scripts called by the browser ||
 || bin/ || Binary and other standalone CLI scripts ||
 || config/ || Configuration files ||
 || docs/ || Administrator documentation ||
+|| js/ || Javascript files ||
 || lib/ || Application-specific library files ||
 || locale/ || Original and compiled translations; application help files ||
 || migration/ || Setup and migration files ||
 || templates/ || Template files ||

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/ConversionH4

2011-05-19 Thread Wiki Guest

guest [213.197.150.2]  Thu, 19 May 2011 09:59:38 +

Modified page: http://wiki.horde.org/Doc/Dev/ConversionH4
New Revision:  1.19
Change log:  H4 updates

@@ -37,9 +37,9 @@
 Use Horde_Registry::appInit(), with the 'cli' option, to initialize  
CLI scripts.


 ++ Configuration files

-Add $Id$ tag to all conf/*.php.dist and conf/*.xml files
+Add $Id$ tag to all conf/*.xml files

 ++ Convert Base files

 No more lib/base.php, lib/api.php, lib/version.php.  Converted to  
lib/Application.php and lib/Api.php

@@ -146,9 +146,9 @@
 Most/all language and/or charset handling has been moved to  
Horde_Registry.  See http://bugs.horde.org/ticket/9124#c8.


 ++ Output buffering

-Convert from Util::bufferOutput() -> Horde::startBuffer()
+Convert from Util::bufferOutput() -> Horde::startBuffer()/Horde::endBuffer()

 ++ PEAR_Error

 Remove PEAR_Error usage - convert to Exceptions.
@@ -156,9 +156,9 @@

 ++ Prefs UI

 No more lib/prefs.php - now uses Horde_Registry_Application calls.
-Update config/prefs.php.dist to remove unneeded entries.
+Update config/prefs.php to remove unneeded entries.

 ++ Sidebar integration

 The sidebar menu is no longer in a separate frame. To integrate with  
all pages of your application, put the following code after your menu,  
e.g. at the bottom of templates/menu.inc, but before the notification  
output:


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/SpecialFilesH4

2011-05-19 Thread Wiki Guest

guest [213.197.150.2]  Thu, 19 May 2011 10:01:54 +

Modified page: http://wiki.horde.org/Doc/Dev/SpecialFilesH4
New Revision:  1.1
Change log:  fix path

@@ -11,5 +11,5 @@
 * {{lib/Api.php}}: This files defines and implements all methods  
that an application is exposing through the  
((Doc/Dev/Registry|Registry)) to the other Horde applications and the  
Horde RPC servers.
 * {{lib/Application.php}}: This file defines information need to  
initialize the application and to interact with the Horde framework.  
It also defines the version number of the application.
 * {{lib/Test.php}}: This file defines any application specific tests  
to run when using the Horde test script.
 * {{templates/common-header.inc}}: This is the common page header  
template for all scripts of the application. All applications use the  
same page footer template {{horde/templates/common-footer.inc}}.
-* {{themes/screen.css}}: This is a CSS file that defines all  
application specific style sheet rules.
+* {{themes/default/screen.css}}: This is a CSS file that defines all  
application specific style sheet rules.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/RegistryH4

2011-05-19 Thread Wiki Guest

guest [213.197.150.2]  Thu, 19 May 2011 10:16:59 +

Modified page: http://wiki.horde.org/Doc/Dev/RegistryH4
New Revision:  1.3
Change log:  fix URL

@@ -23,5 +23,5 @@
 # Instantiating the global ((Doc/Dev/PermsPackage|Permission))  
object (TODO: should be removed in favor of Horde_Injector)


 ((Doc/Dev/RegistryUsageH4|Click here)) for Registry usage examples.

-[http://git.horde.org/co.php/horde/config/registry.php.dist?rt=horde-git  
Click here] for documentation on how to configure the  
{{horde/config/registry.php}} file.
+[http://git.horde.org/co.php/horde/config/registry.php?rt=horde-git  
Click here] for documentation on how to configure the  
{{horde/config/registry.php}} file.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/TranslationH4

2011-05-19 Thread Wiki Guest

guest [213.197.150.2]  Thu, 19 May 2011 10:28:00 +

Modified page: http://wiki.horde.org/Doc/Dev/TranslationH4
New Revision:  1.1
Change log:  H4 updates

@@ -3,18 +3,18 @@
 [[toc]]

 

-This document is intended to help developers translate Horde 4  
modules using the **/horde/bin/translation.php** script.
+This document is intended to help developers translate Horde 4  
modules using the **/horde/bin/horde-translation** script.


 See also {{horde/docs/TRANSLATIONS}}.

 + The Translation Script
 
-$ php horde/bin/translation
+$ php horde/bin/horde-translation

-Usage: translation.php [options] command [command-options]
-   translation.php [help|-h|--help] [command]
+Usage: horde-translation [options] command [command-options]
+   horde-translation [help|-h|--help] [command]

 Helper application to create and maintain translations for the Horde
 framework and its applications.
 For further information, see horde/docs/TRANSLATIONS.
@@ -48,60 +48,60 @@

 Please report any bugs to i...@lists.horde.org.
 

-Any commands can be called with {{translation.php COMMAND help}} for  
further information.
+Any commands can be called with {{horde-translation COMMAND help}}  
for further information.


 +++ Making a Translation

 ++ Intialize/Merge the Translation

 If this is the first time, run:

 
-php translation.php init --module=MODULE --locale=xx_XX
+php horde-translation init --module=MODULE --locale=xx_XX
 

 where MODULE is the module folder and xx_XX is the locale (country  
and language code), e.g. en_GB or es_ES


 If you didn't create one before, build the compendium with all  
existing translations for the locale from other Horde applications:


 
-php translation.php compendium --locale=xx_XX
+php horde-translation compendium --locale=xx_XX
 

 Finally, try to get as many translations as possible from the  
compendium into the new translation:


 
-php translation.php merge --module=MODULE --locale=xx_XX
+php horde-translation merge --module=MODULE --locale=xx_XX
 

 ++ Edit and Update the Translation

 Create the compendium file (do this one time only):

 
-php translation.php compendium --locale=xx_XX
+php horde-translation compendium --locale=xx_XX
 

 Clean up obsolete entries:

 
-php translation.php cleanup
+php horde-translation cleanup
 

 Prepare the file to edit:

 
-php translation.php update --module=MODULE --locale=xx_XX
+php horde-translation update --module=MODULE --locale=xx_XX
 

-Edit the translation file //horde/MODULE/po/xx_XX// using a suitable  
gettext editing program, such as KBabel or poedit and save the file.
+Edit the translation file  
{{horde/MODULE/locale/xx_XX/LC_MESSAGES/module.po}} using a suitable  
gettext editing program, such as KBabel or poedit and save the file.


 Compile the translation:

 
-php translation.php make
+php horde-translation make
 

 If you want to see the changes right away, restart the http server  
(i.e. //service httpd restart// in Fedora, CentOS and similar OSes).


@@ -109,21 +109,21 @@

 First extract all new and changed entries from the English XML help  
file and merge them with the existing ones:


 
-php translation.php update-help --module=MODULE --locale=xx_XX
+php horde-translation update-help --module=MODULE --locale=xx_XX
 

 Then edit the help file for the necessary language using a text editor or vi:

 
-$ vi horde/easyacdc/locale/xx_XX/help.xml
+$ vi horde/MODULE/locale/xx_XX/help.xml
 

 Finally:

 
-php translation.php make-help --module=MODULE --locale=xx_XX
+php horde-translation make-help --module=MODULE --locale=xx_XX
 

 ++ Translating framework modules


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/TranslationH4

2011-05-19 Thread Wiki Guest

guest [213.197.150.2]  Thu, 19 May 2011 10:34:52 +

Modified page: http://wiki.horde.org/Doc/Dev/TranslationH4
New Revision:  1.2
Change log:  this is not PHP

@@ -8,9 +8,9 @@

 See also {{horde/docs/TRANSLATIONS}}.

 + The Translation Script
-
+
 $ php horde/bin/horde-translation

 Usage: horde-translation [options] command [command-options]
horde-translation [help|-h|--help] [command]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] attachment: WikiPage, HACKED GODOOT

2011-05-19 Thread Wiki Guest

guest [78.163.141.164]  Thu, 19 May 2011 10:44:53 +

New attachment "HACKED GODOOT" to page "WikiPage". View page:  
http://wiki.horde.org/WikiPage


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-05-19 Thread Wiki Guest

guest [46.5.211.236]  Thu, 19 May 2011 15:25:52 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.81
Change log:  Added WP7 compatibility

@@ -46,8 +46,9 @@
 || !TouchDown For Droid || Version 5.1.0028 || Yes || Yes ||  
Contacts, Calendar (You can **create** recurring events, but cannot  
edit them. See Touchdown website for details), and Tasks. ||
 || iPod Touch / iPad / iPhone || 3.1.3 || Yes || Yes || Contacts and  
Calendar ||

 || Windows Mobile Device || 6.1 || ? || ? || Contacts reported to work. ||
 || Windows Mobile Emulator || 6.5 || Yes || Yes || Contacts,  
Calendars (with proper support for recurring events and exceptions),  
and Tasks. ||

+|| Windows Phone 7 || 7.0 || ? || ? || Contacts, Calendars ||
 || Nokia E90 || !MfE 3.0 || ? || ? || Contacts verified to work. ||
 || Nokia N900 || Maemo 1.3 || No || ? || Client fails to send  
standard post variables, but Horde works around this. Contacts  
verified to work. Earlier versions of firmware are either completely  
broken, or only support !ActiveSync version 12.1. ||


 ++ Setting up the device

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-05-23 Thread Wiki Guest

guest [213.211.195.26]  Mon, 23 May 2011 11:23:24 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.82
Change log:  iOS Version

@@ -43,9 +43,9 @@
 || Motorola Droid || 2.0.1, 2.1, 2.2 || No (See above) || No native  
support, but the //Corporate Directory// app in the Marketplace works  
well. || Contacts and Calendar data, though the calendar does not  
issue PING requests, and does not seem to properly support exceptions  
to recurring events. On Froyo/2.2 SSL connections will NOT work with a  
self signed certificate even if the "Accept All Certificates" checkbox  
is selected. See  
http://www.google.com/support/forum/p/android/thread?tid=45e6836618212fdf&hl=en (A (Free) Level One certificate from http://www.startssl.com/ seems to work well  
here).||
 || Motorola Milestone || 2.1, 2.2 || ? || Yes, via //Corporate  
Directory// app || Contacts and Calendar ||
 || HTC Desire Z / HTC Desire HD || 2.2 || ? || ? || Contacts and  
Calendar via native !ActiveSync, SSL untested ||
 || !TouchDown For Droid || Version 5.1.0028 || Yes || Yes ||  
Contacts, Calendar (You can **create** recurring events, but cannot  
edit them. See Touchdown website for details), and Tasks. ||
-|| iPod Touch / iPad / iPhone || 3.1.3 || Yes || Yes || Contacts and  
Calendar ||
+|| iPod Touch / iPad / iPhone || 4.3.3 || Yes || Yes || Contacts and  
Calendar ||

 || Windows Mobile Device || 6.1 || ? || ? || Contacts reported to work. ||
 || Windows Mobile Emulator || 6.5 || Yes || Yes || Contacts,  
Calendars (with proper support for recurring events and exceptions),  
and Tasks. ||

 || Windows Phone 7 || 7.0 || ? || ? || Contacts, Calendars ||
 || Nokia E90 || !MfE 3.0 || ? || ? || Contacts verified to work. ||

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/LegacyApps

2011-05-25 Thread Wiki Guest

guest [99.241.124.193]  Wed, 25 May 2011 14:22:45 +

Modified page: http://wiki.horde.org/Doc/Dev/LegacyApps
New Revision:  1.5
Change log:  Added some examples of how to embed calendars which I  
found very helpful.


@@ -88,4 +88,32 @@
 echo Horde::stylesheetLink('kronolith', 'mozilla');
 

 Such a call would have to happen after the Registry has been  
initialized, and so that the output is echoed in the page's HTML HEAD.

+
+++ Using the calendar widgets to embed calendars
+
+See the help text for more information.  You can select either a  
single calendar or '__all' as the calendar to show all calendars. You  
can also specify the time period as well, just pass the same parameter  
name the block uses in the query parameters.

+
+Example upcoming events (monthlist) - show 2 months worth of events,  
but with a max. of 10 events:

+
+
++src="http://host.example.com/horde/services/imple.php?imple=Embed/impleApp=kronolith/view=monthlist/calendar=calendar_name/container=kronolist/months=2/  
maxevents=10"
+type="text/javascript">
+
+
+Summary view (show 7 days worth of events only with alarms but only  
show up to 20 events max):

+
+
+ http://hostname.example.com/horde/services/imple.php?imple=Embed/impleApp=kronolith/container=kronosummary/view=summary/calendar=calendar_name/days=7/maxvents=20/alarms=1";>
+
+
+Summary view (show 7 days worth of events only with alarms but only  
show up to 20 events max) but with all shared calendars instead of one  
specific calendar:

+
+
+ http://hostname.example.com/horde/services/imple.php?imple=Embed/impleApp=kronolith/container=kronosummary/view=summary/__all/days=7/maxvents=20/alarms=1";>
+
+
+The summary view makes a listing of upcoming events that can be used  
as an agenda and which prints nicely on 8.5X11 paper.


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Permissions

2011-05-25 Thread Wiki Guest

guest [99.241.124.193]  Wed, 25 May 2011 14:36:01 +

Modified page: http://wiki.horde.org/Doc/Permissions
New Revision:  1.7
Change log:  Removed similar content and referenced other location.

@@ -49,33 +49,9 @@


 +++How to embed Calendar into a webpage

-Administration section:
-
-Horde apllication :
-Guest   --> show read
-All Authenticated Users --> show read edit delete
-
-Kronolith application :
-Guest   --> show read
-All Authenticated Users --> show read edit delete
-
-
-
-
-http://yourdomain.com/horde/kronolith/imple.php?imple=Embed/container=kronolithCal/view=month/calendar=9977f86209fc4164ca044738a12cd9c5";
-type="text/javascript">
-
-
-To embed a summary view:
-
-
-http://yourdomain.com/horde/kronolith/imple.php?imple=Embed/container=kronolithCal2/view=summary/calendar=9977f86209fc4164ca044738a12cd9c5";>
-
-
+See the kronolith help file and ((Doc/Dev/LegacyApps|Using Horde from  
a custom website or application)) and especially the section entitled  
"Using the calendar widgets to embed calendars"


 +++ I'd like to know what the various permissions mean for the Horde  
 application.  What do Show, Read, Edit, and Delete mean in the Horde  
context?


 In the Horde context, the only meaningful permission is READ or the

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/TranslationH4

2011-05-27 Thread Wiki Guest

guest [78.56.205.147]  Fri, 27 May 2011 20:31:39 +

Modified page: http://wiki.horde.org/Doc/Dev/TranslationH4
New Revision:  1.3
Change log:  Pretty important notes on the script. docs/TRANSLATIONS  
needs update badly too.


@@ -6,8 +6,11 @@

 This document is intended to help developers translate Horde 4  
modules using the **/horde/bin/horde-translation** script.


 See also {{horde/docs/TRANSLATIONS}}.
+
++ Before you begin
+horde-translation script is designed to be run on checked out git  
tree, **not** the released versions. So if you didn't do so, make sure  
you have the latest development version for the desired branch by  
following these [http://www.horde.org/development/git directions].


 + The Translation Script
 
 $ php horde/bin/horde-translation

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: vcard version

2011-05-29 Thread Wiki Guest

guest [68.28.91.118]  Sun, 29 May 2011 11:00:17 +

Created page: http://wiki.horde.org/vcard+version

Jaymezsims

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: Doc/Dev/Component/Horde_Test

2011-06-09 Thread Wiki Guest

guest [92.231.157.234]  Thu, 09 Jun 2011 12:58:04 +

Created page: http://wiki.horde.org/Doc/Dev/Component/Horde_Test

+ Anatomy of a Horde test suite

++ Introduction

The Horde Project has always had high standards when it comes to code  
quality. Of course these standards evolved with time and also with the  
progress the PHP community made. The code from  
[ftp://ftp.horde.org/pub/imp/imp-1.0.0.tar.gz IMP-1.0.0 (1998)] didn't  
come with unit tests. And somehow it lacked classes. And there is an  
awful lot of code mixed with HTML. Somehow this looks horribly like  
PHP3.


Oh, it **was** PHP3.

Of course PHP development changed over time and so did the Horde  
project. Nowadays each and every commit into [http://git.horde.org our  
repository] leads to the automatic execution of thousands of unit  
tests written by the Horde developers and they check our code for  
failures. Night and day [http://ci.horde.org our continuous  
integration server] broadcasts the current test status to us in  
particular but also to anyone else interested.


With the release of Horde 4 the test suite structure of the Horde  
components available via [http://pear.horde.org our PEAR server] look  
all very similar. There are certain Do's and Don'ts and a lot of  
playground in between. Often the ``Horde_Test`` component is involved.  
So it makes sense to associate the overview on the anatomy of Horde  
test suites with this particular module.


++ Filesystem structure of a test suite

... to be continued ...

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncMLDevicesFileFormats

2011-06-16 Thread Wiki Guest

guest [153.100.131.14]  Thu, 16 Jun 2011 09:06:48 +

Modified page: http://wiki.horde.org/SyncMLDevicesFileFormats
New Revision:  2.0
Change log:  Neues Beispiel: HTC Desire HD

@@ -374,8 +374,49 @@
 BDAY:20060930
 X-IRMC-LUID:00020053
 END:VCARD
 
+
 HTC Desire HD Example (Android 2.3) with Funambol  Client v10.0.2
+BEGIN:VCARD
+VERSION:2.1
+N:Tnachname;Testname;;;
+NICKNAME:Nick
+ADR;HOME:Pfach;Nachb;Proad;Port;Pland;03;Land
+ADR:Zg;Dg;Aroad;Aort;Aland;33;Ggj
+BDAY:1900-00-14
+TEL;VOICE;HOME:00421
+TEL;PREF;VOICE:88992
+TEL;FAX:
+TEL;VOICE:0815
+TEL;CELL:0177
+TEL;FAX;HOME:004213
+TEL;PAGER:555
+EMAIL;INTERNET;HOME;X-FUNAMBOL-INSTANTMESSENGER:im0
+EMAIL;INTERNET;HOME:mp@de.de
+EMAIL;INTERNET:ms@de.de
+URL:google.de
+URL;HOME:http://www.bellosbude.de
+X-ANNIVERSARY:2011-06-16
+ADR;WORK:Gg;Tt;Broad;Bort;Bland;523531;Zz
+TITLE:Technik
+ORG:Rwe;Zlt
+TEL;WORK;PREF:1974
+TEL;VOICE;WORK:0
+TEL;FAX;WORK:03
+EMAIL;INTERNET;WORK:ma@de.de
+URL;WORK:rrr.de
+NOTE:Notiz
+PHOTO;ENCODING=BASE64;TYPE=image/png:
+ iVBORw0KGgoNSUhEUgAAAGBgCAYAAADimHc4BHNCSVQICAgIfAhkiAAAIABJREF
+... and so on
+X-FUNAMBOL-CHILDREN:
+X-SPOUSE:
+UID:
+TZ:
+REV:
+GEO:
+END:VCARD

 ++ Getting your device's file format

 If you have been asked for the format that your device sends data  
in, you need to perform a sync of the kind of data in question. To get  
a dump of the device data, create an address entry (or an event, or  
...) with all features (as many device fields filled in as possible).  
Then do a sync. Within /tmp/sync then do:


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncMLDevicesFileFormats

2011-06-16 Thread Wiki Guest

guest [153.100.131.14]  Thu, 16 Jun 2011 09:11:15 +

Modified page: http://wiki.horde.org/SyncMLDevicesFileFormats
New Revision:  2.1
Change log:  Codeblock statt Text

@@ -376,8 +376,9 @@
 END:VCARD
 

 +++ HTC Desire HD Example (Android 2.3) with Funambol  Client v10.0.2
+
 BEGIN:VCARD
 VERSION:2.1
 N:Tnachname;Testname;;;
 NICKNAME:Nick
@@ -415,8 +416,9 @@
 TZ:
 REV:
 GEO:
 END:VCARD
+

 ++ Getting your device's file format

 If you have been asked for the format that your device sends data  
in, you need to perform a sync of the kind of data in question. To get  
a dump of the device data, create an address entry (or an event, or  
...) with all features (as many device fields filled in as possible).  
Then do a sync. Within /tmp/sync then do:


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: edit spell check

2011-06-16 Thread Wiki Guest

guest [66.226.42.104]  Thu, 16 Jun 2011 18:43:56 +

Created page: http://wiki.horde.org/edit+spell+check

LLC

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncMLCompatTable

2011-06-16 Thread Wiki Guest

guest [94.195.22.95]  Fri, 17 Jun 2011 03:10:53 +

Modified page: http://wiki.horde.org/SyncMLCompatTable
New Revision:  2.4
Change log:  Blackberry + Horde 4

@@ -9,8 +9,9 @@
 +++ Mobile client
 ||~ Platform ||~ Plugin Brand ||~ Version ||~ Price ||~ Horde  
version||~ Contacts||~ Calendar||~ Memos||~ Tasks||~ Bookmarks||~  
E-mail||~ Notes||
 || Android 2.1 || Funambol || 8.7.3 || Free || 3.3.8 || NOK || NOK  
|| NOK || NOK || - || - || "Network Error" with both HTTP and HTTPS ||
 || Blackberry || Funambol || 8.7.1 || Free || 3.3.8 || NOK || NOK ||  
NOK || NOK || - || - || Error: Invalid URL ||
+|| Blackberry || Funambol || 10.0 || Free || 4.0.6 || OK || OK || OK  
|| OK || - || - || Mostly works, but problems with some events ||
 || iPhone || Synthesis Pro || 1.0.0 || 12$ || 3.3.8 || OK || OK ||  
NOK || NOK || - || - || Must activate "Ignore SSL error" for contacts.  
And specify server path= calendar for Calendar ||
 || iPhone || Synthesis || 1.0.0 || Free || 3.3.8 || OK || NOK || NOK  
|| NOK || - || - || Must activate "Ignore SSL error" for contacts||
 || iPhone || Funambol || 8.7.0 || Free || 3.3.8 || OK || NOK || NOK  
|| NOK || - || - || HTTPS does not work, only HTTP ||
 || Windows Mobile 6.5|| Funambol || 8.7.2 || Free || 3.3.8 || OK ||  
OK || OK || OK || - || - || Works "out of the box" ||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: FAQ/user/print.php

2011-06-20 Thread Wiki Guest

guest [59.162.23.4]  Mon, 20 Jun 2011 10:00:49 +

Created page: http://wiki.horde.org/FAQ/user/print.php

hi

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: sent mail folder

2011-06-20 Thread Wiki Guest

guest [24.190.64.162]  Mon, 20 Jun 2011 19:30:44 +

Created page: http://wiki.horde.org/sent+mail+folder

Sent Mail

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: SyncHowTo

2011-06-22 Thread Wiki Guest

guest [87.79.196.46]  Wed, 22 Jun 2011 17:58:51 +

Modified page: http://wiki.horde.org/SyncHowTo
New Revision:  5.18
Change log:  Added Nokia E61 to compatibility list

@@ -43,9 +43,9 @@

 * Synthesis client
 * Sony Ericsson P800, P900, K800i, C902i, J105i (Naite)
 * Outlook with Funambol !SyncClient PIM outlook 3.0.15
-* Nokia E51, E65, E60, E90, N70, N73, N80, N95, N97mini, E61i, E71,  
5800 !XpressMusic, 6120 Classic, 9500 Communicator
+* Nokia E51, E65, E60, E90, N70, N73, N80, N95, N97mini, E61, E61i,  
E71, 5800 !XpressMusic, 6120 Classic, 9500 Communicator

 * Nokia N900 with Syncevolution
 * Samsung I8910 HD
 * Motorola RAZR v9 (only entries without non-ASCII characters)
 * Windows Mobile /w Funambol client 7.0.8 after some tinkering

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: LocalPref

2011-06-23 Thread Wiki Guest

guest [78.105.6.158]  Thu, 23 Jun 2011 17:39:48 +

Created page: http://wiki.horde.org/LocalPref

+ How-To Create/Edit Local Config Files (.local.php)

First read ((Doc/Dev/Configuration|Configuration Files))


**Being Created by TSM 23/06/2011**

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: LocalPref

2011-06-23 Thread Wiki Guest

guest [78.105.6.158]  Thu, 23 Jun 2011 18:18:39 +

Modified page: http://wiki.horde.org/LocalPref
New Revision:  1.1
Change log:  First Draft

@@ -1,6 +1,89 @@
 + How-To Create/Edit Local Config Files (.local.php)

 First read ((Doc/Dev/Configuration|Configuration Files))

+Applying changes to the files in {{config/}} (does not apply to  
{{conf.php}}) as this is managed though the web-interface and updated  
automatically) directories is not recommended as when you update Horde  
modules these files will be replaced.
+Horde has supplied us a method to get around this problem with local  
overrides which are not overwritten each time the modules are updated.  
There are also other methods such as {{vhosts}} or {{prefs.d/}} which  
this article does not go into directly but the principal is the same.

+
+There are a few ways to add entries into the local files.
+
+* Replace full array entry
+
+/* HTML driver settings */
+$mime_drivers['html'] = array(
+/* NOTE: Inline HTML display is turned OFF by default. */
+'inline' => false,
+'handles' => array(
+'text/html'
+),
+'icons' => array(
+'default' => 'html.png'
+),
+
+/* If you want to limit the display of message data inline for large
+ * messages, set the maximum size of the displayed message here (in
+ * bytes).  If exceeded, the user will only be able to download the
+ * part. Set to 0 to disable this check. */
+'limit_inline_size' => 1048576,
+
+/* Check for phishing exploits? */
+'phishing_check' => true
+);
+
+
+
+* Modify individual entries within the array
+
+$mime_drivers['html']['inline']=true;
+
+
+
+* Merge array to existing array (useful in the case of the format  
seen in mime_drivers.php)

+
+$mime_drivers=array_merge($mime_drivers,array(
+/* Plain text viewer. */
+'plain' => array(
+'inline' => true,
+'handles' => array(
+'application/pgp',
+'text/plain',
+'text/rfc822-headers'
+),
+
+/* If you want to limit the display of message data inline for large
+ * messages, set the maximum size of the displayed message here (in
+ * bytes).  If exceeded, the user will only be able to download the
+ * part. Set to 0 to disable this check. */
+'limit_inline_size' => 1048576,
+
+/* If you want to scan ALL incoming text/plain messages for UUencoded
+ * data, set the following to true. This is very performance  
intensive

+ * and can take a long time for large messages. It is not recommended
+ * (as UUencoded data is rare these days) and is disabled by
+ * default. */
+'uudecode' => false
+),
+
+/* HTML driver settings */
+'html' => array(
+/* NOTE: Inline HTML display is turned OFF by default. */
+'inline' => false,
+'handles' => array(
+'text/html'
+),
+'icons' => array(
+'default' => 'html.png'
+),
+
+/* If you want to limit the display of message data inline for large
+ * messages, set the maximum size of the displayed message here (in
+ * bytes).  If exceeded, the user will only be able to download the
+ * part. Set to 0 to disable this check. */
+'limit_inline_size' => 1048576,
+
+/* Check for phishing exploits? */
+'phishing_check' => true
+)
+));
+

-**Being Created by TSM 23/06/2011**

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowTo

2011-06-23 Thread Wiki Guest

guest [78.105.6.158]  Thu, 23 Jun 2011 18:20:17 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.89
Change log:  Added LocalPref entry to general

@@ -48,8 +48,9 @@
 * [MimeMagic Getting mime_magic, and fileinfo working on RHEL and  
Fedora Core 4]

 * [QuickDatabase Script for creating database(postgres)]
 * [RemoveUserData Removing user data]
 * [MemcacheLockCleanup Script for cleaning memcache lock files  
(Horde versions < 3.2)]

+* [LocalPref How-To Create/Edit Local Config Files (.local.php)]

 +++ Setting up Horde_Blocks
 * [MetarWeather Setting up METAR weather to actually return data]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: LocalPref

2011-06-23 Thread Wiki Guest

guest [78.105.6.158]  Thu, 23 Jun 2011 18:22:52 +

Modified page: http://wiki.horde.org/LocalPref
New Revision:  1.2
Change log:  added

@@ -1,14 +1,43 @@
 + How-To Create/Edit Local Config Files (.local.php)
+
+##red|this is a new page and work is in progress, if you have  
anything to add please update##


 First read ((Doc/Dev/Configuration|Configuration Files))

 Applying changes to the files in {{config/}} (does not apply to  
{{conf.php}}) as this is managed though the web-interface and updated  
automatically) directories is not recommended as when you update Horde  
modules these files will be replaced.
 Horde has supplied us a method to get around this problem with local  
overrides which are not overwritten each time the modules are updated.  
There are also other methods such as {{vhosts}} or {{prefs.d/}} which  
this article does not go into directly but the principal is the same.


 There are a few ways to add entries into the local files.

-* Replace full array entry
+
+* Replace full array
+
+$mime_drivers = array(
+/* HTML driver settings */
+'html' => array(
+/* NOTE: Inline HTML display is turned OFF by default. */
+'inline' => false,
+'handles' => array(
+'text/html'
+),
+'icons' => array(
+'default' => 'html.png'
+),
+
+/* If you want to limit the display of message data inline for large
+ * messages, set the maximum size of the displayed message here (in
+ * bytes).  If exceeded, the user will only be able to download the
+ * part. Set to 0 to disable this check. */
+'limit_inline_size' => 1048576,
+
+/* Check for phishing exploits? */
+'phishing_check' => true
+)
+);
+
+
+* Replace individual array entry
 
 /* HTML driver settings */
 $mime_drivers['html'] = array(
 /* NOTE: Inline HTML display is turned OFF by default. */

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: WikiHome

2011-07-05 Thread Wiki Guest

guest [111.118.131.100]  Tue, 05 Jul 2011 12:02:51 +

Modified page: http://wiki.horde.org/WikiHome
New Revision:  1.2
Change log:  link

@@ -18,4 +18,5 @@

 ++ Older Topics

 * ((Horde3Development|Horde 3 Development Guidelines))
+* [http://www.hostgatorcouponsreview.com HostGator Coupons]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: UserInterface

2011-07-05 Thread Wiki Guest

guest [111.118.131.100]  Tue, 05 Jul 2011 12:04:45 +

Modified page: http://wiki.horde.org/UserInterface
New Revision:  2.13
Change log:  add reference

@@ -82,4 +82,5 @@

 * [http://advogato.org/article/374.html How non-programmers use  
documentation]
 * [http://www.research.ibm.com/remail/ IBM's Reinvented Email Client  
Prototype]
 * [http://hf.tc.faa.gov/technotes/dot-faa-ct-tn04-23.pdf FAA's  
Web-Based Portal Computer-Human Interface Guidelines]
+*  
[http://www.thegrizasonline.com/inmotion-hosting-review-inmotion-hosting-coupon InMotion  
Review]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: InterestingLinks

2011-07-05 Thread Wiki Guest

guest [111.118.131.100]  Tue, 05 Jul 2011 12:06:09 +

Modified page: http://wiki.horde.org/InterestingLinks
New Revision:  8.11
Change log:  Good links

@@ -58,5 +58,7 @@
 * [http://www.einfach-fuer-alle.de/artikel/formulare/ Tutorial:  
Bessere Formulare - Ein Tutorial in vier Teilen]
 * [http://www.hisoftware.com/access/valueadd9.html Accessible Form  
Creator - allows you to create forms for web sites containing all the  
additional markup required to make the forms accessible under Section  
508 standards and the !W3C WCAG 1.0 Priority 1-3 Guidelines.]
 * [http://www.tele-pro.co.uk/scripts/contact_form/ Contact Form  
Generator - The free Website Contact Form Generator utility enables  
you to create form-to-email scripts for your ASP, PHP or Perl web site  
with no programming skills needed.]
 * [http://phpfmg.sourceforge.net/home.php PHP !FormMail Generator -  
A tool to create ready-to-use web forms in a flash. Once the form has  
been generated, you have a full functional web form. Including error  
checking of required fields, email address validation, credit card  
number & expiry date checking, multiple attachments sending, and email  
auto responding.]

+*[http://www.hostgatorcouponsreview.com HostGator Coupons]
+*[http://www.thegrizasonline.com/inmotion-hosting-review-inmotion-hosting-coupon InMotion  
Review]
 *  
[http://www.1street.de/osc/catalog/product_info.php?cPath=29&products_id=29 -  
Visual Form Maker - Webformulare (PHP/HTML) Webformulare, PHP  
Formulare (mySQL, E-Mail) visuell gestalten! - Freeware]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: InterestingLinks

2011-07-05 Thread Wiki Guest

guest [111.118.131.100]  Tue, 05 Jul 2011 12:07:04 +

Modified page: http://wiki.horde.org/InterestingLinks
New Revision:  8.12
Change log:  change

@@ -58,7 +58,7 @@
 * [http://www.einfach-fuer-alle.de/artikel/formulare/ Tutorial:  
Bessere Formulare - Ein Tutorial in vier Teilen]
 * [http://www.hisoftware.com/access/valueadd9.html Accessible Form  
Creator - allows you to create forms for web sites containing all the  
additional markup required to make the forms accessible under Section  
508 standards and the !W3C WCAG 1.0 Priority 1-3 Guidelines.]
 * [http://www.tele-pro.co.uk/scripts/contact_form/ Contact Form  
Generator - The free Website Contact Form Generator utility enables  
you to create form-to-email scripts for your ASP, PHP or Perl web site  
with no programming skills needed.]
 * [http://phpfmg.sourceforge.net/home.php PHP !FormMail Generator -  
A tool to create ready-to-use web forms in a flash. Once the form has  
been generated, you have a full functional web form. Including error  
checking of required fields, email address validation, credit card  
number & expiry date checking, multiple attachments sending, and email  
auto responding.]

-*[http://www.hostgatorcouponsreview.com HostGator Coupons]
-*[http://www.thegrizasonline.com/inmotion-hosting-review-inmotion-hosting-coupon InMotion  
Review]

+* [http://www.hostgatorcouponsreview.com HostGator Coupons]
+*  
[http://www.thegrizasonline.com/inmotion-hosting-review-inmotion-hosting-coupon InMotion  
Review]
 *  
[http://www.1street.de/osc/catalog/product_info.php?cPath=29&products_id=29 -  
Visual Form Maker - Webformulare (PHP/HTML) Webformulare, PHP  
Formulare (mySQL, E-Mail) visuell gestalten! - Freeware]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-07-05 Thread Wiki Guest

guest [193.138.123.31]  Tue, 05 Jul 2011 15:03:51 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.86
Change log:  WebOS added to Device List

@@ -39,8 +39,9 @@

 This code has been reported to work on the following devices:
 || Device || Version(s) || Provisioning || GAL Searching || Notes ||
 || Android SDK Emulator|| 2.0.1 and 2.1 || Does NOT support  
provisioning and will NOT work with it set to //Force//.|| No native  
support. || Contacts only as the emulator does not have a native  
calendar application ||
+|| HP WebOS || 2.1.0 || Yes || ? || Contracts, Calender are working,  
SSL untested ||
 || HTC Desire Z / HTC Desire HD || 2.2 || ? || ? || Contacts and  
Calendar via native !ActiveSync, SSL untested ||

 || HTC Magic || Android 2.2.1 unbranded || ? || ? || Contacts, Calendars ||
 || iPod Touch / iPad / iPhone || 3.1.3, 4.3.3 || Yes || Yes ||  
Contacts and Calendar ||
 || Motorola Droid || 2.0.1, 2.1, 2.2 || No (See above) || No native  
support, but the //Corporate Directory// app in the Marketplace works  
well. || Contacts and Calendar data, though the calendar does not  
issue PING requests, and does not seem to properly support exceptions  
to recurring events. On Froyo/2.2 SSL connections will NOT work with a  
self signed certificate even if the "Accept All Certificates" checkbox  
is selected. See  
http://www.google.com/support/forum/p/android/thread?tid=45e6836618212fdf&hl=en (A (Free) Level One certificate from http://www.startssl.com/ seems to work well  
here).||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-07-05 Thread Wiki Guest

guest [193.138.123.31]  Tue, 05 Jul 2011 15:04:33 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.87
Change log:  WebOS Typo

@@ -39,9 +39,9 @@

 This code has been reported to work on the following devices:
 || Device || Version(s) || Provisioning || GAL Searching || Notes ||
 || Android SDK Emulator|| 2.0.1 and 2.1 || Does NOT support  
provisioning and will NOT work with it set to //Force//.|| No native  
support. || Contacts only as the emulator does not have a native  
calendar application ||
-|| HP WebOS || 2.1.0 || Yes || ? || Contracts, Calender are working,  
SSL untested ||
+|| HP !WebOS || 2.1.0 || Yes || ? || Contracts, Calender are working,  
SSL untested ||
 || HTC Desire Z / HTC Desire HD || 2.2 || ? || ? || Contacts and  
Calendar via native !ActiveSync, SSL untested ||

 || HTC Magic || Android 2.2.1 unbranded || ? || ? || Contacts, Calendars ||
 || iPod Touch / iPad / iPhone || 3.1.3, 4.3.3 || Yes || Yes ||  
Contacts and Calendar ||
 || Motorola Droid || 2.0.1, 2.1, 2.2 || No (See above) || No native  
support, but the //Corporate Directory// app in the Marketplace works  
well. || Contacts and Calendar data, though the calendar does not  
issue PING requests, and does not seem to properly support exceptions  
to recurring events. On Froyo/2.2 SSL connections will NOT work with a  
self signed certificate even if the "Accept All Certificates" checkbox  
is selected. See  
http://www.google.com/support/forum/p/android/thread?tid=45e6836618212fdf&hl=en (A (Free) Level One certificate from http://www.startssl.com/ seems to work well  
here).||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-07-05 Thread Wiki Guest

guest [193.138.123.31]  Tue, 05 Jul 2011 15:19:31 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.89
Change log:  WebOS Tasks successful tested

@@ -39,9 +39,9 @@

 This code has been reported to work on the following devices:
 || Device || Version(s) || Provisioning || GAL Searching || Notes ||
 || Android SDK Emulator|| 2.0.1 and 2.1 || Does NOT support  
provisioning and will NOT work with it set to //Force//.|| No native  
support. || Contacts only as the emulator does not have a native  
calendar application ||
-|| HP !WebOS || 2.1.0 || Yes || ? || Contacts, Calendar are working,  
SSL untested ||
+|| HP !WebOS || 2.1.0 || Yes || ? || Contacts, Calendar, Tasks are  
working, SSL untested ||
 || HTC Desire Z / HTC Desire HD || 2.2 || ? || ? || Contacts and  
Calendar via native !ActiveSync, SSL untested ||

 || HTC Magic || Android 2.2.1 unbranded || ? || ? || Contacts, Calendars ||
 || iPod Touch / iPad / iPhone || 3.1.3, 4.3.3 || Yes || Yes ||  
Contacts and Calendar ||
 || Motorola Droid || 2.0.1, 2.1, 2.2 || No (See above) || No native  
support, but the //Corporate Directory// app in the Marketplace works  
well. || Contacts and Calendar data, though the calendar does not  
issue PING requests, and does not seem to properly support exceptions  
to recurring events. On Froyo/2.2 SSL connections will NOT work with a  
self signed certificate even if the "Accept All Certificates" checkbox  
is selected. See  
http://www.google.com/support/forum/p/android/thread?tid=45e6836618212fdf&hl=en (A (Free) Level One certificate from http://www.startssl.com/ seems to work well  
here).||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ActiveSync

2011-07-07 Thread Wiki Guest

guest [193.138.123.31]  Thu, 07 Jul 2011 15:29:58 +

Modified page: http://wiki.horde.org/ActiveSync
New Revision:  1.90
Change log:  DeviceList: WebOS, changed comment for SSL

@@ -39,9 +39,9 @@

 This code has been reported to work on the following devices:
 || Device || Version(s) || Provisioning || GAL Searching || Notes ||
 || Android SDK Emulator|| 2.0.1 and 2.1 || Does NOT support  
provisioning and will NOT work with it set to //Force//.|| No native  
support. || Contacts only as the emulator does not have a native  
calendar application ||
-|| HP !WebOS || 2.1.0 || Yes || ? || Contacts, Calendar, Tasks are  
working, SSL untested ||
+|| HP !WebOS || 2.1.0 || Yes || ? || Contacts, Calendar, Tasks are  
working, for SSL with a private certificate you have to trust the  
certificate in the browser ||
 || HTC Desire Z / HTC Desire HD || 2.2 || ? || ? || Contacts and  
Calendar via native !ActiveSync, SSL untested ||

 || HTC Magic || Android 2.2.1 unbranded || ? || ? || Contacts, Calendars ||
 || iPod Touch / iPad / iPhone || 3.1.3, 4.3.3 || Yes || Yes ||  
Contacts and Calendar ||
 || Motorola Droid || 2.0.1, 2.1, 2.2 || No (See above) || No native  
support, but the //Corporate Directory// app in the Marketplace works  
well. || Contacts and Calendar data, though the calendar does not  
issue PING requests, and does not seem to properly support exceptions  
to recurring events. On Froyo/2.2 SSL connections will NOT work with a  
self signed certificate even if the "Accept All Certificates" checkbox  
is selected. See  
http://www.google.com/support/forum/p/android/thread?tid=45e6836618212fdf&hl=en (A (Free) Level One certificate from http://www.startssl.com/ seems to work well  
here).||


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ

2011-07-15 Thread Wiki Guest

guest [213.197.150.2]  Fri, 15 Jul 2011 12:04:27 +

Modified page: http://wiki.horde.org/FAQ
New Revision:  7.20
Change log:  FAQ has three sections

@@ -5,9 +5,9 @@
 ##red|Some parts of these FAQs are not up-to-date with the latest  
release versions, but most answers and questions still apply to the  
currently stable application versions.  You should also check the  
((HowTo|Horde How To Page)) for information involving the latest  
release versions.##




-Welcome to the Frequently-Asked Questions list of the  
[http://www.horde.org/ Horde Project]. The FAQ is divided into two  
sections. One section addresses questions frequently asked by systems  
administrators regarding the installation, configuration, and  
day-to-day operation of Horde and its components. The other section  
addresses the questions that are regularly asked by users of Horde.
+Welcome to the Frequently-Asked Questions list of the  
[http://www.horde.org/ Horde Project]. The FAQ is divided into three  
sections. First section addresses questions frequently asked by  
systems administrators regarding the installation, configuration, and  
day-to-day operation of Horde and its components. The second section  
addresses the questions that are regularly asked by users of Horde.  
And the third section addresses questions rised by Horde developers.




 Comments on the FAQ, and suggestions for additions (preferably with  
answers!) are [http://www.horde.org/mailto.php/faq welcome]. If you  
have a question about how to install, configure, run, or use Horde or  
any of its components. please send it to the appropriate  
[http://www.horde.org/mail/ mailing list].


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/ThemesH4

2011-07-16 Thread Wiki Guest

guest [77.189.30.192]  Sat, 16 Jul 2011 19:58:19 +

Modified page: http://wiki.horde.org/Doc/Dev/ThemesH4
New Revision:  2.2
Change log:  .wav suffix instead of prefix

@@ -57,9 +57,9 @@
 +++ Sounds

 Sounds live in the {{sounds/}} folder of your theme's base directory.

-Sounds must be in WAV format (with a {{.wav}} file prefix).
+Sounds must be in WAV format (with a {{.wav}} file suffix).

 +++ Information File

 **##red|This file is only needed in the horde theme directory. It is  
not needed in an applications's theme directory##**


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: Doc/Dev/ConversionH4

2011-07-18 Thread Wiki Guest

guest [78.56.205.147]  Mon, 18 Jul 2011 19:41:08 +

Modified page: http://wiki.horde.org/Doc/Dev/ConversionH4
New Revision:  1.20
Change log:  add LIMIT/OFFSET conversion

@@ -76,8 +76,9 @@
 || getAssoc()|| selectAssoc() (only with 2  
columns)  ||
 || getCol()  || selectValues()
||
 || getOne()  || selectValue() 
||
 || getRow()  || selectOne()   
||
+|| setLimit()|| addLimitOffset()   
   ||


 select() return a statement object from the SQL query.

 ++ Error Handling

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowTo

2011-07-21 Thread Wiki Guest

guest [59.167.157.243]  Thu, 21 Jul 2011 10:19:46 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.94
Change log:  Add Turba Extra Email addresses

@@ -97,8 +97,9 @@
 +++ Turba [http://www.horde.org/turba/]
 * [TurbaOutlook2003 Configuring Turba to use the same fields as Outlook 2003]
 * [TurbaCustomFields Using custom field types in Turba]
 * [TurbaImportAddressBook Importing external address book data (IMP 2)]
+* [TurbaExtraFields Storing Extra Email Addresses in Turba with SQL Backend]

 +++ Sork [http://www.horde.org/sork]
 * [SorkVacationWithGnarwl How to configure vacation module with LDAP  
and Gnarwl]
 * [SorkVacationWithVpopmail How to configure vacation module with  
Vpopmail and Autorespond]


__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: TurbaExtraFields

2011-07-21 Thread Wiki Guest

guest [59.167.157.243]  Thu, 21 Jul 2011 10:43:40 +

Created page: http://wiki.horde.org/TurbaExtraFields

++How to Configure Turba to Display and Store up to 3 Email Addresses

+++Applies to: Turba 3 with a mySQL backend.

This was driven by the need to store 3 email addresses in Turba to  
ActiveSync with Apple iOS devices, which store up to 3 email addresses  
per contact.


The default SQL backend defined in backends.php defines only one email  
address:


'email' => 'object_email'


However this is made easier by the fact that  
turba/config/attributes.php defines multiple emails as follows:



/* Communication. */
$attributes['email'] = array(
'label' => _("Email"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => false, 'strip_domain' =>  
false, 'link_compose' => true)

);
$attributes['workEmail'] = array(
'label' => _("Work Email"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => false, 'strip_domain' =>  
false, 'link_compose' => true)

);
$attributes['homeEmail'] = array(
'label' => _("Home Email"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => false, 'strip_domain' =>  
false, 'link_compose' => true)

);


If you want them displayed with different names then create a  
'turba/config/attributes.local.php' file (so your changes don't get  
overwritten in upgrades) and rename the 'label' entries, e.g.:



$attributes['workEmail'] = array(
'label' => _("Email 3"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => false, 'strip_domain' =>  
false, 'link_compose' => true)

);


Next you will need somewhere to put those email addresses in your  
backend, and you will need to tell Turba about those places in your  
backend.


In backends.local.php map the extra email attributes to some new SQL fields:


'email' => 'object_email',
'homeEmail' => 'object_email2',
'workEmail' => 'object_email3',


In mySQL create those extra fields - 'object_email3' and  
'object_email2' as varchar(255) and add indexes to speed up searching.  
I use WebMin to manage my server, so adding them is all GUI based. You  
can of course use console 'mysql' commands, that's up to you!


You now have storage for 3 email addresses in your backend, Turba has  
definitions for them, and knows where to store them. If you have tabs  
in your contacts display you will need to add the extra fields so they  
show up on the tab. My Communications tab is set up as follows:



_("Communications") => array('email', 'homeEmail', 'workEmail',  
'homePhone', 'workPhone', 'cellPhone', 'fax', 'pager')



I have relabelled mine so they show as "Email", "Email 2", and "Email 3".

You will also need to modify the search array in backends.local.php  
for the SQL data source:



'search' => array(
  'name',
  'email',
  'homeEmail',
  'workEmail'
),


That will make those fields searchable so that Imp can autocomplete  
email addresses from them.


Hope that helps!

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: how to make horde acount

2011-07-25 Thread Wiki Guest

guest [93.86.193.106]  Mon, 25 Jul 2011 15:38:26 +

Created page: http://wiki.horde.org/how+to+make+horde+acount

[[toc]]

+ Project Name

Project summary and goal. Please include what the scope of the project  
is, what applications or libraries it touches, and what it is intended  
to accomplish at a minimum.


++ Bugs

List any tickets on http://bugs.horde.org/ that cover this issue or  
are relevant to it.


++ People

Who is or might be involved in this project? Who can answer questions  
about it, either about a specific technology (iCalendar) or about a  
specific part of Horde (Kronolith)?


++ Description

Detailed project description. Include implementation steps, current  
status, plan, etc.


++ Resources

Include links to protocol descriptions, specifications, RFCs, external  
applications, presentations on http://horde.org/papers/ or elsewhere  
that are relevant, articles, API docs from http://dev.horde.org/ -  
anything that might be useful to someone working on this.




Back to the ((Projects|Project List))

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: autoreply

2011-08-02 Thread Wiki Guest

guest [85.59.89.147]  Tue, 02 Aug 2011 16:14:05 +

Created page: http://wiki.horde.org/autoreply

proves de autoreply

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: AltH4Quota

2011-08-09 Thread Wiki Guest

guest [146.164.76.15]  Tue, 09 Aug 2011 17:38:48 +

Created page: http://wiki.horde.org/AltH4Quota

[[toc]]
+++ Notes
**IMP 5, Horde 4**
**Modifies traditional and dynamic views to display quotas**.

This describes modifications to IMP 5.0.8 (Horde 4.0.7) quota \
to use two different devices (file systems) with quota enabled. \
One is for INBOX and the other is for IMAP folders.

This allows different quota values for INBOX and IMAP folders.

It uses system quota command.

Tested on Debian 6.0 (squeeze), horde-4.0.7 and imp-5.0.8.

+++ Modifications

||~ File ||~ Variables, Function(s) ||
|| imp/config/backends.php || quota ||
|| imp/lib/Quota/Command.php || blocksize, getQuota ||
|| imp/lib/Quota/Base.php || _params, __construct ||
|| imp/lib/Ajax/Queue.php || _quotah, _quotav, generate, quota ||
|| imp/lib/IMP.php || quota, quotaData ||
|| imp/templates/dimp/index.inc || if ($show_quota) ||
|| imp/templates/quota/quota.html ||  ||
|| imp/themes/default/dimp/screen.css || ini header ||
|| imp/js/dimpbase.js || _displayQuota ||


You must modify the nine files. Don't forget to change permission to  
each of them:


chown www-data Command.php

Where www-data is the web user (Apache or equivalent).

You may need to give permission to your web user to execute quota:

chmod  +s  /usr/bin/quota


//Last updated 2011-08-09//

+++ Descriptions

 Configuration example
(imp/config/backends.php)
* Two devices (file systems)

See Comand.php bellow for parameters.
Quota command must support "w" (do not wrap).



$servers['imap'] = array(
...

'quota' => array(
'driver' => 'command',
'params' => array(
'quota_path' => '/usr/bin/quota -w',
'grep_path' => '/bin/grep',
'dev_inbx' =>  
'/dev/disk/by-uuid/734e96a4-af8f-4c83-a12c-4ab11b139a13',

'dev_fldrs' => '/dev/sdb2',
'unit' => 'GB',
)
),
...
);


 Command.php
* blocksize = 1024.
* Have INBOX and IMAP folders in different devices and quota enabled on them.
* Function IMP_Quota_command accepts 2 new parameters:

'**dev_inbx**' (string) [**REQUIRED**] User´s INBOX file system device.
Usually maps to /var/mail, /var/spool/mail. Examples: '/dev/hda6',  
'/dev/sdb2', '/dev/md2', '/dev/mapper/VOL1-VarM'.

'**dev_fldrs**' (string) [**REQUIRED**] User´s home file system device. \

Used for IMAP folders. Usually maps to /home.

Examples: '/dev/hda7', '/dev/sda3', '/dev/md1', '/dev/mapper/VOL2-Home'.
**Obsolete** parameter: partition

* function getQuota:
Function now takes care of exceeded quotas and quota not defined for  
that user.


Backup your original imp/lib/Quota/Command.php and create a new  
Command.php with the following code:


http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (GPL). If you
 * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
 *
 * @author   Eric Rostetter 
 * @category Horde
 * @license  http://www.fsf.org/copyleft/gpl.html GPL
 * @package  IMP
 *
 * Modified by Mauricio Jose T. Tecles 
 * Updated 2011 August 4
 */
class IMP_Quota_Command extends IMP_Quota_Base
{
/**
 * Constructor.
 *
 * @param array $params  Parameters:
 * 
 * 'grep_path' - (string) [REQUIRED] Path to the grep binary.
 * 'quota_path' - (string) [REQUIRED] Path to the quota binary.
 * 'dev_inbx'   - (string) [REQUIRED] User´s INBOX file system device
 *   Usually: /,  /var/mail,  /var/spool/mail
 *   Examples: '/dev/hda6', '/dev/sdb2', '/dev/md2',
 * '/dev/mapper/VOL1-VarM'
 * 'dev_fldrs'  - (string) [REQUIRED] User´s home file system device
 *   Have INBOX and IMAP folders in different
 *   devices and quota enabled on them.
 *   For IMAP folders. Usually: /home
 *   Examples: '/dev/hda7', '/dev/sda3', '/dev/md1',
 * '/dev/mapper/VOL2-Home'
 * 
 */
public function __construct(array $params = array())
{
$params = array_merge(array(
'quota_path' => 'quota',
'grep_path'  => 'grep',
'dev_inbx'  => null,
'dev_fldrs'  => null
), $params);

parent::__construct($params);
}

/**
 * Get the disk block size, if possible.
 *
 * We try to find out the disk block size from stat(). If not
 * available, stat() should return -1 for this value, in which
 * case we default to 1024 (for historical reasons). There are a
 * large number of reasons this may fail, such as OS support,
 * SELinux interference, the file being > 2 GB in size, the file
 * we're referring to not being readable, etc.
 *
 * @return integer  The disk block size.
 */
protected function _blockSize()
{
$results = stat(__FILE__);
return ($results['blksize'] > 1)
 

[commits] [Wiki] changed: HowTo

2011-08-09 Thread Wiki Guest

guest [146.164.76.15]  Tue, 09 Aug 2011 17:41:20 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.95
Change log:  Alternative quota command for Horde 4, IMP 5

@@ -76,9 +76,11 @@
 * [ImpImapConfig Documentation on the 'imap_server' configuration  
parameter in IMP 4.1+'s servers.php file]

 * [CyrusHierarchical Hierarchical folder structure with Cyrus IMAP]
 * [ImpAutomaticDefaultFolderCreation Creating Default Folders Upon  
First Login]

 * [ImpDirectMessageLink Linking directly to an email message]
-* [AltQuota Alternative quota command]
+* [AltQuota Alternative quota command for Horde 3, IMP 4]
+* [AltH4Quota Alternative quota command for Horde 4, IMP 5]
+

 +++ Ingo [http://www.horde.org/ingo/]
 * [IngoMulti Two or more backends in Ingo]
 * [IngoSSH2 Ingo SSH2 configuration]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: ImpH4DisplayUserName

2011-08-09 Thread Wiki Guest

guest [146.164.76.15]  Tue, 09 Aug 2011 18:23:23 +

Created page: http://wiki.horde.org/ImpH4DisplayUserName

[[toc]]
+++ Notes
**IMP 5, Horde 4**
**Modifies traditional and dynamic views to display username beside  
the name of the opened folder**.


This describes modifications to IMP 5.0.8 (Horde 4.0.7).

Tested on Debian 6.0 (squeeze), horde-4.0.7 and imp-5.0.8.

+++ Modifications

||~ File ||~ Variables, Function(s) ||
|| imp/mailbox.php || $title ||
|| imp/lib/Views/ListMessages.php || getBaseOb, $ob->label ||


//Last updated 2011-08-09//

+++ Descriptions

 mailbox.php
* Modify $title to add username.

Traditional view.


Backup your original imp/mailbox.php. Edit mailbox.php and add a new  
line 354 with the following code:

**Form:**

$pagetitle = $title = IMP::$mailbox->label;
$refresh_title = sprintf(_("_Refresh %s"), $title);

**To:**

$pagetitle = $title = IMP::$mailbox->label;
$title = $pagetitle . htmlspecialchars(' of '.  
$injector->getInstance('Horde_Core_Factory_Identity')->create()->getName());

$refresh_title = sprintf(_("_Refresh %s"), $title);


 ListMessages.php
* Modify $ob->label to add username.

Dynamic view.


Backup your original imp/lib/Views/ListMessages.php. Edit  
ListMessages.php and alter line 495 (getBaseOb) with the following code:

**Form:**

$ob->label = htmlspecialchars($mbox->label);

**To:**

$ob->label = htmlspecialchars($mbox->label . ' of ' .  
$GLOBALS['injector']->getInstance('Horde_Core_Factory_Identity')->create()->getName());



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: HowTo

2011-08-09 Thread Wiki Guest

guest [146.164.76.15]  Tue, 09 Aug 2011 18:24:30 +

Modified page: http://wiki.horde.org/HowTo
New Revision:  89.96
Change log:  Added :Display username beside the name of the opened  
folder for Horde 4, IMP 5


@@ -78,9 +78,9 @@
 * [ImpAutomaticDefaultFolderCreation Creating Default Folders Upon  
First Login]

 * [ImpDirectMessageLink Linking directly to an email message]
 * [AltQuota Alternative quota command for Horde 3, IMP 4]
 * [AltH4Quota Alternative quota command for Horde 4, IMP 5]
-
+* [ImpH4DisplayUserName Display username beside the name of the  
opened folder for Horde 4, IMP 5]


 +++ Ingo [http://www.horde.org/ingo/]
 * [IngoMulti Two or more backends in Ingo]
 * [IngoSSH2 Ingo SSH2 configuration]

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: ImpH4DisplayUserName

2011-08-09 Thread Wiki Guest

guest [146.164.76.15]  Tue, 09 Aug 2011 18:31:01 +

Modified page: http://wiki.horde.org/ImpH4DisplayUserName
New Revision:  1.1
Change log:  Do not parse ListMe... (reserved name?)

@@ -10,9 +10,9 @@
 +++ Modifications

 ||~ File ||~ Variables, Function(s) ||
 || imp/mailbox.php || $title ||
-|| imp/lib/Views/ListMessages.php || getBaseOb, $ob->label ||
+|| ``imp/lib/Views/ListMessages.php`` || getBaseOb, $ob->label ||


 //Last updated 2011-08-09//
 
@@ -34,13 +34,13 @@
 $title = $pagetitle . htmlspecialchars(' of '.  
$injector->getInstance('Horde_Core_Factory_Identity')->create()->getName());

 $refresh_title = sprintf(_("_Refresh %s"), $title);
 
 
- ListMessages.php
+ ``ListMessages.php``
 * Modify $ob->label to add username.
 > Dynamic view.

-Backup your original imp/lib/Views/ListMessages.php. Edit  
ListMessages.php and alter line 495 (getBaseOb) with the following code:
+Backup your original ``imp/lib/Views/ListMessages.php``. Edit  
``ListMessages.php`` and alter line 495 (getBaseOb) with the following  
code:

 **Form:**
 
 $ob->label = htmlspecialchars($mbox->label);
 

__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] created: FAQ/user/print.php

2011-08-09 Thread Wiki Guest

guest [202.75.203.4]  Wed, 10 Aug 2011 06:48:37 +

Created page: http://wiki.horde.org/FAQ/user/print.php

  Indian Institute of  
Technology - Bombay



__
commits mailing list
Frequently Asked Questions: http://horde.org/faq/
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


  1   2   3   4   5   6   7   8   9   10   >