exim-4.69-r1.27021.patch 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. diff -urN exim-4.69.orig/src/configure.default exim-4.69/src/configure.default
  2. --- exim-4.69.orig/src/configure.default 2008-05-05 10:17:44.000000000 +0100
  3. +++ exim-4.69/src/configure.default 2008-05-05 10:18:26.000000000 +0100
  4. @@ -592,6 +592,22 @@
  5. pipe_transport = address_pipe
  6. reply_transport = address_reply
  7. +# This router runs procmail if users have a .procmailrc file
  8. +procmail:
  9. + check_local_user
  10. + driver = accept
  11. + transport = procmail_pipe
  12. + require_files = ${local_part}:+${home}:+${home}/.procmailrc:+/usr/bin/procmail
  13. + no_verify
  14. +
  15. +# This router runs maildrop if users have a .mailfilter file
  16. +maildrop:
  17. + check_local_user
  18. + driver = accept
  19. + transport = maildrop_pipe
  20. + require_files = ${local_part}:+${home}:+${home}/.mailfilter:+/usr/bin/maildrop
  21. + no_verify
  22. +
  23. # This router matches local user mailboxes. If the router fails, the error
  24. # message is "Unknown user".
  25. @@ -676,6 +692,21 @@
  26. address_reply:
  27. driver = autoreply
  28. +# This transport is used for procmail
  29. +procmail_pipe:
  30. + driver = pipe
  31. + command = "/usr/bin/procmail -d ${local_part}"
  32. + return_path_add
  33. + delivery_date_add
  34. + envelope_to_add
  35. +
  36. +# This transport is used for courier-maildrop filtering (Maildir filter system)
  37. +maildrop_pipe:
  38. + driver = pipe
  39. + command = "/usr/bin/maildrop -d ${local_part}"
  40. + return_path_add
  41. + delivery_date_add
  42. + envelope_to_add
  43. ######################################################################