Skip to content

Commit 1e9ae9a

Browse files
Update README.md
1 parent 415ce42 commit 1e9ae9a

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,49 @@
11
# Nginx_Mail
22
Mail Server
3+
4+
# Mail Server Instance
5+
6+
mail{
7+
8+
server_name mail.pattysapplab.name;
9+
10+
# http認證的位址
11+
auth_http ;
12+
imap_capabilities IMAP4rev1 ...;
13+
14+
pop3_auth ...;
15+
pop3_capabilities ...;
16+
17+
smtp_auth ...;
18+
smtp_capabilties ...;
19+
20+
xclient off;
21+
22+
23+
}
24+
25+
# 針對三台虛擬機的郵件協定設定
26+
27+
server{
28+
29+
listen 143;
30+
protocol imap;
31+
32+
33+
}
34+
35+
server{
36+
37+
listen 110;
38+
protocol pop3;
39+
proxy_pass_error_message on;
40+
41+
}
42+
43+
44+
server{
45+
46+
listen 25;
47+
protocol smtp;
48+
49+
}

0 commit comments

Comments
 (0)