Gentoo Archives: gentoo-user

From: Michael Sullivan <michael@××××××××××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Exim, Outlook 2007, and Thunderbird
Date: Mon, 08 Sep 2008 21:10:07
Message-Id: 1220908191.15782.15.camel@camille.espersunited.com
1 My MSOutlook 2007 and my Mozilla Thunderbird email clients on my laptop
2 cannot connect to my exim mail server. I can't seem to figure out
3 why.
4
5 camille ~ # emerge -pv exim
6
7 These are the packages that would be merged, in order:
8
9 Calculating dependencies... done!
10 [ebuild R ] mail-mta/exim-4.69 USE="X exiscan-acl ldap mysql pam
11 perl sasl ssl syslog tcpd -dnsdb -domainkeys -dovecot-sasl -exiscan
12 -gnutls -ipv6 -lmtp -mailwrapper -mbox -mbx -nis -postgres -radius -spf
13 -sqlite -srs" 1,642 kB
14
15 Total: 1 package (1 reinstall), Size of downloads: 1,642 kB
16
17
18 camille ~ # cat /etc/exim/exim.conf | sed /#/d
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 domainlist local_domains = @ : espersunited.com : localhost :
35 localdomain : camille.espersunited.com : catherine.espersunited.com :
36 camille : catherine
37 domainlist relay_to_domains =
38 hostlist relay_from_hosts = 127.0.0.1 : 192.168.1.2 : 192.168.1.3 :
39 192.168.1.4 : 192.168.0.2 : 192.168.1.100
40
41
42
43
44
45
46 acl_smtp_rcpt = acl_check_rcpt
47 acl_smtp_data = acl_check_data
48 acl_smtp_mime = acl_check_mime
49
50
51
52
53 av_scanner = clamd:/tmp/clamd
54
55
56
57 spamd_address = 127.0.0.1 783
58
59
60
61
62
63
64
65
66
67
68
69 qualify_domain = espersunited.com
70
71
72
73
74
75
76
77
78
79 never_users = root
80
81
82
83 host_lookup = !192.168.0.0/24: !192.168.1.0/24
84
85
86
87
88 rfc1413_hosts = *
89 rfc1413_query_timeout = 5s
90
91
92 sender_unqualified_hosts = camille.espersunited.com :
93 catherine.espersunited.com : localhost.localdomain
94 recipient_unqualified_hosts = camille.espersunited.com :
95 catherine.espersunited.com : localhost.localdomain
96
97
98
99
100
101
102 ignore_bounce_errors_after = 2d
103
104
105 timeout_frozen_after = 7d
106
107
108
109
110
111
112
113 begin acl
114
115
116 acl_check_rcpt:
117
118
119 accept hosts = :
120
121
122 deny message = Restricted characters in address
123 domains = +local_domains
124 local_parts = ^[.] : ^.*[@%!/|]
125
126
127 deny message = Restricted characters in address
128 domains = !+local_domains
129 local_parts = ^[./|] : ^.*[@%!] : ^.*/\\.\\./
130
131
132 accept local_parts = postmaster
133 domains = +local_domains
134
135
136 require verify = sender
137
138
139
140
141 accept hosts = +relay_from_hosts
142 control = submission
143
144
145 accept authenticated = *
146 control = submission
147
148
149 require message = relay not permitted
150 domains = +local_domains : +relay_to_domains
151
152
153 require verify = recipient/callout=60s,defer_ok
154
155
156
157
158 accept
159
160
161
162
163 acl_check_data:
164
165
166
167
168
169
170 warn message = X-SpamScore: $spam_score ($spam_bar)
171 spam = nobody:true
172 warn message = X-SpamReport: $spam_report
173 spam = nobody:true
174 warn message = X-Spam-Flag: ${if \
175 >{$spam_score_int}{58}{Almost Certainly}\
176 {${if >{$spam_score_int}{55}{Probably}\
177 {${if >{$spam_score_int}{50}{Possibly}{Doubtful}\
178 }}}}}
179 spam = nobody
180 warn message = Subject: [*SPAM*] $h_Subject ${if \
181 >{$spam_score_int}{58}{Almost Certainly}\
182 {${if >{$spam_score_int}{55}{Probably}\
183 {${if >{$spam_score_int}{50}{Possibly}{Doubtful}\
184 }}}}}
185 spam = nobody
186
187 deny message = Rejected: spam score $spam_score
188 spam = nobody:true
189 condition = ${if >{$spam_score_int}{60}{1}{0}}
190
191 accept
192
193 acl_check_mime:
194 warn decode = default
195
196 deny message = Blacklisted file extension detected
197 condition = ${if match \
198 {${lc:$mime_filename}} \
199 {\N(\.exe|\.pif|\.bat|\.scr|\.lnk|\.com|.vbs)$\N} \
200 {1}{0}}
201
202 accept
203 acl_check_content:
204 deny message = Serious MIME defect detected ($demime_reason)
205 demime = *
206 condition = ${if >{$demime_errorlevel}{2}{1}{0}}
207
208 deny message = This message contains malware ($malware_name)
209 malware = *
210
211 warn message = X-Spam-Score: $spam_score ($spam_bar)
212 spam = nobody:true
213 warn message = X-Spam-Report: $spam_report
214 spam = nobody:true
215
216 warn message = Subject: [*SPAM*] $h_Subject
217 spam = nobody
218
219 deny message = This message scored $spam_score points.
220 Congratulations!
221 spam = nobody:true
222 condition = ${if >{$spam_score_int}{50}{1}{0}}
223
224 accept
225
226
227
228 begin routers
229
230
231
232
233
234 dnslookup:
235 driver = dnslookup
236 domains = ! +local_domains
237 transport = remote_smtp
238 ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
239 no_more
240
241
242
243
244
245 system_aliases:
246 driver = redirect
247 allow_fail
248 allow_defer
249 data = ${lookup{$local_part}lsearch{/etc/mail/aliases}}
250 file_transport = address_file
251 pipe_transport = address_pipe
252
253
254
255
256
257
258
259 userforward:
260 driver = redirect
261 check_local_user
262 file = $home/.forward
263 no_verify
264 no_expn
265 check_ancestor
266 file_transport = address_file
267 pipe_transport = address_pipe
268 reply_transport = address_reply
269
270
271
272
273 localuser:
274 driver = accept
275 check_local_user
276 transport = local_delivery
277 cannot_route_message = Unknown user
278
279
280
281
282
283 begin transports
284
285
286
287 remote_smtp:
288 driver = smtp
289
290
291
292 local_delivery:
293 driver = appendfile
294 directory = /home/$local_part/.maildir
295 maildir_format
296 delivery_date_add
297 envelope_to_add
298 return_path_add
299
300
301
302 address_pipe:
303 driver = pipe
304 return_output
305
306
307
308 address_file:
309 driver = appendfile
310 delivery_date_add
311 envelope_to_add
312 return_path_add
313
314
315
316 address_reply:
317 driver = autoreply
318
319
320
321
322 begin retry
323
324
325
326 * * F,2h,15m; G,16h,1h,1.5; F,4d,6h
327
328
329
330
331
332 begin rewrite
333
334
335
336
337
338 begin authenticators
339
340
341
342
343
344
345
346
347
348
349 Can anybody help me fix this?

Replies

Subject Author
Re: [gentoo-user] Exim, Outlook 2007, and Thunderbird kashani <kashani-list@××××××××.net>