diff options
author | Denis Vlasenko | 2008-01-28 22:47:03 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-01-28 22:47:03 +0000 |
commit | 73032ca04be49c096f745f0873d67d9c831642bd (patch) | |
tree | a1772e8ae8b58f925f33e4b7fb5c82dbd770a996 /networking | |
parent | 847fa779aff2592e842654b95dc2c321885e1eec (diff) | |
download | busybox-73032ca04be49c096f745f0873d67d9c831642bd.zip busybox-73032ca04be49c096f745f0873d67d9c831642bd.tar.gz |
sendmail: new applet by dronnikov at gmail.com
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Config.in | 13 | ||||
-rw-r--r-- | networking/Kbuild | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/networking/Config.in b/networking/Config.in index f1f7ae0..cd986b8 100644 --- a/networking/Config.in +++ b/networking/Config.in @@ -665,6 +665,19 @@ config ROUTE help Route displays or manipulates the kernel's IP routing tables. +config SENDMAIL + bool "sendmail" + default n + help + Barebones sendmail. + +config FEATURE_SENDMAIL_NETWORK + bool "Support network connectivity" + default y + depends on SENDMAIL + help + Add ability to send, not only compose messages. + config SLATTACH bool "slattach" default n diff --git a/networking/Kbuild b/networking/Kbuild index 3bcbe02..2819e85 100644 --- a/networking/Kbuild +++ b/networking/Kbuild @@ -28,6 +28,7 @@ lib-$(CONFIG_PING) += ping.o lib-$(CONFIG_PING6) += ping.o lib-$(CONFIG_PSCAN) += pscan.o lib-$(CONFIG_ROUTE) += route.o +lib-$(CONFIG_SENDMAIL) += sendmail.o lib-$(CONFIG_SLATTACH) += slattach.o lib-$(CONFIG_TELNET) += telnet.o lib-$(CONFIG_TELNETD) += telnetd.o |