Envoies de mail résolu,
il y avait effectivement une erreur dans un fichier de config de DKIM.
J'obtient 9,7 pour le moment.
Par contre je ne peux pas recevoir.
Recipient not found
L'adresse de messagerie que vous avez entrée est introuvable
Mais je n'ai pas non plus accès à mes sous domaines definis chez mon register (postfixadmin et rainloop).
Pourtant j'ai fais la déclaration chez mon register.
mon fichier de rutorrent.conf
server {
listen 80 default_server;
listen 443 default_server ssl;
server_name domain.tld;
index index.html index.php;
charset utf-8;
client_max_body_size 20G;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
access_log /var/log/nginx/rutorrent-access.log combined;
error_log /var/log/nginx/rutorrent-error.log error;
error_page 500 502 503 504 /50x.html;
location = /50x.html { root /usr/share/nginx/html; }
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
location = /favicon.ico {
access_log off;
return 204;
}
## début config rutorrent ##
location ^~ /rutorrent {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
location ~ /\.svn {
deny all;
}
location ~ /\.ht {
deny all;
}
}
location ^~ /rutorrent/conf/ {
deny all;
}
location ^~ /rutorrent/share/ {
deny all;
}
## fin config rutorrent ##
## début confi root ##
location ^~ / {
root /var/www/domain;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
satisfy any;
allow all;
}
## fin config root ##
## début confi postfixadmin ##
location ^~ /postfixadmin {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
}
## fin config postfixadmin ##
## début confg rainloop ##
location ^~ /rainloop {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
}
## début config rainloop ##
fichier de config postfixadmin
server {
listen 80;
server_name postfixadmin.domain.tld;
root /var/www/postfixadmin;
index index.php;
charset utf-8;
location / {
try_files $uri $uri/ index.php;
}
location ~* \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
fichier config rainloop
server {
listen 80;
server_name webmail.domain.tld;
root /var/www/rainloop;
index index.php;
charset utf-8;
location ^~ /data {
deny all;
}
location / {
try_files $uri $uri/ index.php;
}
location ~* \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Il y a forcement un souci quelque part.