300_exim4-config_real_local 607 B

12345678910111213141516171819202122
  1. ### router/300_exim4-config_real_local
  2. #################################
  3. # This router allows reaching a local user while avoiding local
  4. # processing. This can be used to inform a user of a broken .forward
  5. # file, for example. The userforward router does this.
  6. COND_LOCAL_SUBMITTER = "\
  7. ${if match_ip{$sender_host_address}{:@[]}\
  8. {1}{0}\
  9. }"
  10. real_local:
  11. debug_print = "R: real_local for $local_part@$domain"
  12. driver = accept
  13. domains = +local_domains
  14. condition = COND_LOCAL_SUBMITTER
  15. local_part_prefix = real-
  16. check_local_user
  17. transport = LOCAL_DELIVERY