You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
378 B
17 lines
378 B
## |
|
## milter-header.cfg -- Header Insertion MILTER Configuration |
|
## |
|
|
|
milter { |
|
socket @l_prefix@/var/milter/socket/milter-header; |
|
logfile @l_prefix@/var/milter-header/milter-header.log; |
|
max_backlog 10; |
|
max_requests 10; |
|
max_childs 5; |
|
}; |
|
|
|
action { |
|
require "From" "^.+\@example\.com.*$"; |
|
insert "Organization" "Example Inc."; |
|
}; |
|
|
|
|