We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415ce42 commit 1e9ae9aCopy full SHA for 1e9ae9a
README.md
@@ -1,2 +1,49 @@
1
# Nginx_Mail
2
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
36
37
+ listen 110;
38
+ protocol pop3;
39
+ proxy_pass_error_message on;
40
41
42
43
44
45
46
+ listen 25;
47
+ protocol smtp;
48
49
0 commit comments