[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#129795: marked as done (masqmail: does not support ESMTP AUTH=LOGIN)



Your message dated Fri, 19 Apr 2002 16:25:02 +0200
with message-id <20020419142502.GH21694@aylee.iwr.uni-heidelberg.de>
and subject line Bugs fixed in sponsored upload
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 18 Jan 2002 09:44:56 +0000
>From iyhi@yahoo.com Fri Jan 18 03:44:56 2002
Return-path: <iyhi@yahoo.com>
Received: from smtp011.mail.yahoo.com [216.136.173.31] 
	by master.debian.org with smtp (Exim 3.12 1 (Debian))
	id 16RVZw-0005vo-00; Fri, 18 Jan 2002 03:44:56 -0600
Received: from h24-81-233-51.cg.shawcable.net (24.81.233.51)
  by smtp.mail.vip.sc5.yahoo.com with SMTP; 18 Jan 2002 09:44:54 -0000
Received: from iyhi by localhost with local (MasqMail 0.1.16) id
 16RVR9-2R1-00 for submit@bugs.debian.org; Fri, 18 Jan 2002 02:35:51
 -0700
To: Debian Bug Tracking System <submit@bugs.debian.org> 
Subject: masqmail: does not support ESMTP AUTH=LOGIN
From: Peter Muir <iyhi@yahoo.com>
Date: 18 Jan 2002 02:35:50 -0700
Message-ID: <87666080i1.fsf@h24-81-233-51.cg.shawcable.net>
Lines: 390
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Delivered-To: submit@bugs.debian.org

Package: masqmail
Version: 0.1.16-1
Severity: wishlist
Tags: patch

PROBLEM

masqmail could not send mail through
yahoo.com ESMTP servers.

CAUSE

Yahoo allows users to send mail via their
ESMTP servers. However the servers running
qmail require the client to handle
AUTH=LOGIN. CRAM-MD5 is not an available
option.

AUTH LOGIN is a non-standard option used by
Microsoft and AUTH=LOGIN is from Netscape.

SOLUTION(S)

Add support for AUTH LOGIN and AUTH=LOGIN.

SEE ALSO

  http://www.ietf.org/rfc/rfc2554.txt
  http://lists.ximian.com/archives/public/evolution/2000-June/001039.html

PATCH

The patch checks for a valid (3xx) response
from the ESMTP but does not check that the
decode base64 response is actually
"Username:" and "Password:".

original version: 0.1.16-1
patched version: 0.1.16-1.1
Index: debian/masqmail/docs/xml/masqmail.route.5.xml
diff -u debian/masqmail/docs/xml/masqmail.route.5.xml:1.1.1.2 debian/masqmail/docs/xml/masqmail.route.5.xml:1.1.1.2.2.1
--- debian/masqmail/docs/xml/masqmail.route.5.xml:1.1.1.2	Wed Mar 28 20:36:06 2001
+++ debian/masqmail/docs/xml/masqmail.route.5.xml	Fri Jan 18 01:41:19 2002
@@ -194,7 +194,10 @@
 <p><opt>auth_name</opt> = <arg>string</arg></p>
 <optdesc>
 <p>Set the authentication type for ESMTP AUTH authentification.
-Currently only 'cram-md5' is supported.</p>
+Currently 'cram-md5' and 'login'  are supported. 
+The login option also authenticates servers, 
+eg some versions of qmail, that respond with:
+'250-AUTH=LOGIN'. </p>
 </optdesc>
 </option>
 
Index: debian/masqmail/examples/example.route
diff -u debian/masqmail/examples/example.route:1.1.1.1 debian/masqmail/examples/example.route:1.1.1.1.2.1
--- debian/masqmail/examples/example.route:1.1.1.1	Sat Oct  7 12:07:16 2000
+++ debian/masqmail/examples/example.route	Fri Jan 18 01:41:19 2002
@@ -81,6 +81,19 @@
 #auth_login="yourname"
 #auth_secret="dontTellAnyBody"
 
+# 20020117
+# Yahoo ESMTP servers use qmail.
+# mail_host = "smtp.mail.yahoo.com"
+
+# qmail gives the response ESMTP 
+# response: '250-AUTH=LOGIN'.
+# The return path must be set to the yahoo account.
+# map_return_path_addresses = "okurth: whateveryouryahoonameis@yahoo.com"
+
+# auth_name="=login"
+# auth_login="whateveryouryahoonameis"
+# auth_secret="youryahoopassword"
+
 # if your mail server requires smtp after POP (eg. gmx), set this.
 # It is not necessary if you fetch from the pop server just before you
 # send mail (either masqmail, fetchmail or any other pop client).
Index: debian/masqmail/src/smtp_out.c
diff -u debian/masqmail/src/smtp_out.c:1.1.1.2 debian/masqmail/src/smtp_out.c:1.1.1.2.2.1
--- debian/masqmail/src/smtp_out.c:1.1.1.2	Wed Mar 28 20:36:08 2001
+++ debian/masqmail/src/smtp_out.c	Fri Jan 18 01:41:19 2002
@@ -86,7 +86,8 @@
 
 gboolean set_auth(smtp_base *psb, gchar *name, gchar *login, gchar *secret)
 {
-  if(strcasecmp(name, "CRAM-MD5") == 0){
+  if((strcasecmp(name, "CRAM-MD5") == 0) 
+      || (strcasecmp(name, "login") == 0)){
     psb->auth_name = g_strdup(name);
     psb->auth_login = g_strdup(login);
     psb->auth_secret = g_strdup(secret);
@@ -240,7 +241,11 @@
       psb->use_auth = TRUE;
       arg = get_response_arg(&(ptr[8]));
       if(arg){
-        psb->auth_names = g_strsplit(arg, " " , 0);
+        gchar *after_eq = arg;
+        if (*arg == '=') {
+         after_eq++;
+        }
+        psb->auth_names = g_strsplit(after_eq, " " , 0);
         g_free(arg);
 
         DEBUG(4){
@@ -525,7 +530,7 @@
           
           DEBUG(5) debugf("encoded challenge = %s\n", chall64);
           DEBUG(5) debugf("decoded challenge = %s, size = %d\n", chall, chall_size);
-          
+
           DEBUG(5) debugf("secret = %s\n", psb->auth_secret);
           
           hmac_md5(chall, chall_size, psb->auth_secret, strlen(psb->auth_secret), digest);
@@ -537,6 +542,7 @@
           DEBUG(5) debugf("digest = %s\n", digest_string);
           
           reply = g_strdup_printf("%s %s", psb->auth_login, digest_string);
+		  
           DEBUG(5) debugf("unencoded reply = %s\n", reply);
 
           reply64 = base64_encode(reply, strlen(reply));
@@ -554,7 +560,9 @@
           g_free(chall64);
         }
       }
-    }else{
+   } else if (strcasecmp(psb->auth_name, "login") == 0) {
+   ok = smtp_out_auth_login(psb);
+   }else{
       logwrite(LOG_ERR, "auth method %s not supported\n",  psb->auth_name);
     }
   }else{
@@ -563,6 +571,48 @@
   return ok;
 }
 
+gboolean smtp_out_auth_login(smtp_base *psb) {
+  gboolean ok = FALSE;
+  fprintf(psb->out, "AUTH LOGIN\r\n"); fflush(psb->out);
+  if((ok = read_response(psb, SMTP_CMD_TIMEOUT))){
+     if((ok = check_response(psb, TRUE))){
+          gchar *resp64;
+          guchar *resp;
+          gint resp_size;
+          gchar *reply64;
+          
+          resp64 = get_response_arg(&(psb->buffer[4]));
+          DEBUG(5) debugf("encoded response = %s\n", resp64);
+          resp = base64_decode(resp64, &resp_size);
+          g_free(resp64);
+          DEBUG(5) debugf("decoded response = %s, size = %d\n", 
+                                        resp, resp_size);
+          g_free(resp);
+          reply64 = base64_encode(psb->auth_login,
+                                                      strlen(psb->auth_login));
+          fprintf(psb->out, "%s\r\n", reply64); fflush(psb->out);
+          g_free(reply64);
+          if((ok = read_response(psb, SMTP_CMD_TIMEOUT))) {
+              if (ok = check_response(psb, TRUE)) {
+                resp64 = get_response_arg(&(psb->buffer[4]));
+                DEBUG(5) debugf("encoded response = %s\n", resp64);
+                resp = base64_decode(resp64, &resp_size);
+                g_free(resp64);
+                DEBUG(5) debugf("decoded response = %s, size = %d\n", 
+                                        resp, resp_size);
+                g_free(resp);
+                reply64 = base64_encode(psb->auth_secret,
+                                                            strlen(psb->auth_secret));
+                fprintf(psb->out, "%s\r\n", reply64); fflush(psb->out);
+                g_free(reply64);
+                if((ok = read_response(psb, SMTP_CMD_TIMEOUT)))
+                  ok = check_response(psb, FALSE);
+              }
+          }          
+     }
+  }
+  return ok;
+}
 #endif
 
 gboolean smtp_out_init(smtp_base *psb)

AFTER PATCH

/etc/masqmail/yahoo.route

allowed_mail_locals = "iyhi"
mail_host = "smtp.mail.yahoo.com"
do_correct_helo = true
map_return_path_addresses = "iyhi:<iyhi@yahoo.com>;"
auth_name="login"
auth_login="iyhi"
auth_secret="xxxxxx"

/var/log/masqmail/debug.log

2002-01-18 02:14:03 [8800] args: 
2002-01-18 02:14:03 [8800] /usr/sbin/masqmail 
2002-01-18 02:14:03 [8800] -bd 
2002-01-18 02:14:03 [8800] -q10m 
2002-01-18 02:14:03 [8800] queue_interval = 600
2002-01-18 02:14:03 [8801] listening on interface localhost:25
2002-01-18 02:14:03 [8801] sock = 0
2002-01-18 02:14:03 [8802] Starting queue run.
2002-01-18 02:14:03 [8802] Finished queue run.
2002-01-18 02:14:49 [8805] masqmail 0.1.16 starting
2002-01-18 02:14:49 [8805] args: 
2002-01-18 02:14:49 [8805] /usr/sbin/sendmail 
2002-01-18 02:14:49 [8805] -oi 
2002-01-18 02:14:49 [8805] -t 
2002-01-18 02:14:49 [8805] queue_interval = 0
2002-01-18 02:14:49 [8805] accepting message on stdin
2002-01-18 02:14:49 [8805] header: 2 = To: Peter Muir <iyhi@yahoo.com> 
2002-01-18 02:14:49 [8805] header: 8 = Subject: test4
2002-01-18 02:14:49 [8805] header: 0 = From: Peter Muir <iyhi@yahoo.com>
2002-01-18 02:14:49 [8805] header: 5 = Date: 18 Jan 2002 02:14:48 -0700
2002-01-18 02:14:49 [8805] header: 6 = Message-ID: <87bsfs81h3.fsf@h24-81-233-51.cg.shawcable.net>
2002-01-18 02:14:49 [8805] header: 12 = Lines: 3
2002-01-18 02:14:49 [8805] header: 12 = MIME-Version: 1.0
2002-01-18 02:14:49 [8805] header: 12 = Content-Type: text/plain; charset=us-ascii
2002-01-18 02:14:49 [8805] received 3 lines of data (11 bytes)
2002-01-18 02:14:49 [8805] accept_message_prepare()
2002-01-18 02:14:49 [8805] setting return_path for local accept: <iyhi@localhost>
2002-01-18 02:14:49 [8805] scanning headers: To: Peter Muir <iyhi@yahoo.com> 
2002-01-18 02:14:49 [8805] hdr->value = Peter Muir <iyhi@yahoo.com> 

2002-01-18 02:14:49 [8805] scanning headers: Subject: test4
2002-01-18 02:14:49 [8805] scanning headers: From: Peter Muir <iyhi@yahoo.com>
2002-01-18 02:14:49 [8805] scanning headers: Date: 18 Jan 2002 02:14:48 -0700
2002-01-18 02:14:49 [8805] scanning headers: Message-ID: <87bsfs81h3.fsf@h24-81-233-51.cg.shawcable.net>
2002-01-18 02:14:49 [8805] scanning headers: Lines: 3
2002-01-18 02:14:49 [8805] scanning headers: MIME-Version: 1.0
2002-01-18 02:14:49 [8805] scanning headers: Content-Type: text/plain; charset=us-ascii
2002-01-18 02:14:49 [8805] adding 'Received:' header
2002-01-18 02:14:49 [8805] tmp_file = /var/spool/masqmail/input/8805-H.tmp
2002-01-18 02:14:49 [8805] opened tmp_file /var/spool/masqmail/input/8805-H.tmp
2002-01-18 02:14:49 [8805] after MF
2002-01-18 02:14:49 [8805] after RT
2002-01-18 02:14:49 [8805] after RH
2002-01-18 02:14:49 [8805] spool_file = /var/spool/masqmail/input/16RV6n-2I1-00-H
2002-01-18 02:14:49 [8805] tmp_file = /var/spool/masqmail/input/8805-D.tmp
2002-01-18 02:14:49 [8805] spool_file = /var/spool/masqmail/input/16RV6n-2I1-00-D
2002-01-18 02:14:49 [8805] 16RV6n-2I1-00 <= <iyhi@localhost> with local
2002-01-18 02:14:49 [8806] destroy_msg_out_list entered
2002-01-18 02:14:49 [8806] destroy_msg_out entered
2002-01-18 02:14:49 [8806] destroy_msg_out returning
2002-01-18 02:14:49 [8806] destroy_msg_out_list returning
2002-01-18 02:14:49 [8806] destroy_msg_out_list entered
2002-01-18 02:14:49 [8806] destroy_msg_out entered
2002-01-18 02:14:49 [8806] destroy_msg_out returning
2002-01-18 02:14:49 [8806] destroy_msg_out_list returning
2002-01-18 02:15:08 [8808] masqmail 0.1.16 starting
2002-01-18 02:15:08 [8808] args: 
2002-01-18 02:15:08 [8808] masqmail 
2002-01-18 02:15:08 [8808] -qo 
2002-01-18 02:15:08 [8808] yahoo 
2002-01-18 02:15:08 [8808] queue_interval = 0
2002-01-18 02:15:08 [8808] spoolfile: /var/spool/masqmail/input/16RV6n-2I1-00-H
2002-01-18 02:15:08 [8808] uid: 16RV6n-2I1-00
2002-01-18 02:15:08 [8808] spool_read: MAIL FROM: <iyhi@localhost>
2002-01-18 02:15:08 [8808] spool_read: RCPT TO : <iyhi@yahoo.com>
2002-01-18 02:15:08 [8808] header: 11 = Received: from iyhi by localhost with local (MasqMail 0.1.16) id
2002-01-18 02:15:08 [8808] header: 2 = To: Peter Muir <iyhi@yahoo.com> 
2002-01-18 02:15:08 [8808] header: 8 = Subject: test4
2002-01-18 02:15:08 [8808] header: 0 = From: Peter Muir <iyhi@yahoo.com>
2002-01-18 02:15:08 [8808] header: 5 = Date: 18 Jan 2002 02:14:48 -0700
2002-01-18 02:15:08 [8808] header: 6 = Message-ID: <87bsfs81h3.fsf@h24-81-233-51.cg.shawcable.net>
2002-01-18 02:15:08 [8808] header: 12 = Lines: 3
2002-01-18 02:15:08 [8808] header: 12 = MIME-Version: 1.0
2002-01-18 02:15:08 [8808] header: 12 = Content-Type: text/plain; charset=us-ascii
2002-01-18 02:15:08 [8808] after read spool file for 16RV6n-2I1-00
2002-01-18 02:15:08 [8808] Starting online queue run.
2002-01-18 02:15:08 [8808] detected online configuration yahoo
2002-01-18 02:15:08 [8808] read_route_list, rf_list->name = yahoo
2002-01-18 02:15:08 [8808] read_route, filename = /etc/masqmail/yahoo.route
2002-01-18 02:15:08 [8808] deliver_route_msg_list()
2002-01-18 02:15:08 [8808] route->allowed_rcpt_domains == NULL
2002-01-18 02:15:08 [8808] 16RV6n-2I1-00 using '/etc/masqmail/yahoo.route'
2002-01-18 02:15:08 [8808] rcpts for routed delivery, route = /etc/masqmail/yahoo.route, id = 16RV6n-2I1-00
2002-01-18 02:15:08 [8808] rcpt for routed delivery: <iyhi@yahoo.com>
2002-01-18 02:15:08 [8808] looking up iyhi in map_return_path_addresses
2002-01-18 02:15:08 [8808] found <iyhi@yahoo.com>
2002-01-18 02:15:08 [8808] rewrite_headers() returning
2002-01-18 02:15:08 [8808] deliver_route_msgout_list entered, route->name = /etc/masqmail/yahoo.route
2002-01-18 02:15:08 [8808] protocol = smtp
2002-01-18 02:15:08 [8808] smtp_out_open entered, host = smtp.mail.yahoo.com
2002-01-18 02:15:08 [8808] connect_resolvelist entered
2002-01-18 02:15:08 [8808] connect_resolvelist 1a
2002-01-18 02:15:08 [8808] DNS: resolve_dns_mx entered
2002-01-18 02:15:08 [8808] DNS: before res_search()
2002-01-18 02:15:09 [8808] DBG: after res_search()
2002-01-18 02:15:09 [8808] DBG: resolve name = smtp.mail.yahoo.com
2002-01-18 02:15:09 [8808] DNS: found 0 mx records
2002-01-18 02:15:09 [8808] connect_resolvelist 1a
2002-01-18 02:15:09 [8808] DNS: resolve_dns_a entered
2002-01-18 02:15:09 [8808] DNS: before res_search()
2002-01-18 02:15:09 [8808] DBG: after res_search()
2002-01-18 02:15:09 [8808] DBG: resolve name = smtp.mail.yahoo.com
2002-01-18 02:15:09 [8808] DNS: dns_getip(): ip = 216.136.173.12
2002-01-18 02:15:09 [8808] connect_hostlist entered
2002-01-18 02:15:09 [8808] trying ip 216.136.173.12 port 25
2002-01-18 02:15:09 [8808] connected to 216.136.173.12
2002-01-18 02:15:09 [8808] socket: name.sin_addr = 24.81.233.51
2002-01-18 02:15:09 [8808] socket: name.sin_addr = 24.81.233.51
2002-01-18 02:15:09 [8808] helo_name = h24-81-233-51.cg.shawcable.net
2002-01-18 02:15:09 [8808] response OK:'220 smtp013.mail.yahoo.com ESMTP
' after_date = 0
2002-01-18 02:15:09 [8808] uses esmtp
2002-01-18 02:15:09 [8808] EHLO h24-81-233-51.cg.shawcable.net
2002-01-18 02:15:09 [8808] response OK:'250-smtp013.mail.yahoo.com
250-AUTH=LOGIN
250-PIPELINING
250 8BITMIME
' after_date = 0
2002-01-18 02:15:09 [8808] offered AUTH LOGIN
2002-01-18 02:15:09 [8808] no size
2002-01-18 02:15:09 [8808] uses PIPELINING
2002-01-18 02:15:09 [8808] uses AUTH
2002-01-18 02:15:09 [8808] response OK:'334 VXNlcm5hbWU6
' after_date = 1
2002-01-18 02:15:09 [8808] encoded response = VXNlcm5hbWU6
2002-01-18 02:15:09 [8808] decoded response = Username:, size = 9
2002-01-18 02:15:09 [8808] response OK:'334 UGFzc3dvcmQ6
' after_date = 1
2002-01-18 02:15:09 [8808] encoded response = UGFzc3dvcmQ6
2002-01-18 02:15:09 [8808] decoded response = Password:, size = 9
2002-01-18 02:15:09 [8808] response OK:'235 go ahead
' after_date = 0
2002-01-18 02:15:09 [8808] spool_read_data entered
2002-01-18 02:15:09 [8808] reading data spool file '/var/spool/masqmail/input/16RV6n-2I1-00-D'
2002-01-18 02:15:09 [8808] smtp_out_msg entered
2002-01-18 02:15:09 [8808] MAIL FROM:<iyhi@yahoo.com>
2002-01-18 02:15:09 [8808] RCPT TO:<iyhi@yahoo.com>
2002-01-18 02:15:09 [8808] DATA
2002-01-18 02:15:09 [8808] response OK:'250 ok
' after_date = 0
2002-01-18 02:15:09 [8808] response OK:'250 ok
' after_date = 0
2002-01-18 02:15:09 [8808] response OK:'354 go ahead
' after_date = 1
2002-01-18 02:15:09 [8808] sent 9 headers
2002-01-18 02:15:09 [8808] sent 3 lines of data
2002-01-18 02:15:10 [8808] response OK:'250 ok 1011345833 qp 167
' after_date = 0
2002-01-18 02:15:10 [8808] psb->error = 0
2002-01-18 02:15:10 [8808] ok = 1
2002-01-18 02:15:10 [8808] rcpt_accept = 1
2002-01-18 02:15:10 [8808] 16RV6n-2I1-00 => <iyhi@yahoo.com> host=smtp.mail.vip.sc5.yahoo.com with esmtp
2002-01-18 02:15:10 [8808] msg_free_data entered
2002-01-18 02:15:10 [8808] update_non_rcpt_list() entered
2002-01-18 02:15:10 [8808] adr_is_delivered_children() entered
2002-01-18 02:15:10 [8808] 16RV6n-2I1-00 completed.
2002-01-18 02:15:10 [8808] QUIT
2002-01-18 02:15:10 [8808] destroy_msg_out_list entered
2002-01-18 02:15:10 [8808] destroy_msg_out entered
2002-01-18 02:15:10 [8808] destroy_address entered
2002-01-18 02:15:10 [8808] destroy_msg_out returning
2002-01-18 02:15:10 [8808] destroy_msg_out_list returning
2002-01-18 02:15:10 [8808] destroy_msg_out_list entered
2002-01-18 02:15:10 [8808] destroy_msg_out entered
2002-01-18 02:15:10 [8808] destroy_msg_out returning
2002-01-18 02:15:10 [8808] destroy_msg_out_list returning
2002-01-18 02:15:10 [8808] destroy_msg_out_list entered
2002-01-18 02:15:10 [8808] destroy_msg_out entered
2002-01-18 02:15:10 [8808] destroy_msg_out returning
2002-01-18 02:15:10 [8808] destroy_msg_out_list returning
2002-01-18 02:15:10 [8808] destroy_msg_list entered
2002-01-18 02:15:10 [8808] destroy_message entered
2002-01-18 02:15:10 [8808] msg_free_data entered
2002-01-18 02:15:10 [8808] Finished online queue run.

LOCAL CONFIGURATION

-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux h24-81-233-51 2.4.17-k6 #2 Sat Dec 22 22:02:17 EST 2001 i586
Locale: LANG=C, LC_CTYPE=

Versions of packages masqmail depends on:
ii  libc6                         2.2.4-7    GNU C Library: Shared libraries an
ii  libglib1.2                    1.2.10-3   The GLib library of C routines
ii  libident                      0.22-2     simple RFC1413 client library - ru
ii  liblockfile1                  1.03       NFS-safe locking library, includes
ii  netbase                       4.07       Basic TCP/IP networking system

-- 


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


---------------------------------------
Received: (at 129795-done) by bugs.debian.org; 19 Apr 2002 14:29:22 +0000
>From thimo@debian.org Fri Apr 19 09:29:22 2002
Return-path: <thimo@debian.org>
Received: from mail.iwr.uni-heidelberg.de [129.206.104.30] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 16yZO6-0008SW-00; Fri, 19 Apr 2002 09:29:22 -0500
Received: from aylee.iwr.uni-heidelberg.de (thimo@aylee.iwr.uni-heidelberg.de [129.206.69.123])
	by mail.iwr.uni-heidelberg.de (8.11.1/8.11.1) with ESMTP id g3JETKX16428;
	Fri, 19 Apr 2002 16:29:20 +0200 (MET DST)
Received: from thimo by aylee.suspekt with local (masqmail 0.2.8) id
 16yZJu-8G1-00; Fri, 19 Apr 2002 16:25:02 +0200
Date: Fri, 19 Apr 2002 16:25:02 +0200
From: Thimo Neubauer <thimo@debian.org>
To: 100594-done@bugs.debian.org, 129795-done@bugs.debian.org,
   134385-done@bugs.debian.org, 134422-done@bugs.debian.org,
   136653-done@bugs.debian.org
Subject: Bugs fixed in sponsored upload
Message-ID: <20020419142502.GH21694@aylee.iwr.uni-heidelberg.de>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="X3gaHHMYHkYqP6yf"
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Delivered-To: 129795-done@bugs.debian.org


--X3gaHHMYHkYqP6yf
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Hello,

the Debian Archive installer identified the upload of masqmail as a
non-Maintainer-upload and thus only marked the bugs fixed. As I am the
sponsor of Oliver Kurth (upstream author of masqmail) I'm closing the
bugs.

CU
    Thimo

--=20
Thimo Neubauer <thimo@debian.org>
Debian GNU/Linux 3.0 frozen! See http://www.debian.org/ for details

--X3gaHHMYHkYqP6yf
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Weitere Infos: siehe http://www.gnupg.org

iD8DBQE8wCi+Has8RNomMhgRAv2uAJkB+0nIqyz9csOPlHwcLfyEJB6pJgCfYb++
ZA3OCkR6ruh5xNInDXT+HIY=
=AfIj
-----END PGP SIGNATURE-----

--X3gaHHMYHkYqP6yf--


-- 
To UNSUBSCRIBE, email to debian-qa-packages-request@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org



Reply to: