From 040614460da4421c1f48f347d28f3774db9aef79 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Tue, 10 Apr 2007 10:36:51 +0000 Subject: [PATCH] Fix full name support, thanks zandbelt (#1578) SVN-Revision: 6919 --- net/mini_sendmail/Makefile | 2 +- net/mini_sendmail/patches/200-fullname.patch | 34 ++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 net/mini_sendmail/patches/200-fullname.patch diff --git a/net/mini_sendmail/Makefile b/net/mini_sendmail/Makefile index 5ad7d4c2f9..596eaac203 100644 --- a/net/mini_sendmail/Makefile +++ b/net/mini_sendmail/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mini-sendmail PKG_VERSION:=1.3.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=mini_sendmail-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.acme.com/software/mini_sendmail/ diff --git a/net/mini_sendmail/patches/200-fullname.patch b/net/mini_sendmail/patches/200-fullname.patch new file mode 100644 index 0000000000..b22916f166 --- /dev/null +++ b/net/mini_sendmail/patches/200-fullname.patch @@ -0,0 +1,34 @@ +--- mini_sendmail-1.3.5.org/mini_sendmail.c 2003-11-17 03:03:35.000000000 +0100 ++++ mini_sendmail-1.3.5/mini_sendmail.c 2007-04-08 19:46:42.000000000 +0200 +@@ -539,6 +539,7 @@ + } + + /* Strip off any angle brackets. */ ++/* + while ( len > 0 && *recipient == '<' ) + { + ++recipient; +@@ -548,6 +549,23 @@ + --len; + + (void) snprintf( buf, sizeof(buf), "RCPT TO:<%.*s>", len, recipient ); ++*/ ++ if (len > 0 && recipient[len-1] == '>' ) ++ { ++ /* "" or: "Full Name " */ ++ while (len > 0 && *recipient != '<' ) ++ { ++ ++recipient; ++ --len; ++ } ++ (void) snprintf( buf, sizeof(buf), "RCPT TO:%.*s", len, recipient ); ++ } ++ else ++ { ++ /* name@domain */ ++ (void) snprintf( buf, sizeof(buf), "RCPT TO:<%.*s>", len, recipient ); ++ } ++ + send_command( buf ); + status = read_response(); + if ( status != 250 && status != 251 ) -- 2.30.2