试图获得基本的邮件反向代理工作的nginx电子邮件。我使用的是官方的nginx码头形象,我有以下nginx配置设置。
error_log /var/log/nginx/error.log info;
mail {
server_name mail.example.com;
auth_http localhost:9000/cgi-bin/nginxauth.cgi;
imap_capabilities IMAP4rev1 UIDPLUS IDLE LITERAL+ QUOTA;
pop3_auth plain apop cram-md5;
pop3_capabilities LAST TOP USER PIPELINING UIDL;
smtp_auth login plain cram-md5;
smtp_capabilities "SIZE 10485760" ENHANCEDSTATUSCODES 8BITMIME DSN;
xclient off;
server {
listen 25;
protocol smtp;
}
server {
listen 110;
protocol pop3;
proxy_pass_error_message on;
}
server {
listen 143;
protocol imap;
}
server {
listen 587;
protocol smtp;
}
}
使用以下命令启动nginx后
nginx -g 'daemon off;'
我得到这个错误:
2017/11/14 22:54:00 [emerg] 1#1: "mail" directive is not allowed here in /etc/nginx/conf.d/default.conf:9
对于如何解决这个问题有什么建议吗?
1条答案
按热度按时间i86rm4rw1#
将下面的行添加到
nginx conf
的第一行可以帮助我消除这个错误您可能需要更改路径以适应