RE: [Exim] Autoreply for 1 user HELP ME

Top Page
Delete this message
Reply to this message
Author: Ariel Sandberg
Date:  
To: exim-users
Subject: RE: [Exim] Autoreply for 1 user HELP ME
OK I understand:
local_part is the the string of characters before the @domain.com so if your
michi@???
local_part is michi

if your look at the Exim spec definition it says
n item in a require_files list does not contain any forward slash
characters, it is taken to be the user "
"If a
Therefor:
require_files = ${local_part}:/etc/exim/autoreply/$local_part

means use the $local_part user (whatever it may be eg. michi). Well, michi
is ___not a user__ and therefor __does not have rights___
/etc/exim/autoreply/michi (wich one of these problems require_files fails on
I dont know but niether are good).

But I think you could get away with just:
require_files = /etc/exim/autoreply/$local_part

It would probably just use the default exim user (e.g. exim or mail whatever
it is) or you could supply it if you like:

require_files = exim:/etc/exim/autoreply/$local_part

I think this would then use the exim user.

Try it out and experiment.

Cheers,
Ariel

>