Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. menu "Mail Utilities"
  2. config MAKEMIME
  3. bool "makemime"
  4. default n
  5. help
  6. Create MIME-formatted messages.
  7. config FEATURE_MIME_CHARSET
  8. string "Default charset"
  9. default "us-ascii"
  10. depends on MAKEMIME || REFORMIME || SENDMAIL
  11. help
  12. Default charset of the message.
  13. config POPMAILDIR
  14. bool "popmaildir"
  15. default n
  16. help
  17. Simple yet powerful POP3 mail popper. Delivers content
  18. of remote mailboxes to local Maildir.
  19. config FEATURE_POPMAILDIR_DELIVERY
  20. bool "Allow message filters and custom delivery program"
  21. default n
  22. depends on POPMAILDIR
  23. help
  24. Allow to use a custom program to filter the content
  25. of the message before actual delivery (-F "prog [args...]").
  26. Allow to use a custom program for message actual delivery
  27. (-M "prog [args...]").
  28. config REFORMIME
  29. bool "reformime"
  30. default n
  31. help
  32. Parse MIME-formatted messages.
  33. config FEATURE_REFORMIME_COMPAT
  34. bool "Accept and ignore options other than -x and -X"
  35. default y
  36. depends on REFORMIME
  37. help
  38. Accept (for compatibility only) and ignore options
  39. other than -x and -X.
  40. config SENDMAIL
  41. bool "sendmail"
  42. default n
  43. help
  44. Barebones sendmail.
  45. config FEATURE_SENDMAIL_MAILX
  46. bool "Allow to specify subject, attachments, their charset etc"
  47. default y
  48. depends on SENDMAIL
  49. help
  50. Allow to specify subject, attachments and their charset.
  51. Allow to use custom connection helper.
  52. config FEATURE_SENDMAIL_MAILXX
  53. bool "Allow to specify Cc: addresses and some additional headers"
  54. default n
  55. depends on FEATURE_SENDMAIL_MAILX
  56. help
  57. Allow to specify Cc: addresses and some additional headers:
  58. Errors-To:
  59. endmenu