En installant Dotclear 2 sur ma debian etch je bloquais au moment de la configuration sur le paramétrage du premier utilisateur. Adresse emal, prénom, nom remplit je validais et le navaigateur tournait tournait tournait...

Une coup d'oeil dans /var/log/syslog ave la commande


tail -n 500 -f /var/log/syslog

Et j'obtenais les messages suivants :


ul 23 14:08:08 bitch postfix/postdrop[22755]: warning: mail_queue_enter: create file maildrop/390620.22755: Permission denied
Jul 23 14:08:15 bitch postfix/postdrop[12696]: warning: mail_queue_enter: create file maildrop/143046.12696: Permission denied
Jul 23 14:08:18 bitch postfix/postdrop[22755]: warning: mail_queue_enter: create file maildrop/395254.22755: Permission denied
Jul 23 14:08:25 bitch postfix/postdrop[12696]: warning: mail_queue_enter: create file maildrop/187589.12696: Permission denied
Jul 23 14:08:28 bitch postfix/postdrop[22755]: warning: mail_queue_enter: create file maildrop/399769.22755: Permission denied
Jul 23 14:08:35 bitch postfix/postdrop[12696]: warning: mail_queue_enter: create file maildrop/192141.12696: Permission denied
Jul 23 14:08:38 bitch postfix/postdrop[22755]: warning: mail_queue_enter: create file maildrop/704494.22755: Permission denied
Jul 23 14:08:45 bitch postfix/postdrop[12696]: warning: mail_queue_enter: create file maildrop/196709.12696: Permission denied
Jul 23 14:08:48 bitch postfix/postdrop[22755]: warning: mail_queue_enter: create file maildrop/708942.22755: Permission denied
Jul 23 14:08:55 bitch postfix/postdrop[12696]: warning: mail_queue_enter: create file maildrop/201296.12696: Permission denied
Jul 23 14:08:58 bitch postfix/postdrop[22755]: warning: mail_queue_enter: create file maildrop/713500.22755: Permission denied

J'appliquais une vérification de la configuration de postfix


[root@bitch] killall -9 postdrop
[root@bitch] postfix check
postfix/postfix-script: warning: not owned by group postdrop: /var/spool/postfix/public
postfix/postfix-script: warning: not owned by group postdrop: /var/spool/postfix/maildrop
postfix/postfix-script: warning: not owned by group postdrop: /usr/sbin/postqueue
postfix/postfix-script: warning: not owned by group postdrop: /usr/sbin/postdrop

Bon c'est clair je dois mettre le groupe à jour sur ces fichiers.

SOLUTION :


[root@bitch] chgrp -R postdrop /var/spool/postfix/public
[root@bitch] chgrp -R postdrop /var/spool/postfix/maildrop
[root@bitch] chgrp -R postdrop /usr/sbin/postqueue
[root@bitch] chgrp -R postdrop /usr/sbin/postdrop