Initial version of nginx parser roundtrip test

This commit is contained in:
Seth Schoen
2016-07-11 13:58:21 -07:00
parent 9431874c72
commit b48ddac528
203 changed files with 8263 additions and 0 deletions
@@ -0,0 +1,20 @@
mail {
#auth_http unix:/path/socket:/cgi-bin/auth;
auth_http localhost:9000/cgi-bin/auth;
proxy on;
imap_capabilities "IMAP4rev1" "UIDPLUS"; ## default
server {
listen 143;
protocol imap;
}
## uncomment to enable POP3 proxy
# pop3_capabilities "TOP" "USER";
# server {
# listen 110;
# protocol pop3;
# }
}