[svlug] Adding users to exim

Jeff Frost jeff at frostconsultingllc.com
Sun Jul 2 17:21:08 PDT 2006


On Sun, 2 Jul 2006, Skip Evans wrote:

> Hey Jeff and all,
>
> No, even adding this file, the mail is still bouncing. I did a tail -f on 
> /var/log/exim/mainlog but didn't see any activity there at all as the mail 
> bounced back from the server.
>
> Where does exim store the incoming mail?
>
> Is it /var/mail like sendmail?

Depends how it's configured.  Look in your exim.conf.  In mine it defaults to 
deliver localy in /var/mail.  Here's where that is defined:

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

I also do procmail and on my account use procmail to deliver to maildir 
format.

procmail:
   driver = accept
   check_local_user
   transport = transport_pipe_procmail
   require_files = ${local_part}:+${home}:+${home}/.procmailrc:+/usr/bin/procmail
   no_verify



transport_pipe_procmail:
   driver = pipe
   command = "/usr/bin/procmail"
   return_path_add
   delivery_date_add
   envelope_to_add



-- 
Jeff Frost, Owner 	<jeff at frostconsultingllc.com>
Frost Consulting, LLC 	http://www.frostconsultingllc.com/
Phone: 650-780-7908	FAX: 650-649-1954




More information about the Svlug mailing list