-
Notifications
You must be signed in to change notification settings - Fork 178
Q0511
Whenever my system filter uses a mail
command to send a message, I get
the error User 0 set for address_reply transport is on the
never_users list. What does this mean?
The system filter runs as root in Exim 4, unless you set system_filter_user
to specify otherwise. When you set up a delivery direct from a system filter (an autoreply is a special kind of delivery ) the transport runs as the same user, unless it has a user
setting of
its own. Normally, deliveries are not allowed to run as root as a
security precaution; this is implemented by the never_users
option
(see Q0039). The easiest solution is to add
this to your configuration:
system_filter_user = exim
The system filter then runs as exim instead of root. Alternatively,
you can arrange for autoreplies from the system filter to use a special
transport of their own, and set the user
option on that transport.
- My filter isn't working. How can I test it?
- What I really need is the ability to obtain the result of a pipe command
- I received a message with a Subject: line that contained a
- I want to search for
$
in the subject line, but I can't seem to get - My problem is that Exim replaces $local_part with an empty string in
- Using $recipients in a system filter gives me another problem: how
- What are the main differences between using an Exim filter and using
- How can I allow the use of relative paths in users' filter files when
- How can I set up a filter file to detect and block virus attachments?
- Is it possible to write code for scanning messages in Python?
- Whenever my system filter uses a
mail
command to send a message, I get - I'm trying to reference the Envelope-To: header in my filter, but
- I want my system filter to freeze all mails greater than 500K in size,
- When I try to send to two addresses I get an error in the filter file