diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-28 22:47:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-01-28 22:47:03 +0000 |
commit | 73032ca04be49c096f745f0873d67d9c831642bd (patch) | |
tree | a1772e8ae8b58f925f33e4b7fb5c82dbd770a996 /networking | |
parent | 847fa779aff2592e842654b95dc2c321885e1eec (diff) | |
download | busybox-w32-73032ca04be49c096f745f0873d67d9c831642bd.tar.gz busybox-w32-73032ca04be49c096f745f0873d67d9c831642bd.tar.bz2 busybox-w32-73032ca04be49c096f745f0873d67d9c831642bd.zip |
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 f1f7ae04b..cd986b862 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
@@ -665,6 +665,19 @@ config ROUTE | |||
665 | help | 665 | help |
666 | Route displays or manipulates the kernel's IP routing tables. | 666 | Route displays or manipulates the kernel's IP routing tables. |
667 | 667 | ||
668 | config SENDMAIL | ||
669 | bool "sendmail" | ||
670 | default n | ||
671 | help | ||
672 | Barebones sendmail. | ||
673 | |||
674 | config FEATURE_SENDMAIL_NETWORK | ||
675 | bool "Support network connectivity" | ||
676 | default y | ||
677 | depends on SENDMAIL | ||
678 | help | ||
679 | Add ability to send, not only compose messages. | ||
680 | |||
668 | config SLATTACH | 681 | config SLATTACH |
669 | bool "slattach" | 682 | bool "slattach" |
670 | default n | 683 | 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 | |||
28 | lib-$(CONFIG_PING6) += ping.o | 28 | lib-$(CONFIG_PING6) += ping.o |
29 | lib-$(CONFIG_PSCAN) += pscan.o | 29 | lib-$(CONFIG_PSCAN) += pscan.o |
30 | lib-$(CONFIG_ROUTE) += route.o | 30 | lib-$(CONFIG_ROUTE) += route.o |
31 | lib-$(CONFIG_SENDMAIL) += sendmail.o | ||
31 | lib-$(CONFIG_SLATTACH) += slattach.o | 32 | lib-$(CONFIG_SLATTACH) += slattach.o |
32 | lib-$(CONFIG_TELNET) += telnet.o | 33 | lib-$(CONFIG_TELNET) += telnet.o |
33 | lib-$(CONFIG_TELNETD) += telnetd.o | 34 | lib-$(CONFIG_TELNETD) += telnetd.o |