aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-01-28 22:47:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-01-28 22:47:03 +0000
commit73032ca04be49c096f745f0873d67d9c831642bd (patch)
treea1772e8ae8b58f925f33e4b7fb5c82dbd770a996 /networking
parent847fa779aff2592e842654b95dc2c321885e1eec (diff)
downloadbusybox-73032ca04be49c096f745f0873d67d9c831642bd.tar.gz
sendmail: new applet by dronnikov at gmail.com
Diffstat (limited to 'networking')
-rw-r--r--networking/Config.in13
-rw-r--r--networking/Kbuild1
2 files changed, 14 insertions, 0 deletions
diff --git a/networking/Config.in b/networking/Config.in
index f1f7ae04b..cd986b862 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 3bcbe0242..2819e8507 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