Re: [Exim] Exim-3.32 on FreeBSD

Top Page
Delete this message
Reply to this message
Author: Jim Knoble
Date:  
To: Exim Users
Subject: Re: [Exim] Exim-3.32 on FreeBSD
Circa 2001-Aug-14 08:48:27 -0700 dixit Randy Bush:

: > chmod 1777 /var/mail
:
: that is how i have been living. but i don't like it.

Then do this:

chmod 0775 /var/mail

and in exim.conf:

# TRANSPORTS

  local_delivery:
    driver = appendfile
    file = /var/mail/${local_part}
    delivery_date_add
    envelope_to_add
    return_path_add
    group = mail
   ^^^^^^^^^^^^^^
    mode = 0660
   ^^^^^^^^^^^^^


# or, if you prefer procmail:

  procmail_pipe:
    driver = pipe
    command = "/usr/bin/procmail -d ${local_part}"
    delivery_date_add = true
    envelope_to_add = true
    freeze_exec_fail = false
    group = mail
   ^^^^^^^^^^^^^^
    log_defer_output = false
    log_fail_output = false
    log_output = false
    return_fail_output = false
    return_output = false
    return_path_add = true
    umask = 0022


--
jim knoble | jmknoble@??? | http://www.pobox.com/~jmknoble/
(GnuPG fingerprint: 31C4:8AAC:F24E:A70C:4000::BBF4:289F:EAA8:1381:1491)