[Exim] exim configuration error

トップ ページ
このメッセージを削除
このメッセージに返信
著者: ROBERT CHUNG
日付:  
To: exim-users
題目: [Exim] exim configuration error
I have Redhat Cygwin installed on a Windows 2000 Server machine.
Redhat Cygwin came with exim, but the configuration was not done. When
I run it inside bash shell of Cygwin, I get following error:

bash-2.05b$ uname -a
CYGWIN_NT-5.0 N2DB010 1.3.15(0.63/3/2) 2002-11-07 13:57 i686 unknown
bash-2.05b$
bash-2.05b$ id
uid=1001(oracle) gid=1002(ORA_DBA) groups=513(None),544
(Administrators),545(Users),1002(ORA_DBA)
bash-2.05b$
bash-2.05b$ exim -d
Exim version 4.10 uid=1001 gid=1002 pid=3796 L=834cd8 D=fff7577f
probably GDBM (native mode)
changed uid/gid: forcing real = effective
uid=1001 gid=1002
auxiliary group list: 513 544 545 1002
LOG: MAIN PANIC DIE
Exim configuration file /etc/exim.conf has the wrong owner, group, or
mode
search_tidyup called
>>>>>>>>>>>>>>>>>> Exim pid=3796 terminating with rc=1
>>>>>>>>>>>>>>>>>>

bash-2.05b$



What changes do I have to make on /etc/exim.conf? Following is output
of /etc/exim.conf except for comment lines and blank lines.

bash-2.05b$ cat /etc/exim.conf | egrep -v '^ *#|^ *$'
domainlist local_domains = @
domainlist relay_to_domains =
hostlist   relay_from_hosts = 127.0.0.1
acl_smtp_rcpt = acl_check_rcpt
gecos_pattern = (.*?)(,U-|,S-|$)
gecos_name = $1
host_lookup = !127.0.0.1/8:*
rfc1413_hosts = !127.0.0.1/8:*
rfc1413_query_timeout = 30s
ignore_bounce_errors_after = 2d
timeout_frozen_after = 7d
begin acl
acl_check_rcpt:
  accept  hosts = :
  deny    local_parts   = ^.*[@%!/|] : ^\\.
  accept  local_parts   = postmaster
          domains       = +local_domains
  require verify        = sender
  accept  domains       = +local_domains
          endpass
          message       = unknown user
          verify        = recipient
  accept  domains       = +relay_to_domains
          endpass
          message       = unrouteable address
          verify        = recipient
  accept  hosts         = +relay_from_hosts
  accept  authenticated = *
  deny    message       = relay not permitted
begin routers
dnslookup:
  driver = dnslookup
  domains = ! +local_domains
  transport = remote_smtp
  ignore_target_hosts = 0.0.0.0 : 127.0.0.0/8
  no_more
system_aliases:
  driver = redirect
  allow_fail
  allow_defer
  data = ${lookup{$local_part}lsearch{/etc/aliases}}
  file_transport = address_file
  pipe_transport = address_pipe
userforward:
  driver = redirect
  check_local_user
  file = $home/.forward
  no_verify
  no_expn
  check_ancestor
  file_transport = address_file
  pipe_transport = address_pipe
  reply_transport = address_reply
localuser:
  driver = accept
  check_local_user
  transport = local_delivery
begin transports
remote_smtp:
  driver = smtp
local_delivery:
  driver = appendfile
  file = /var/spool/mail/$local_part
  delivery_date_add
  envelope_to_add
  return_path_add
  mode = 0666
  mode_fail_narrower = no
  check_group = no
  check_owner = no
address_pipe:
  driver = pipe
  return_output
address_file:
  driver = appendfile
  delivery_date_add
  envelope_to_add
  return_path_add
address_reply:
  driver = autoreply
begin retry
*                      *           F,2h,15m; G,16h,1h,1.5; F,4d,6h
begin rewrite
begin authenticators
bash-2.05b$





Just in case you are not familiar with Cygwin, it is free UNIX emulator
that runs on MS Windows (www.cygwin.com). Thank you in advance.