質問編集履歴

1

postconf -nを加筆

2017/01/18 14:12

投稿

tomomi66
tomomi66

スコア94

test CHANGED
File without changes
test CHANGED
@@ -69,3 +69,107 @@
69
69
 
70
70
 
71
71
  どうぞよろしくお願いします。
72
+
73
+
74
+
75
+ postconf -nは↓です。
76
+
77
+ ```
78
+
79
+ alias_database = hash:/etc/aliases
80
+
81
+ alias_maps = hash:/etc/aliases
82
+
83
+ broken_sasl_auth_clients = yes
84
+
85
+ command_directory = /usr/sbin
86
+
87
+ config_directory = /etc/postfix
88
+
89
+ daemon_directory = /usr/libexec/postfix
90
+
91
+ data_directory = /var/lib/postfix
92
+
93
+ debug_peer_level = 2
94
+
95
+ debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin ddd $daemon_directory/$process_name $process_id & sleep 5
96
+
97
+ disable_vrfy_command = yes
98
+
99
+ home_mailbox = Maildir/
100
+
101
+ html_directory = no
102
+
103
+ inet_interfaces = all
104
+
105
+ inet_protocols = all
106
+
107
+ local_recipient_maps = proxy:unix:passwd.byname $alias_maps
108
+
109
+ mail_owner = postfix
110
+
111
+ mailbox_size_limit = 204800000
112
+
113
+ mailq_path = /usr/bin/mailq.postfix
114
+
115
+ manpage_directory = /usr/share/man
116
+
117
+ message_size_limit = 5120000
118
+
119
+ mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
120
+
121
+ mydomain = zero-6.net
122
+
123
+ myhostname = mail.zero-6.net
124
+
125
+ myorigin = $mydomain
126
+
127
+ newaliases_path = /usr/bin/newaliases.postfix
128
+
129
+ queue_directory = /var/spool/postfix
130
+
131
+ readme_directory = /usr/share/doc/postfix-2.10.1/README_FILES
132
+
133
+ relay_domains = $mydestination
134
+
135
+ relayhost =
136
+
137
+ sample_directory = /usr/share/doc/postfix-2.10.1/samples
138
+
139
+ sendmail_path = /usr/sbin/sendmail.postfix
140
+
141
+ setgid_group = postdrop
142
+
143
+ smtp_tls_security_level = may
144
+
145
+ smtpd_banner = $myhostname ESMTP
146
+
147
+ smtpd_client_restrictions = check_client_access hash:/etc/postfix/access reject_rbl_client zen.spamhaus.org reject_rbl_client all.rbl.jp reject_non_fqdn_sender reject_unknown_sender_domain
148
+
149
+ smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination
150
+
151
+ smtpd_sasl_auth_enable = yes
152
+
153
+ smtpd_sasl_path = private/auth
154
+
155
+ smtpd_sasl_type = dovecot
156
+
157
+ smtpd_sender_restrictions = reject_rhsbl_sender zen.spamhaus.org reject_unknown_sender_domain
158
+
159
+ smtpd_tls_cert_file = /etc/letsencrypt/live/mail.zero-6.net/fullchain.pem
160
+
161
+ smtpd_tls_key_file = /etc/letsencrypt/live/mail.zero-6.net/privkey.pem
162
+
163
+ smtpd_tls_loglevel = 1
164
+
165
+ smtpd_tls_received_header = yes
166
+
167
+ smtpd_tls_session_cache_database = btree:/var/lib/postfix/smtpd_scache
168
+
169
+ smtpd_tls_session_cache_timeout = 3600s
170
+
171
+ smtpd_use_tls = yes
172
+
173
+ unknown_local_recipient_reject_code = 550
174
+
175
+ ```