Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. menu "Mail Utilities"
  2. config BUSYBOX_MAKEMIME
  3. bool "makemime"
  4. default n
  5. help
  6. Create MIME-formatted messages.
  7. config BUSYBOX_FEATURE_MIME_CHARSET
  8. string "Default charset"
  9. default "us-ascii"
  10. depends on BUSYBOX_MAKEMIME || BUSYBOX_REFORMIME || BUSYBOX_SENDMAIL
  11. help
  12. Default charset of the message.
  13. config BUSYBOX_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 BUSYBOX_FEATURE_POPMAILDIR_DELIVERY
  20. bool "Allow message filters and custom delivery program"
  21. default n
  22. depends on BUSYBOX_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 BUSYBOX_REFORMIME
  29. bool "reformime"
  30. default n
  31. help
  32. Parse MIME-formatted messages.
  33. config BUSYBOX_FEATURE_REFORMIME_COMPAT
  34. bool "Accept and ignore options other than -x and -X"
  35. default y
  36. depends on BUSYBOX_REFORMIME
  37. help
  38. Accept (for compatibility only) and ignore options
  39. other than -x and -X.
  40. config BUSYBOX_SENDMAIL
  41. bool "sendmail"
  42. default n
  43. help
  44. Barebones sendmail.
  45. endmenu