diff options
author | Michael Hanselmann <hansmi@gentoo.org> | 2007-05-01 21:31:46 +0000 |
---|---|---|
committer | Michael Hanselmann <hansmi@gentoo.org> | 2007-05-01 21:31:46 +0000 |
commit | 11209cf4864a5c0a735f237e6366675366d036ba (patch) | |
tree | 23919992fc4cbcb2fe26fb8318f114727bd959f3 /mail-mta/qmail/files/1.03-r15/tlsbeforeauth-fix.patch | |
parent | Add new src_test, and add return code patch from [ruby-core:10609] and [ruby-... (diff) | |
download | gentoo-2-11209cf4864a5c0a735f237e6366675366d036ba.tar.gz gentoo-2-11209cf4864a5c0a735f237e6366675366d036ba.tar.bz2 gentoo-2-11209cf4864a5c0a735f237e6366675366d036ba.zip |
Remove mail-mta/qmail
Diffstat (limited to 'mail-mta/qmail/files/1.03-r15/tlsbeforeauth-fix.patch')
-rw-r--r-- | mail-mta/qmail/files/1.03-r15/tlsbeforeauth-fix.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/mail-mta/qmail/files/1.03-r15/tlsbeforeauth-fix.patch b/mail-mta/qmail/files/1.03-r15/tlsbeforeauth-fix.patch deleted file mode 100644 index c7e8c21afb52..000000000000 --- a/mail-mta/qmail/files/1.03-r15/tlsbeforeauth-fix.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -Nur qmail-1.03.orig/qmail-smtpd.c qmail-1.03/qmail-smtpd.c ---- qmail-1.03.orig/qmail-smtpd.c 2004-01-30 21:32:02.923302000 +0100 -+++ qmail-1.03/qmail-smtpd.c 2004-01-30 21:32:16.412351168 +0100 -@@ -563,7 +563,7 @@ - if (!ssl) out("\r\n250-STARTTLS"); - #endif //TLS - --#ifdef TLS && TLS_BEFORE_AUTH -+#if defined(TLS) && defined(TLS_BEFORE_AUTH) - if(ssl) smtp_authout(); - #else // TLS && TLS_BEFORE_AUTH - smtp_authout(); -@@ -1019,7 +1019,7 @@ - { - int r; - --#ifdef TLS && TLS_BEFORE_AUTH -+#if defined(TLS) && defined(TLS_BEFORE_AUTH) - if (!ssl) return err_wantstarttls(); - #endif - if (*arg) { -@@ -1046,7 +1046,7 @@ - { - int r, id = 0; - --#ifdef TLS && TLS_BEFORE_AUTH -+#if defined(TLS) && defined(TLS_BEFORE_AUTH) - if (!ssl) return err_wantstarttls(); - #endif - if (*arg) { -@@ -1075,7 +1075,7 @@ - int i, r; - char *s; - --#ifdef TLS && TLS_BEFORE_AUTH -+#if defined(TLS) && defined(TLS_BEFORE_AUTH) - if (!ssl) return err_wantstarttls(); - #endif - |