Mmm j'ai pas le souvenir d'avoir renseigné ces champs :/, à quel niveau je dois les mettre ?
Et tu veux quel fichier de conf ?
Merci de ton aide
Et tu veux quel fichier de conf ?
Merci de ton aide

Bah dans le fichier de configuration principal de Roundcube (config/config.inc.php), c'est comme ça que j'avais fait à l'époque en tout cas et apparemment c'est toujours d'actualité : http://trac.roundcube.net/wiki/Howto_ConfigMonsterChips wrote:Mmm j'ai pas le souvenir d'avoir renseigné ces champs :/, à quel niveau je dois les mettre ?
Et tu veux quel fichier de conf ?
<?php
/* Local configuration for Roundcube Webmail */
// ----------------------------------
// SQL DATABASE
// ----------------------------------
// Database connection string (DSN) for read+write operations
// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
// Currently supported db_providers: mysql, pgsql, sqlite, mssql or sqlsrv
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
// NOTE: for SQLite use absolute path: 'sqlite:////full/path/to/sqlite.db?mode=0646'
$config['db_dsnw'] = 'mysql://pass:user@localhost/roundcube';
// ----------------------------------
// IMAP
// ----------------------------------
// The mail host chosen to perform the log-in.
// Leave blank to show a textbox at login, give a list of hosts
// to display a pulldown menu or set one host as string.
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
// Supported replacement variables:
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %s - domain name after the '@' from e-mail address provided at login screen
// For example %n = mail.domain.tld, %t = domain.tld
// WARNING: After hostname change update of mail_host column in users table is
// required to match old user data records with the new host.
$config['default_host'] = 'ssl://hostname';
// TCP port used for IMAP connections
$config['default_port'] = 993;
// ----------------------------------
// SMTP
// ----------------------------------
// SMTP server host (for sending mails).
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
// If left blank, the PHP mail() function is used
// Supported replacement variables:
// %h - user's IMAP hostname
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %z - IMAP domain (IMAP hostname without the first part)
// For example %n = mail.domain.tld, %t = domain.tld
$config['smtp_server'] = 'tls://hostname.domaine.tld';
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
// deprecated SSL over SMTP (aka SMTPS))
$config['smtp_port'] = 587;
// SMTP username (if required) if you use %u as the username Roundcube
// will use the current username for login
$config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password Roundcube
// will use the current user's password for login
$config['smtp_pass'] = '%p';
// provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
$config['support_url'] = '';
// this key is used to encrypt the users imap password which is stored
// in the session record (and the client cookie if remember password is enabled).
// please provide a string of exactly 24 chars.
$config['des_key'] = '**************';
// Name your service. This is displayed on the login screen and in the window title
$config['product_name'] = 'Roundcube Webmail';
// ----------------------------------
// PLUGINS
// ----------------------------------
// List of active plugins (in plugins/ directory)
$config['plugins'] = array();
// the default locale setting (leave empty for auto-detection)
// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
$config['language'] = 'fr_FR';
// save compose message every 300 seconds (5min)
$config['draft_autosave'] = 180;
Sep 26 20:02:37 hostname dovecot: auth-worker(7668): mysql(127.0.0.1): Connected to database postfix
Sep 26 20:02:37 hostname postfix/submission/smtpd[7663]: DA9E310239A: client=hostname.domaine.tld[176.31.181.92], sasl_method=LOGIN, sasl_username=contact@domaine.tld
Sep 26 20:02:37 hostname postfix/cleanup[7673]: DA9E310239A: message-id=<9e8d930e4719cd4d451e8bc0aea4a5ba@domaine.tld>
Sep 26 20:02:37 hostname opendkim[4306]: DA9E310239A: signing table references unknown key 'mail._domainkey.domaine.tld'
Sep 26 20:02:37 hostname postfix/cleanup[7673]: DA9E310239A: milter-reject: END-OF-MESSAGE from hostname.domaine.tld[176.31.181.92]: 4.7.1 Service unavailable - try again later; from=<contact@domaine.tld> to=<user@domaine.tld> proto=ESMTP helo=<webmail.domaine.tld>
Sep 26 20:02:37 hostname postfix/submission/smtpd[7663]: disconnect from hostname.domaine.tld[176.31.181.92]
Je me pose la question, il y a-t-il un lien au fait que j'accède à roundcube via http et non https ?Sep 26 20:02:37 hostname opendkim[4306]: DA9E310239A: signing table references unknown key 'mail._domainkey.domaine.tld'
Sep 26 20:02:37 hostname postfix/cleanup[7673]: DA9E310239A: milter-reject: END-OF-MESSAGE from
Tu as mal configuré DKIM donc forcement tes messages ne sont pas envoyés (milter-reject), reprend la section OpenDKIM du tutoriel et regarde si tu as pas fais une erreur.mail._domainkey IN TXT "v=DKIM1; k=rsa; p=Clé publique ******" ; ----- DKIM key mail for domain.ltd
Je vais donc sur mon OVH et saisi le tout dans le champs TXT, seulement il ne va pas plus loin que ".........DKIM key m" !Il ne faut pas tout saisir dans un champ TXT, il faut mettre que les valeurs entre guillemet.MonsterChips wrote:Je ne suis pas sûr du coup qu'il faille la saisir en entier, je dois peut-être m'arrêter à la fin de la clé publique ?
----- DKIM key mail for domain.ltd
C'est un commentaire, il ne faut pas le spécifier lors de l'enregistrement de la clé DKIM.listen 443;
Ne m'y connaissant pas plus que ça, je ne sais pas s'il faut rajouter autre chose pour que le code soit vraiment correct, moi ça fonctionne comme ça, le https est activé cat /var/log/mail.log
Sans ça difficile au autre de t'aider Oct 1 16:51:02 kidechire dovecot: auth-worker(24489): mysql(127.0.0.1): Connected to database postfix
Oct 1 16:51:02 kidechire dovecot: imap-login: Login: user=<contact@test.fr>, method=PLAIN, rip=193.156.188.IP, lip=193.156.188.IP, mpid=24492, TLS, session=<WnXxoF0E/wDDmmxL>
Oct 1 16:51:02 kidechire dovecot: imap(contact@test.fr): Disconnected: Logged out in=58 out=425
Oct 1 16:51:02 kidechire dovecot: imap-login: Login: user=<contact@test.fr>, method=PLAIN, rip=193.156.188.IP, lip=193.156.188.IP, mpid=24493, TLS, session=<xqvyoF0EAQDDmmxL>
Oct 1 16:51:02 kidechire dovecot: imap(contact@test.fr): Disconnected: Logged out in=199 out=657
Oct 1 16:51:02 kidechire dovecot: auth-worker(24491): mysql(127.0.0.1): Connected to database postfix
Oct 1 16:51:02 kidechire dovecot: imap-login: Login: user=<contact@test.fr>, method=PLAIN, rip=193.156.188.IP, lip=193.156.188.IP, mpid=24495, TLS, session=<+P/xoF0EAADDmmxL>
Oct 1 16:51:02 kidechire dovecot: imap(contact@test.fr): Disconnected: Logged out in=28 out=659
Oct 1 16:51:05 kidechire dovecot: imap-login: Login: user=<contact@test.fr>, method=PLAIN, rip=193.156.188.IP, lip=193.156.188.IP, mpid=24497, TLS, session=<EFAeoV0EBADDmmxL>
Oct 1 16:51:05 kidechire dovecot: imap(contact@test.fr): Disconnected: Logged out in=80 out=1121
Oct 1 16:51:36 kidechire dovecot: imap-login: Login: user=<contact@test.fr>, method=PLAIN, rip=193.156.188.IP, lip=193.156.188.IP, mpid=24499, TLS, session=<Rkr+ol0ECQDDmmxL>
Oct 1 16:51:36 kidechire postfix/submission/smtpd[24500]: connect from kidechire.dedie.com[193.156.188.IP]
Oct 1 16:51:36 kidechire postfix/submission/smtpd[24500]: B436D10121D: client=kidechire.dedie.com[193.156.188.IP], sasl_method=LOGIN, sasl_username=contact@test.fr
Oct 1 16:51:36 kidechire postfix/cleanup[24506]: B436D10121D: message-id=<44a73cb343c68d04ac54daeef95565bc@webmail.ndd.com>
Oct 1 16:51:36 kidechire opendkim[828]: B436D10121D: no signing table match for 'contact@test.fr'
Oct 1 16:51:36 kidechire opendkim[828]: B436D10121D: no signature data
Oct 1 16:51:36 kidechire postfix/qmgr[770]: B436D10121D: from=<contact@test.fr>, size=1162, nrcpt=1 (queue active)
Oct 1 16:51:36 kidechire postfix/submission/smtpd[24500]: disconnect from kidechire.dedie.com[193.156.188.IP]
Oct 1 16:51:36 kidechire dovecot: imap(contact@test.fr): Disconnected: Logged out in=918 out=404
Oct 1 16:51:37 kidechire postfix/smtp[24508]: B436D10121D: to=<maildetest@gmail.com>, relay=gmail-smtp-in.l.google.com[173.194.78.27]:25, delay=0.41, delays=0.12/0.02/0.17/0.1, dsn=2.0.0, status=sent (250 2.0.0 OK 1412175097 lg8si1611779wjb.33 - gsmtp)
Oct 1 16:51:37 kidechire postfix/qmgr[770]: B436D10121D: removed
Oct 1 16:51:36 kidechire opendkim[828]: B436D10121D: no signing table match for 'contact@test.fr'
Oct 1 16:51:36 kidechire opendkim[828]: B436D10121D: no signature data
Envoie moi un email à contact[AT]meshup[DOT]net pour que je regarde les entêtes du mail./var/www/rainloop/data/_data_{HASHMD5}/_default_/configs/application.ini
{HASHMD5} = La clé secrète générée lors de l'installation de Rainloop[logs]
; Enable logging
enable = On
Le fichier de log est accessible ici :/var/www/rainloop/data/_data_{HASHMD5}/_default_/logs/log-201x-xx-xx.txt
Puis clique sur changer le mot de passe.