comparison smtp-greeting-delay.t @ 45:d68b85def521

Tests: use 127.0.0.1 instead of localhost. Name 'localhost' is ambiguous if ipv6 present on system.
author Maxim Dounin <mdounin@mdounin.ru>
date Sun, 02 Nov 2008 15:01:41 +0300
parents bd1a5e92d0c0
children 726c3c2a8b8c
comparison
equal deleted inserted replaced
44:daa295331acd 45:d68b85def521
30 worker_connections 1024; 30 worker_connections 1024;
31 } 31 }
32 32
33 mail { 33 mail {
34 proxy_pass_error_message on; 34 proxy_pass_error_message on;
35 auth_http http://localhost:8080/mail/auth; 35 auth_http http://127.0.0.1:8080/mail/auth;
36 xclient off; 36 xclient off;
37 37
38 server { 38 server {
39 listen localhost:8025; 39 listen 127.0.0.1:8025;
40 protocol smtp; 40 protocol smtp;
41 smtp_greeting_delay 100ms; 41 smtp_greeting_delay 100ms;
42 } 42 }
43 } 43 }
44 44