> What I use before is > Sendmail -w 3 -U test -P 111111 -s "test" myserver [email protected] > mailmessage -t [email protected] > > Could you kindly help convert this into the latest format? >
I suppose "mailmessage" is the file you send as attachment, right? Attachment processing (along with any additional headers, like subject) is now moved to "makemime" applet. So, try: $ makemime -a "Subject: test" mailmessage | sendmail -w3 -autest -ap111111 -S myserver -f [email protected] -t [email protected] If it doesn't work, try simply: $ sendmail -w3 -autest -ap111111 -S myserver -f [email protected] -t [email protected] type something, press Enter, then CTRL+D. Does the mail send? If not, please, consider sending here strace output: strace -f -v -s1024 -o log.txt sendmail -w3 -autest -ap111111 -S myserver -f [email protected] -t [email protected] -- Vladimir _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
