<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wiki.livois.com/mediawiki/index.php?action=history&amp;feed=atom&amp;title=Roundcube</id>
	<title>Roundcube - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.livois.com/mediawiki/index.php?action=history&amp;feed=atom&amp;title=Roundcube"/>
	<link rel="alternate" type="text/html" href="https://wiki.livois.com/mediawiki/index.php?title=Roundcube&amp;action=history"/>
	<updated>2026-05-25T04:09:08Z</updated>
	<subtitle>Historique des versions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.livois.com/mediawiki/index.php?title=Roundcube&amp;diff=193&amp;oldid=prev</id>
		<title>Christophe : 1 version</title>
		<link rel="alternate" type="text/html" href="https://wiki.livois.com/mediawiki/index.php?title=Roundcube&amp;diff=193&amp;oldid=prev"/>
		<updated>2012-05-28T20:31:57Z</updated>

		<summary type="html">&lt;p&gt;1 version&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:Messagerie]]&lt;br /&gt;
&lt;br /&gt;
Roundcube est un webmail utilisant la technologie AJAX. Ceci donne beaucoup plus d&amp;#039;interactivité dans son utilisation, en particulier le drag&amp;amp;drop d&amp;#039;un e-mail vers un dossier.&lt;br /&gt;
&lt;br /&gt;
http://fr.wikipedia.org/wiki/RoundCube&lt;br /&gt;
&lt;br /&gt;
http://www.roundcube.net&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
==mysql==&lt;br /&gt;
&lt;br /&gt;
For MySQL version 4.1 and up, it&amp;#039;s recommended to create the database for RoundCube with the following command:&lt;br /&gt;
CREATE DATABASE roundcubemail DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;&lt;br /&gt;
&lt;br /&gt;
Sinon: &lt;br /&gt;
 create database &amp;#039;roundcubemail&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
 #mysql -p&lt;br /&gt;
&lt;br /&gt;
 GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost IDENTIFIED BY &amp;#039;password&amp;#039;;&lt;br /&gt;
 quit&lt;br /&gt;
&lt;br /&gt;
 #mysql roundcubemail &amp;lt; /var/www/www.livois.com/./roundcube/SQL/mysql.initial.sql&lt;br /&gt;
&lt;br /&gt;
==Editer les 2 fichiers de configuration==&lt;br /&gt;
http://trac.roundcube.net/trac.cgi/wiki/Howto_Install&lt;br /&gt;
&lt;br /&gt;
http://trac.roundcube.net/wiki/Howto_Config&lt;br /&gt;
&lt;br /&gt;
&amp;lt;licode file=&amp;quot;config/db.inc.php&amp;quot;&amp;gt;&lt;br /&gt;
$rcmail_config[&amp;#039;db_dsnw&amp;#039;] = &amp;#039;mysql://roundcube:password@localhost/roundcubemail&amp;#039;;&lt;br /&gt;
&amp;lt;/licode&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;licode file=&amp;quot;config/main.inc.php&amp;quot;&amp;gt;&lt;br /&gt;
// enable caching of messages and mailbox data in the local database.&lt;br /&gt;
// this is recommended if the IMAP server does not run on the same machine&lt;br /&gt;
$rcmail_config[&amp;#039;enable_caching&amp;#039;] = FALSE;&lt;br /&gt;
$rcmail_config[&amp;#039;default_host&amp;#039;] = &amp;#039;localhost&amp;#039;;&lt;br /&gt;
$rcmail_config[&amp;#039;default_port&amp;#039;] = 1043;&lt;br /&gt;
$rcmail_config[&amp;#039;smtp_server&amp;#039;] = &amp;#039;localhost&amp;#039;;&lt;br /&gt;
// Set TRUE if deleted messages should not be displayed&lt;br /&gt;
// This will make the application run slower&lt;br /&gt;
$rcmail_config[&amp;#039;skip_deleted&amp;#039;] = TRUE;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/licode&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Le répertoire LDAP&lt;br /&gt;
&amp;lt;licode file=&amp;quot;config/main.inc.php&amp;quot;&amp;gt;&lt;br /&gt;
$rcmail_config[&amp;#039;ldap_public&amp;#039;][&amp;#039;livois.com&amp;#039;] = array(&amp;#039;hosts&amp;#039;         =&amp;gt; array(&amp;#039;ldap.livois.com&amp;#039;),&lt;br /&gt;
                                                     &amp;#039;port&amp;#039;          =&amp;gt; 389,&lt;br /&gt;
                                                     &amp;#039;base_dn&amp;#039;       =&amp;gt; &amp;#039;vd=livois.com,o=hebergement,dc=livois,dc=com&amp;#039;,&lt;br /&gt;
                                                     &amp;#039;search_fields&amp;#039; =&amp;gt; array(&amp;#039;Nom&amp;#039; =&amp;gt; &amp;#039;cn&amp;#039;,&amp;#039;Email&amp;#039; =&amp;gt; &amp;#039;mail&amp;#039;),&lt;br /&gt;
                                                     &amp;#039;name_field&amp;#039;    =&amp;gt; &amp;#039;cn&amp;#039;,&lt;br /&gt;
                                                     &amp;#039;mail_field&amp;#039;    =&amp;gt; &amp;#039;mail&amp;#039;,&lt;br /&gt;
                                                     &amp;#039;scope&amp;#039;         =&amp;gt; &amp;#039;sub&amp;#039;,&lt;br /&gt;
                                                     &amp;#039;fuzzy_search&amp;#039;  =&amp;gt; 0);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/licode&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Pour que les utilisateurs n&amp;#039;aient pas besoin de taper le &amp;quot;@livois.com&amp;quot; pour se logguer:&lt;br /&gt;
&amp;lt;licode file=&amp;quot;config/main.inc.php&amp;quot;&amp;gt;&lt;br /&gt;
$rcmail_config[&amp;#039;default_host&amp;#039;] = &amp;#039;localhost&amp;#039;;&lt;br /&gt;
$rcmail_config[&amp;#039;username_domain&amp;#039;] = &amp;#039;livois.com&amp;#039;;&lt;br /&gt;
&amp;lt;/licode&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Ajouter le champ redirection au carnet d&amp;#039;adresse==&lt;br /&gt;
* Ajouter le champ redirection dans la table contacts&lt;br /&gt;
* config/main.inc.php - &amp;#039;&amp;#039;noter que le &amp;quot;_field&amp;quot; est important:&amp;#039;&amp;#039;                                                  &amp;#039;redirection_field&amp;#039; =&amp;gt; &amp;#039;maildrop&amp;#039;,&lt;br /&gt;
* program/localization/fr/labels.inc:$labels[&amp;#039;redirection&amp;#039;] = &amp;#039;Courriel de redirection&amp;#039;;&lt;br /&gt;
* program/steps/addressbook/edit.inc:  $a_show_cols = array(&amp;#039;name&amp;#039;, &amp;#039;firstname&amp;#039;, &amp;#039;surname&amp;#039;, &amp;#039;email&amp;#039;, &amp;#039;redirection&amp;#039;);&lt;br /&gt;
* program/steps/addressbook/save.inc:$a_save_cols = array(&amp;#039;name&amp;#039;, &amp;#039;firstname&amp;#039;, &amp;#039;surname&amp;#039;, &amp;#039;email&amp;#039;, &amp;#039;redirection&amp;#039;);&lt;br /&gt;
* program/steps/addressbook/show.inc:  $a_show_cols = array(&amp;#039;name&amp;#039;, &amp;#039;firstname&amp;#039;, &amp;#039;surname&amp;#039;, &amp;#039;email&amp;#039;, &amp;#039;redirection&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
{{Copy|2007|Christophe de Livois|FDL}}&lt;/div&gt;</summary>
		<author><name>Christophe</name></author>
	</entry>
</feed>